diff --git a/Cargo.toml b/Cargo.toml index 696d27a1..7d5a8378 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,4 +31,4 @@ tree-sitter-language = "0.1" cc = "1.2" [dev-dependencies] -tree-sitter = "0.25.9" +tree-sitter = "0.25.10" diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index ad0f36f8..5dd59b40 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -15,7 +15,7 @@ //! assert!(!tree.root_node().has_error()); //! ``` //! -//! [`Parser`]: https://docs.rs/tree-sitter/0.25.9/tree_sitter/struct.Parser.html +//! [`Parser`]: https://docs.rs/tree-sitter/0.25.10/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ use tree_sitter_language::LanguageFn; diff --git a/grammar.js b/grammar.js index 0c19937b..fea12427 100644 --- a/grammar.js +++ b/grammar.js @@ -308,18 +308,13 @@ module.exports = grammar({ 'key', choice( alias($._unquoted_in_record, $.identifier), - alias($.val_string, $.identifier), + $.val_string, ), ), optional($._collection_annotation), ), - _collection_body: ($) => - general_body_rules( - '', - $._collection_entry, - $._entry_separator, - $._newline, - ), + _collection_body: ($) => repeat1(choice( ',', $._collection_entry, '\n')), + collection_type: ($) => seq( choice('record', 'table'), diff --git a/package.json b/package.json index 8d7f2549..e77cfbe7 100644 --- a/package.json +++ b/package.json @@ -30,15 +30,12 @@ "node-gyp-build": "^4.8.4" }, "devDependencies": { - "eslint": "^9.36.0", - "eslint-config-prettier": "^10.1.8", - "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", - "prettier": "^3.6.2", - "tree-sitter-cli": "^0.25.9" + "tree-sitter": "^0.22.4", + "tree-sitter-cli": "^0.25.10" }, "peerDependencies": { - "tree-sitter": "^0.25.0" + "tree-sitter": "^0.22.4" }, "peerDependenciesMeta": { "tree-sitter": { @@ -49,8 +46,6 @@ "install": "node-gyp-build", "prestart": "tree-sitter build --wasm", "start": "tree-sitter playground", - "test": "node --test bindings/node/*_test.js", - "lint": "eslint grammar.js", - "format": "prettier --check ." + "test": "node --test bindings/node/*_test.js" } } diff --git a/queries/nu/highlights.scm b/queries/nu/highlights.scm index 0570739e..de08f15f 100644 --- a/queries/nu/highlights.scm +++ b/queries/nu/highlights.scm @@ -18,6 +18,7 @@ ] @keyword.repeat "def" @keyword.function +(string_content) @string [ "try" @@ -62,7 +63,6 @@ ] @number "[" @punctuation.bracket digit: [ - "," @punctuation.delimiter (hex_digit) @number ] "]" @punctuation.bracket) @number @@ -143,37 +143,42 @@ file_path: (val_string) @variable.parameter ] @operator [ - "o>" - "out>" - "e>" - "err>" "e+o>" - "err+out>" - "o+e>" - "out+err>" - "o>>" - "out>>" - "e>>" - "err>>" "e+o>>" - "err+out>>" - "o+e>>" - "out+err>>" - "e>|" - "err>|" "e+o>|" + "e>" + "e>>" + "e>|" + "err+out>" + "err+out>>" "err+out>|" + "err>" + "err>>" + "err>|" + "o+e>" + "o+e>>" "o+e>|" + "o>" + "o>>" + "out+err>" + "out+err>>" "out+err>|" + "out>" + "out>>" ] @operator ; --- ; punctuation [ - "," ";" ] @punctuation.special +[ + "," + ":" + "->" +] @punctuation.delimiter + (param_long_flag "--" @punctuation.delimiter) @@ -195,9 +200,6 @@ file_path: (val_string) @variable.parameter (param_rest "..." @punctuation.delimiter) -(param_type - ":" @punctuation.special) - (param_value "=" @punctuation.special) @@ -205,24 +207,23 @@ file_path: (val_string) @variable.parameter "@" @punctuation.special) (attribute - "@" @punctuation.special) + "@" @label) (param_opt "?" @punctuation.special) -(returns - "->" @punctuation.special) - [ "(" ")" - "{" - "}" - "[" - "]" - "...[" "...(" + "...[" "...{" + "<" + ">" + "[" + "]" + "{" + "}" ] @punctuation.bracket key: (identifier) @property @@ -304,7 +305,7 @@ key: (identifier) @property (#eq? @keyword "as")) (command - "^" @punctuation.delimiter + "^" @keyword.modifier head: (_) @function) "where" @function.builtin @@ -338,21 +339,16 @@ key: (identifier) @property (val_cellpath "$" @punctuation.special) -(record_entry - ":" @punctuation.special) ; --- ; types (flat_type) @type (list_type - "list" @type.enum - [ - "<" - ">" - ] @punctuation.bracket) + "list" @type) (collection_type + . [ "record" "table" @@ -361,21 +357,8 @@ key: (identifier) @property (collection_type key: (_) @variable.parameter) -(collection_type - [ - "<" - ">" - ] @punctuation.bracket) - -(collection_type - ":" @punctuation.special) - (composite_type - "oneof" @type.enum - [ - "<" - ">" - ] @punctuation.bracket) + "oneof" @type.enum) (shebang) @keyword.directive diff --git a/src/grammar.json b/src/grammar.json index 81ef837a..5ba947a1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2981,13 +2981,8 @@ "value": "identifier" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "val_string" - }, - "named": true, - "value": "identifier" + "type": "SYMBOL", + "name": "val_string" } ] } @@ -3007,47 +3002,21 @@ ] }, "_collection_body": { - "type": "PREC", - "value": 20, + "type": "REPEAT1", "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_collection_entry" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] - } + "type": "STRING", + "value": "," }, { "type": "SYMBOL", "name": "_collection_entry" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } + "type": "STRING", + "value": "\n" } ] } diff --git a/src/node-types.json b/src/node-types.json index 5721d512..8a3866f5 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -330,6 +330,10 @@ { "type": "identifier", "named": true + }, + { + "type": "val_string", + "named": true } ] }, @@ -2248,25 +2252,7 @@ { "type": "identifier", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "raw_string_begin", - "named": true - }, - { - "type": "raw_string_end", - "named": true - }, - { - "type": "string_content", - "named": true - } - ] - } + "fields": {} }, { "type": "list_body", @@ -4645,6 +4631,10 @@ "named": true, "fields": {} }, + { + "type": "\n", + "named": false + }, { "type": "!", "named": false diff --git a/src/parser.c b/src/parser.c index 4fefcce0..1181e16d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,11 +15,11 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5204 -#define LARGE_STATE_COUNT 1263 +#define STATE_COUNT 5262 +#define LARGE_STATE_COUNT 1262 #define SYMBOL_COUNT 483 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 272 +#define TOKEN_COUNT 273 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 64 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -156,336 +156,336 @@ enum ts_symbol_identifiers { anon_sym_var_DASHwith_DASHopt_DASHtype = 126, anon_sym_record = 127, anon_sym_list = 128, - anon_sym_GT2 = 129, - anon_sym_oneof = 130, - anon_sym_AT2 = 131, - anon_sym_DOT_DOT_DOT = 132, - anon_sym_QMARK = 133, - anon_sym_DASH_DASH = 134, - anon_sym_DASH2 = 135, - sym_param_short_flag_identifier = 136, - anon_sym_LBRACE = 137, - anon_sym_RBRACE = 138, - anon_sym_EQ_GT = 139, - anon_sym__ = 140, - anon_sym_DOT_DOT = 141, - anon_sym_DOLLAR2 = 142, - anon_sym_STAR2 = 143, - aux_sym__where_predicate_lhs_path_head_token1 = 144, - anon_sym_where = 145, - anon_sym_and2 = 146, - anon_sym_xor2 = 147, - anon_sym_or2 = 148, - anon_sym_not_DASHin2 = 149, - anon_sym_has2 = 150, - anon_sym_not_DASHhas2 = 151, - anon_sym_starts_DASHwith2 = 152, - anon_sym_not_DASHstarts_DASHwith2 = 153, - anon_sym_ends_DASHwith2 = 154, - anon_sym_not_DASHends_DASHwith2 = 155, - anon_sym_EQ_EQ2 = 156, - anon_sym_BANG_EQ2 = 157, - anon_sym_LT2 = 158, - anon_sym_LT_EQ2 = 159, - anon_sym_GT_EQ2 = 160, - anon_sym_EQ_TILDE2 = 161, - anon_sym_BANG_TILDE2 = 162, - anon_sym_like2 = 163, - anon_sym_not_DASHlike2 = 164, - aux_sym_expr_unary_token1 = 165, - anon_sym_LPAREN2 = 166, - anon_sym_STAR_STAR2 = 167, - anon_sym_PLUS_PLUS2 = 168, - anon_sym_SLASH2 = 169, - anon_sym_mod2 = 170, - anon_sym_SLASH_SLASH2 = 171, - anon_sym_PLUS2 = 172, - anon_sym_bit_DASHshl2 = 173, - anon_sym_bit_DASHshr2 = 174, - anon_sym_bit_DASHand2 = 175, - anon_sym_bit_DASHxor2 = 176, - anon_sym_bit_DASHor2 = 177, - anon_sym_DOT_DOT_DOT_LPAREN = 178, - anon_sym_DOT_DOT2 = 179, - anon_sym_DOT = 180, - anon_sym_DOT_DOT_EQ = 181, - anon_sym_DOT_DOT_LT = 182, - anon_sym_DOT_DOT_EQ2 = 183, - anon_sym_DOT_DOT_LT2 = 184, - aux_sym__immediate_decimal_token1 = 185, - aux_sym__immediate_decimal_token2 = 186, - aux_sym__immediate_decimal_token3 = 187, - aux_sym__immediate_decimal_token4 = 188, - aux_sym__immediate_decimal_token5 = 189, - anon_sym_RPAREN2 = 190, - anon_sym_DOT_DOT_DOT_DOLLAR = 191, - anon_sym_nu = 192, - anon_sym_env = 193, - aux_sym__val_number_decimal_token1 = 194, - aux_sym__val_number_decimal_token2 = 195, - aux_sym__val_number_decimal_token3 = 196, - aux_sym__val_number_decimal_token4 = 197, - aux_sym__val_number_token1 = 198, - aux_sym__val_number_token2 = 199, - aux_sym__val_number_token3 = 200, - anon_sym_0b = 201, - sym_filesize_unit = 202, - sym_duration_unit = 203, - anon_sym_0o = 204, - anon_sym_0x = 205, - anon_sym_LBRACK2 = 206, - sym_hex_digit = 207, - sym_val_date = 208, - anon_sym_DQUOTE = 209, - sym__escaped_str_content = 210, - anon_sym_SQUOTE = 211, - aux_sym__str_single_quotes_token1 = 212, - anon_sym_SQUOTE2 = 213, - anon_sym_BQUOTE = 214, - aux_sym__str_back_ticks_token1 = 215, - anon_sym_BQUOTE2 = 216, - sym_escape_sequence = 217, - sym_escaped_interpolated_content = 218, - sym_unescaped_interpolated_content = 219, - anon_sym_DOLLAR_SQUOTE = 220, - anon_sym_DOLLAR_DQUOTE = 221, - anon_sym_DQUOTE2 = 222, - sym_inter_escape_sequence = 223, - anon_sym_DOT_DOT_DOT_LBRACK = 224, - anon_sym_DOT_DOT_DOT_LBRACE = 225, - sym__entry_separator = 226, - anon_sym_COLON2 = 227, - aux_sym__record_key_token1 = 228, - sym__table_head_separator = 229, - anon_sym_QMARK2 = 230, - anon_sym_BANG = 231, - anon_sym_DOT2 = 232, - aux_sym_path_token1 = 233, - anon_sym_EQ2 = 234, - aux_sym_env_var_token1 = 235, - anon_sym_CARET = 236, - anon_sym_err_GT = 237, - anon_sym_out_GT = 238, - anon_sym_e_GT = 239, - anon_sym_o_GT = 240, - anon_sym_err_PLUSout_GT = 241, - anon_sym_out_PLUSerr_GT = 242, - anon_sym_o_PLUSe_GT = 243, - anon_sym_e_PLUSo_GT = 244, - anon_sym_err_GT_GT = 245, - anon_sym_out_GT_GT = 246, - anon_sym_e_GT_GT = 247, - anon_sym_o_GT_GT = 248, - anon_sym_err_PLUSout_GT_GT = 249, - anon_sym_out_PLUSerr_GT_GT = 250, - anon_sym_o_PLUSe_GT_GT = 251, - anon_sym_e_PLUSo_GT_GT = 252, - sym_short_flag_identifier = 253, - sym__unquoted_pattern = 254, - sym__unquoted_pattern_in_list = 255, - sym__unquoted_pattern_in_record = 256, - sym__unquoted_naive = 257, - aux_sym_unquoted_token1 = 258, - aux_sym_unquoted_token2 = 259, - aux_sym__unquoted_in_list_token1 = 260, - aux_sym__unquoted_in_list_token2 = 261, - aux_sym__unquoted_in_record_token1 = 262, - aux_sym__unquoted_in_record_token2 = 263, - aux_sym__unquoted_with_expr_token1 = 264, - aux_sym__unquoted_in_list_with_expr_token1 = 265, - aux_sym__unquoted_in_record_with_expr_token1 = 266, - anon_sym_POUND = 267, - aux_sym_comment_token1 = 268, - sym_raw_string_begin = 269, - sym_raw_string_content = 270, - sym_raw_string_end = 271, - sym_nu_script = 272, - sym_shebang = 273, - sym__block_body_statement = 274, - sym__declaration = 275, - sym_decl_alias = 276, - sym_stmt_let = 277, - sym_stmt_mut = 278, - sym_stmt_const = 279, - sym_assignment = 280, - sym__assignment_pattern = 281, - sym__mutable_assignment_pattern = 282, - sym__statement = 283, - sym_pipeline = 284, - sym__block_body_statement_parenthesized = 285, - sym__declaration_parenthesized = 286, - sym_decl_alias_parenthesized = 287, - sym_stmt_let_parenthesized = 288, - sym_stmt_mut_parenthesized = 289, - sym_stmt_const_parenthesized = 290, - sym_assignment_parenthesized = 291, - sym__assignment_pattern_parenthesized = 292, - sym__mutable_assignment_pattern_parenthesized = 293, - sym__statement_parenthesized = 294, - sym_pipeline_parenthesized = 295, - sym__block_body = 296, - sym_cmd_identifier = 297, - sym__command_name = 298, - sym__variable_name = 299, - aux_sym__repeat_newline = 300, - aux_sym__pipe_separator = 301, - sym_attribute_list = 302, - sym_attribute = 303, - sym_decl_def = 304, - sym_decl_export = 305, - sym_decl_extern = 306, - sym_decl_module = 307, - sym_decl_use = 308, - sym_returns = 309, - sym__one_type = 310, - sym__types_body = 311, - sym__multiple_types = 312, - sym_parameter_parens = 313, - sym_parameter_bracks = 314, - sym_parameter_pipes = 315, - sym_parameter = 316, - sym__param_name = 317, - sym_param_type = 318, - sym_param_value = 319, - sym__type_annotation = 320, - sym__all_type = 321, - sym_flat_type = 322, - sym__collection_annotation = 323, - sym__collection_entry = 324, - sym__collection_body = 325, - sym_collection_type = 326, - sym_list_type = 327, - sym__composite_argument_body = 328, - sym_composite_type = 329, - sym_param_completer = 330, - sym_param_rest = 331, - sym_param_opt = 332, - sym_param_long_flag = 333, - sym_flag_capsule = 334, - sym_param_short_flag = 335, - sym__ctrl_statement = 336, - sym__ctrl_expression = 337, - sym__ctrl_expression_parenthesized = 338, - sym_ctrl_for = 339, - sym_ctrl_loop = 340, - sym_ctrl_while = 341, - sym_ctrl_if = 342, - sym_ctrl_if_parenthesized = 343, - sym__ctrl_match_body = 344, - sym_ctrl_match = 345, - sym_match_arm = 346, - sym_default_arm = 347, - sym_match_pattern = 348, - sym__match_pattern = 349, - sym_match_guard = 350, - sym__match_pattern_expression = 351, - sym__match_pattern_value = 352, - sym__match_pattern_list_body = 353, - sym__match_pattern_list = 354, - sym__match_pattern_rest = 355, - sym__match_pattern_record_body = 356, - sym__match_pattern_record = 357, - sym_ctrl_try = 358, - sym_ctrl_try_parenthesized = 359, - sym_pipe_element = 360, - sym_pipe_element_parenthesized = 361, - sym_scope_pattern = 362, - sym_wild_card = 363, - sym__command_list_body = 364, - sym_command_list = 365, - sym_block = 366, - sym__blosure = 367, - sym__where_predicate_lhs_path_head = 368, - sym__where_predicate_lhs = 369, - sym_where_command = 370, - sym_where_command_parenthesized = 371, - sym__binary_predicate = 372, - sym__binary_predicate_parenthesized = 373, - sym_where_predicate = 374, - sym__expression = 375, - sym__expression_parenthesized = 376, - sym_expr_unary = 377, - sym__expr_unary_minus = 378, - sym_expr_binary = 379, - sym_expr_binary_parenthesized = 380, - sym__expr_binary_expression = 381, - sym__expr_binary_expression_parenthesized = 382, - sym_expr_parenthesized = 383, - sym__spread_parenthesized = 384, - sym__expr_parenthesized_immediate = 385, - sym__parenthesized_body = 386, - sym_val_range = 387, - sym__val_range = 388, - sym__immediate_decimal = 389, - sym__value = 390, - sym_val_nothing = 391, - sym_val_bool = 392, - sym__spread_variable = 393, - sym_val_variable = 394, - sym_val_cellpath = 395, - sym_val_number = 396, - sym__val_number_decimal = 397, - sym__val_number = 398, - sym_val_duration = 399, - sym_val_filesize = 400, - sym_val_binary = 401, - sym_val_string = 402, - sym__raw_str = 403, - sym_string_content = 404, - sym__str_double_quotes = 405, - sym__str_single_quotes = 406, - sym__str_back_ticks = 407, - sym_val_interpolated = 408, - sym__inter_single_quotes = 409, - sym__inter_double_quotes = 410, - sym_expr_interpolated = 411, - sym_val_list = 412, - sym__spread_list = 413, - sym_list_body = 414, - sym_val_entry = 415, - sym_val_record = 416, - sym__spread_record = 417, - sym_record_body = 418, - sym_record_entry = 419, - sym__record_key = 420, - sym__table_head = 421, - sym__table_body = 422, - sym_val_table = 423, - sym_val_closure = 424, - sym_cell_path = 425, - sym__path_suffix = 426, - sym_path = 427, - sym_env_var = 428, - sym_command = 429, - sym__command_parenthesized = 430, - sym__cmd_arg = 431, - sym_redirection = 432, - sym__flag = 433, - sym__flag_equals_value = 434, - sym_short_flag = 435, - sym_long_flag = 436, - sym_unquoted = 437, - sym__unquoted_in_list = 438, - sym__unquoted_in_record = 439, - sym__unquoted_with_expr = 440, - sym__unquoted_in_list_with_expr = 441, - sym__unquoted_in_record_with_expr = 442, - sym__unquoted_anonymous_prefix = 443, - sym_comment = 444, - aux_sym_pipeline_repeat1 = 445, - aux_sym_pipeline_parenthesized_repeat1 = 446, - aux_sym__block_body_repeat1 = 447, - aux_sym__block_body_repeat2 = 448, - aux_sym_attribute_list_repeat1 = 449, - aux_sym_attribute_repeat1 = 450, - aux_sym_decl_def_repeat1 = 451, - aux_sym__types_body_repeat1 = 452, - aux_sym__types_body_repeat2 = 453, - aux_sym__types_body_repeat3 = 454, - aux_sym_parameter_parens_repeat1 = 455, - aux_sym_parameter_repeat1 = 456, - aux_sym_parameter_repeat2 = 457, - aux_sym__collection_body_repeat1 = 458, + anon_sym_LF = 129, + anon_sym_GT2 = 130, + anon_sym_oneof = 131, + anon_sym_AT2 = 132, + anon_sym_DOT_DOT_DOT = 133, + anon_sym_QMARK = 134, + anon_sym_DASH_DASH = 135, + anon_sym_DASH2 = 136, + sym_param_short_flag_identifier = 137, + anon_sym_LBRACE = 138, + anon_sym_RBRACE = 139, + anon_sym_EQ_GT = 140, + anon_sym__ = 141, + anon_sym_DOT_DOT = 142, + anon_sym_DOLLAR2 = 143, + anon_sym_STAR2 = 144, + aux_sym__where_predicate_lhs_path_head_token1 = 145, + anon_sym_where = 146, + anon_sym_and2 = 147, + anon_sym_xor2 = 148, + anon_sym_or2 = 149, + anon_sym_not_DASHin2 = 150, + anon_sym_has2 = 151, + anon_sym_not_DASHhas2 = 152, + anon_sym_starts_DASHwith2 = 153, + anon_sym_not_DASHstarts_DASHwith2 = 154, + anon_sym_ends_DASHwith2 = 155, + anon_sym_not_DASHends_DASHwith2 = 156, + anon_sym_EQ_EQ2 = 157, + anon_sym_BANG_EQ2 = 158, + anon_sym_LT2 = 159, + anon_sym_LT_EQ2 = 160, + anon_sym_GT_EQ2 = 161, + anon_sym_EQ_TILDE2 = 162, + anon_sym_BANG_TILDE2 = 163, + anon_sym_like2 = 164, + anon_sym_not_DASHlike2 = 165, + aux_sym_expr_unary_token1 = 166, + anon_sym_LPAREN2 = 167, + anon_sym_STAR_STAR2 = 168, + anon_sym_PLUS_PLUS2 = 169, + anon_sym_SLASH2 = 170, + anon_sym_mod2 = 171, + anon_sym_SLASH_SLASH2 = 172, + anon_sym_PLUS2 = 173, + anon_sym_bit_DASHshl2 = 174, + anon_sym_bit_DASHshr2 = 175, + anon_sym_bit_DASHand2 = 176, + anon_sym_bit_DASHxor2 = 177, + anon_sym_bit_DASHor2 = 178, + anon_sym_DOT_DOT_DOT_LPAREN = 179, + anon_sym_DOT_DOT2 = 180, + anon_sym_DOT = 181, + anon_sym_DOT_DOT_EQ = 182, + anon_sym_DOT_DOT_LT = 183, + anon_sym_DOT_DOT_EQ2 = 184, + anon_sym_DOT_DOT_LT2 = 185, + aux_sym__immediate_decimal_token1 = 186, + aux_sym__immediate_decimal_token2 = 187, + aux_sym__immediate_decimal_token3 = 188, + aux_sym__immediate_decimal_token4 = 189, + aux_sym__immediate_decimal_token5 = 190, + anon_sym_RPAREN2 = 191, + anon_sym_DOT_DOT_DOT_DOLLAR = 192, + anon_sym_nu = 193, + anon_sym_env = 194, + aux_sym__val_number_decimal_token1 = 195, + aux_sym__val_number_decimal_token2 = 196, + aux_sym__val_number_decimal_token3 = 197, + aux_sym__val_number_decimal_token4 = 198, + aux_sym__val_number_token1 = 199, + aux_sym__val_number_token2 = 200, + aux_sym__val_number_token3 = 201, + anon_sym_0b = 202, + sym_filesize_unit = 203, + sym_duration_unit = 204, + anon_sym_0o = 205, + anon_sym_0x = 206, + anon_sym_LBRACK2 = 207, + sym_hex_digit = 208, + sym_val_date = 209, + anon_sym_DQUOTE = 210, + sym__escaped_str_content = 211, + anon_sym_SQUOTE = 212, + aux_sym__str_single_quotes_token1 = 213, + anon_sym_SQUOTE2 = 214, + anon_sym_BQUOTE = 215, + aux_sym__str_back_ticks_token1 = 216, + anon_sym_BQUOTE2 = 217, + sym_escape_sequence = 218, + sym_escaped_interpolated_content = 219, + sym_unescaped_interpolated_content = 220, + anon_sym_DOLLAR_SQUOTE = 221, + anon_sym_DOLLAR_DQUOTE = 222, + anon_sym_DQUOTE2 = 223, + sym_inter_escape_sequence = 224, + anon_sym_DOT_DOT_DOT_LBRACK = 225, + anon_sym_DOT_DOT_DOT_LBRACE = 226, + sym__entry_separator = 227, + anon_sym_COLON2 = 228, + aux_sym__record_key_token1 = 229, + sym__table_head_separator = 230, + anon_sym_QMARK2 = 231, + anon_sym_BANG = 232, + anon_sym_DOT2 = 233, + aux_sym_path_token1 = 234, + anon_sym_EQ2 = 235, + aux_sym_env_var_token1 = 236, + anon_sym_CARET = 237, + anon_sym_err_GT = 238, + anon_sym_out_GT = 239, + anon_sym_e_GT = 240, + anon_sym_o_GT = 241, + anon_sym_err_PLUSout_GT = 242, + anon_sym_out_PLUSerr_GT = 243, + anon_sym_o_PLUSe_GT = 244, + anon_sym_e_PLUSo_GT = 245, + anon_sym_err_GT_GT = 246, + anon_sym_out_GT_GT = 247, + anon_sym_e_GT_GT = 248, + anon_sym_o_GT_GT = 249, + anon_sym_err_PLUSout_GT_GT = 250, + anon_sym_out_PLUSerr_GT_GT = 251, + anon_sym_o_PLUSe_GT_GT = 252, + anon_sym_e_PLUSo_GT_GT = 253, + sym_short_flag_identifier = 254, + sym__unquoted_pattern = 255, + sym__unquoted_pattern_in_list = 256, + sym__unquoted_pattern_in_record = 257, + sym__unquoted_naive = 258, + aux_sym_unquoted_token1 = 259, + aux_sym_unquoted_token2 = 260, + aux_sym__unquoted_in_list_token1 = 261, + aux_sym__unquoted_in_list_token2 = 262, + aux_sym__unquoted_in_record_token1 = 263, + aux_sym__unquoted_in_record_token2 = 264, + aux_sym__unquoted_with_expr_token1 = 265, + aux_sym__unquoted_in_list_with_expr_token1 = 266, + aux_sym__unquoted_in_record_with_expr_token1 = 267, + anon_sym_POUND = 268, + aux_sym_comment_token1 = 269, + sym_raw_string_begin = 270, + sym_raw_string_content = 271, + sym_raw_string_end = 272, + sym_nu_script = 273, + sym_shebang = 274, + sym__block_body_statement = 275, + sym__declaration = 276, + sym_decl_alias = 277, + sym_stmt_let = 278, + sym_stmt_mut = 279, + sym_stmt_const = 280, + sym_assignment = 281, + sym__assignment_pattern = 282, + sym__mutable_assignment_pattern = 283, + sym__statement = 284, + sym_pipeline = 285, + sym__block_body_statement_parenthesized = 286, + sym__declaration_parenthesized = 287, + sym_decl_alias_parenthesized = 288, + sym_stmt_let_parenthesized = 289, + sym_stmt_mut_parenthesized = 290, + sym_stmt_const_parenthesized = 291, + sym_assignment_parenthesized = 292, + sym__assignment_pattern_parenthesized = 293, + sym__mutable_assignment_pattern_parenthesized = 294, + sym__statement_parenthesized = 295, + sym_pipeline_parenthesized = 296, + sym__block_body = 297, + sym_cmd_identifier = 298, + sym__command_name = 299, + sym__variable_name = 300, + aux_sym__repeat_newline = 301, + aux_sym__pipe_separator = 302, + sym_attribute_list = 303, + sym_attribute = 304, + sym_decl_def = 305, + sym_decl_export = 306, + sym_decl_extern = 307, + sym_decl_module = 308, + sym_decl_use = 309, + sym_returns = 310, + sym__one_type = 311, + sym__types_body = 312, + sym__multiple_types = 313, + sym_parameter_parens = 314, + sym_parameter_bracks = 315, + sym_parameter_pipes = 316, + sym_parameter = 317, + sym__param_name = 318, + sym_param_type = 319, + sym_param_value = 320, + sym__type_annotation = 321, + sym__all_type = 322, + sym_flat_type = 323, + sym__collection_annotation = 324, + sym__collection_entry = 325, + aux_sym__collection_body = 326, + sym_collection_type = 327, + sym_list_type = 328, + sym__composite_argument_body = 329, + sym_composite_type = 330, + sym_param_completer = 331, + sym_param_rest = 332, + sym_param_opt = 333, + sym_param_long_flag = 334, + sym_flag_capsule = 335, + sym_param_short_flag = 336, + sym__ctrl_statement = 337, + sym__ctrl_expression = 338, + sym__ctrl_expression_parenthesized = 339, + sym_ctrl_for = 340, + sym_ctrl_loop = 341, + sym_ctrl_while = 342, + sym_ctrl_if = 343, + sym_ctrl_if_parenthesized = 344, + sym__ctrl_match_body = 345, + sym_ctrl_match = 346, + sym_match_arm = 347, + sym_default_arm = 348, + sym_match_pattern = 349, + sym__match_pattern = 350, + sym_match_guard = 351, + sym__match_pattern_expression = 352, + sym__match_pattern_value = 353, + sym__match_pattern_list_body = 354, + sym__match_pattern_list = 355, + sym__match_pattern_rest = 356, + sym__match_pattern_record_body = 357, + sym__match_pattern_record = 358, + sym_ctrl_try = 359, + sym_ctrl_try_parenthesized = 360, + sym_pipe_element = 361, + sym_pipe_element_parenthesized = 362, + sym_scope_pattern = 363, + sym_wild_card = 364, + sym__command_list_body = 365, + sym_command_list = 366, + sym_block = 367, + sym__blosure = 368, + sym__where_predicate_lhs_path_head = 369, + sym__where_predicate_lhs = 370, + sym_where_command = 371, + sym_where_command_parenthesized = 372, + sym__binary_predicate = 373, + sym__binary_predicate_parenthesized = 374, + sym_where_predicate = 375, + sym__expression = 376, + sym__expression_parenthesized = 377, + sym_expr_unary = 378, + sym__expr_unary_minus = 379, + sym_expr_binary = 380, + sym_expr_binary_parenthesized = 381, + sym__expr_binary_expression = 382, + sym__expr_binary_expression_parenthesized = 383, + sym_expr_parenthesized = 384, + sym__spread_parenthesized = 385, + sym__expr_parenthesized_immediate = 386, + sym__parenthesized_body = 387, + sym_val_range = 388, + sym__val_range = 389, + sym__immediate_decimal = 390, + sym__value = 391, + sym_val_nothing = 392, + sym_val_bool = 393, + sym__spread_variable = 394, + sym_val_variable = 395, + sym_val_cellpath = 396, + sym_val_number = 397, + sym__val_number_decimal = 398, + sym__val_number = 399, + sym_val_duration = 400, + sym_val_filesize = 401, + sym_val_binary = 402, + sym_val_string = 403, + sym__raw_str = 404, + sym_string_content = 405, + sym__str_double_quotes = 406, + sym__str_single_quotes = 407, + sym__str_back_ticks = 408, + sym_val_interpolated = 409, + sym__inter_single_quotes = 410, + sym__inter_double_quotes = 411, + sym_expr_interpolated = 412, + sym_val_list = 413, + sym__spread_list = 414, + sym_list_body = 415, + sym_val_entry = 416, + sym_val_record = 417, + sym__spread_record = 418, + sym_record_body = 419, + sym_record_entry = 420, + sym__record_key = 421, + sym__table_head = 422, + sym__table_body = 423, + sym_val_table = 424, + sym_val_closure = 425, + sym_cell_path = 426, + sym__path_suffix = 427, + sym_path = 428, + sym_env_var = 429, + sym_command = 430, + sym__command_parenthesized = 431, + sym__cmd_arg = 432, + sym_redirection = 433, + sym__flag = 434, + sym__flag_equals_value = 435, + sym_short_flag = 436, + sym_long_flag = 437, + sym_unquoted = 438, + sym__unquoted_in_list = 439, + sym__unquoted_in_record = 440, + sym__unquoted_with_expr = 441, + sym__unquoted_in_list_with_expr = 442, + sym__unquoted_in_record_with_expr = 443, + sym__unquoted_anonymous_prefix = 444, + sym_comment = 445, + aux_sym_pipeline_repeat1 = 446, + aux_sym_pipeline_parenthesized_repeat1 = 447, + aux_sym__block_body_repeat1 = 448, + aux_sym__block_body_repeat2 = 449, + aux_sym_attribute_list_repeat1 = 450, + aux_sym_attribute_repeat1 = 451, + aux_sym_decl_def_repeat1 = 452, + aux_sym__types_body_repeat1 = 453, + aux_sym__types_body_repeat2 = 454, + aux_sym__types_body_repeat3 = 455, + aux_sym_parameter_parens_repeat1 = 456, + aux_sym_parameter_repeat1 = 457, + aux_sym_parameter_repeat2 = 458, aux_sym__composite_argument_body_repeat1 = 459, aux_sym__ctrl_match_body_repeat1 = 460, aux_sym_match_pattern_repeat1 = 461, @@ -645,6 +645,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_var_DASHwith_DASHopt_DASHtype] = "var-with-opt-type", [anon_sym_record] = "record", [anon_sym_list] = "list", + [anon_sym_LF] = "\n", [anon_sym_GT2] = ">", [anon_sym_oneof] = "oneof", [anon_sym_AT2] = "@", @@ -841,7 +842,7 @@ static const char * const ts_symbol_names[] = { [sym_flat_type] = "flat_type", [sym__collection_annotation] = "_collection_annotation", [sym__collection_entry] = "_collection_entry", - [sym__collection_body] = "_collection_body", + [aux_sym__collection_body] = "_collection_body", [sym_collection_type] = "collection_type", [sym_list_type] = "list_type", [sym__composite_argument_body] = "_composite_argument_body", @@ -974,7 +975,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_parameter_parens_repeat1] = "parameter_parens_repeat1", [aux_sym_parameter_repeat1] = "parameter_repeat1", [aux_sym_parameter_repeat2] = "parameter_repeat2", - [aux_sym__collection_body_repeat1] = "_collection_body_repeat1", [aux_sym__composite_argument_body_repeat1] = "_composite_argument_body_repeat1", [aux_sym__ctrl_match_body_repeat1] = "_ctrl_match_body_repeat1", [aux_sym_match_pattern_repeat1] = "match_pattern_repeat1", @@ -1134,6 +1134,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_var_DASHwith_DASHopt_DASHtype] = anon_sym_var_DASHwith_DASHopt_DASHtype, [anon_sym_record] = anon_sym_record, [anon_sym_list] = anon_sym_list, + [anon_sym_LF] = anon_sym_LF, [anon_sym_GT2] = anon_sym_GT, [anon_sym_oneof] = anon_sym_oneof, [anon_sym_AT2] = anon_sym_AT, @@ -1330,7 +1331,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_flat_type] = sym_flat_type, [sym__collection_annotation] = sym__collection_annotation, [sym__collection_entry] = sym__collection_entry, - [sym__collection_body] = sym__collection_body, + [aux_sym__collection_body] = aux_sym__collection_body, [sym_collection_type] = sym_collection_type, [sym_list_type] = sym_list_type, [sym__composite_argument_body] = sym__composite_argument_body, @@ -1463,7 +1464,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_parameter_parens_repeat1] = aux_sym_parameter_parens_repeat1, [aux_sym_parameter_repeat1] = aux_sym_parameter_repeat1, [aux_sym_parameter_repeat2] = aux_sym_parameter_repeat2, - [aux_sym__collection_body_repeat1] = aux_sym__collection_body_repeat1, [aux_sym__composite_argument_body_repeat1] = aux_sym__composite_argument_body_repeat1, [aux_sym__ctrl_match_body_repeat1] = aux_sym__ctrl_match_body_repeat1, [aux_sym_match_pattern_repeat1] = aux_sym_match_pattern_repeat1, @@ -2010,6 +2010,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LF] = { + .visible = true, + .named = false, + }, [anon_sym_GT2] = { .visible = true, .named = false, @@ -2794,9 +2798,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__collection_body] = { + [aux_sym__collection_body] = { .visible = false, - .named = true, + .named = false, }, [sym_collection_type] = { .visible = true, @@ -3326,10 +3330,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__collection_body_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym__composite_argument_body_repeat1] = { .visible = false, .named = false, @@ -3738,89 +3738,89 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [164] = {.index = 325, .length = 4}, [165] = {.index = 329, .length = 3}, [166] = {.index = 332, .length = 1}, - [167] = {.index = 333, .length = 2}, - [168] = {.index = 335, .length = 1}, - [169] = {.index = 336, .length = 1}, - [170] = {.index = 337, .length = 1}, - [171] = {.index = 338, .length = 2}, - [172] = {.index = 340, .length = 2}, - [173] = {.index = 342, .length = 5}, - [174] = {.index = 347, .length = 6}, - [175] = {.index = 353, .length = 1}, - [176] = {.index = 354, .length = 1}, - [177] = {.index = 355, .length = 2}, - [178] = {.index = 357, .length = 2}, - [179] = {.index = 359, .length = 2}, - [180] = {.index = 361, .length = 2}, - [181] = {.index = 363, .length = 2}, - [182] = {.index = 365, .length = 9}, - [183] = {.index = 374, .length = 6}, - [184] = {.index = 380, .length = 9}, - [185] = {.index = 389, .length = 6}, - [186] = {.index = 395, .length = 6}, - [187] = {.index = 401, .length = 6}, - [188] = {.index = 407, .length = 3}, + [167] = {.index = 332, .length = 1}, + [168] = {.index = 333, .length = 2}, + [169] = {.index = 335, .length = 1}, + [170] = {.index = 336, .length = 1}, + [171] = {.index = 337, .length = 1}, + [172] = {.index = 338, .length = 2}, + [173] = {.index = 340, .length = 2}, + [174] = {.index = 342, .length = 5}, + [175] = {.index = 347, .length = 6}, + [176] = {.index = 353, .length = 1}, + [177] = {.index = 354, .length = 1}, + [178] = {.index = 355, .length = 2}, + [179] = {.index = 357, .length = 2}, + [180] = {.index = 359, .length = 2}, + [181] = {.index = 361, .length = 2}, + [182] = {.index = 363, .length = 2}, + [183] = {.index = 365, .length = 9}, + [184] = {.index = 374, .length = 6}, + [185] = {.index = 380, .length = 9}, + [186] = {.index = 389, .length = 6}, + [187] = {.index = 395, .length = 6}, + [188] = {.index = 401, .length = 6}, [189] = {.index = 407, .length = 3}, - [190] = {.index = 410, .length = 1}, - [191] = {.index = 411, .length = 4}, - [192] = {.index = 415, .length = 5}, - [193] = {.index = 420, .length = 5}, - [194] = {.index = 425, .length = 4}, - [195] = {.index = 429, .length = 3}, - [196] = {.index = 432, .length = 3}, - [197] = {.index = 435, .length = 3}, - [198] = {.index = 438, .length = 6}, - [199] = {.index = 444, .length = 2}, - [200] = {.index = 446, .length = 1}, - [201] = {.index = 447, .length = 2}, - [202] = {.index = 449, .length = 2}, - [203] = {.index = 451, .length = 2}, - [204] = {.index = 453, .length = 3}, - [205] = {.index = 456, .length = 3}, - [206] = {.index = 459, .length = 3}, - [207] = {.index = 462, .length = 3}, - [208] = {.index = 465, .length = 3}, - [209] = {.index = 468, .length = 3}, - [210] = {.index = 471, .length = 2}, - [211] = {.index = 473, .length = 2}, - [212] = {.index = 475, .length = 9}, - [213] = {.index = 484, .length = 6}, - [214] = {.index = 490, .length = 6}, - [215] = {.index = 496, .length = 1}, - [216] = {.index = 497, .length = 4}, - [217] = {.index = 501, .length = 5}, - [218] = {.index = 506, .length = 6}, - [219] = {.index = 512, .length = 3}, - [220] = {.index = 515, .length = 3}, - [221] = {.index = 518, .length = 3}, - [222] = {.index = 521, .length = 3}, - [223] = {.index = 524, .length = 3}, - [224] = {.index = 527, .length = 3}, - [225] = {.index = 530, .length = 3}, - [226] = {.index = 533, .length = 3}, - [227] = {.index = 536, .length = 3}, - [228] = {.index = 539, .length = 2}, - [229] = {.index = 541, .length = 2}, - [230] = {.index = 543, .length = 5}, - [231] = {.index = 548, .length = 4}, - [232] = {.index = 552, .length = 3}, - [233] = {.index = 555, .length = 3}, - [234] = {.index = 558, .length = 3}, - [235] = {.index = 561, .length = 3}, - [236] = {.index = 564, .length = 3}, - [237] = {.index = 567, .length = 3}, - [238] = {.index = 570, .length = 3}, - [239] = {.index = 573, .length = 3}, - [240] = {.index = 576, .length = 2}, - [241] = {.index = 578, .length = 5}, - [242] = {.index = 583, .length = 3}, - [243] = {.index = 586, .length = 3}, - [244] = {.index = 589, .length = 3}, - [245] = {.index = 592, .length = 3}, - [246] = {.index = 595, .length = 3}, - [247] = {.index = 598, .length = 3}, - [248] = {.index = 601, .length = 3}, - [249] = {.index = 604, .length = 3}, + [190] = {.index = 407, .length = 3}, + [191] = {.index = 410, .length = 1}, + [192] = {.index = 411, .length = 4}, + [193] = {.index = 415, .length = 5}, + [194] = {.index = 420, .length = 5}, + [195] = {.index = 425, .length = 4}, + [196] = {.index = 429, .length = 3}, + [197] = {.index = 432, .length = 6}, + [198] = {.index = 438, .length = 3}, + [199] = {.index = 438, .length = 3}, + [200] = {.index = 441, .length = 2}, + [201] = {.index = 443, .length = 1}, + [202] = {.index = 444, .length = 2}, + [203] = {.index = 446, .length = 2}, + [204] = {.index = 448, .length = 2}, + [205] = {.index = 450, .length = 3}, + [206] = {.index = 453, .length = 3}, + [207] = {.index = 456, .length = 3}, + [208] = {.index = 459, .length = 3}, + [209] = {.index = 462, .length = 3}, + [210] = {.index = 465, .length = 3}, + [211] = {.index = 468, .length = 2}, + [212] = {.index = 470, .length = 2}, + [213] = {.index = 472, .length = 9}, + [214] = {.index = 481, .length = 6}, + [215] = {.index = 487, .length = 6}, + [216] = {.index = 493, .length = 1}, + [217] = {.index = 494, .length = 4}, + [218] = {.index = 498, .length = 5}, + [219] = {.index = 503, .length = 3}, + [220] = {.index = 506, .length = 3}, + [221] = {.index = 509, .length = 3}, + [222] = {.index = 512, .length = 3}, + [223] = {.index = 515, .length = 3}, + [224] = {.index = 518, .length = 3}, + [225] = {.index = 521, .length = 3}, + [226] = {.index = 524, .length = 3}, + [227] = {.index = 527, .length = 3}, + [228] = {.index = 530, .length = 2}, + [229] = {.index = 532, .length = 2}, + [230] = {.index = 534, .length = 5}, + [231] = {.index = 539, .length = 4}, + [232] = {.index = 543, .length = 3}, + [233] = {.index = 546, .length = 3}, + [234] = {.index = 549, .length = 3}, + [235] = {.index = 552, .length = 3}, + [236] = {.index = 555, .length = 3}, + [237] = {.index = 558, .length = 3}, + [238] = {.index = 561, .length = 3}, + [239] = {.index = 564, .length = 3}, + [240] = {.index = 567, .length = 2}, + [241] = {.index = 569, .length = 5}, + [242] = {.index = 574, .length = 3}, + [243] = {.index = 577, .length = 3}, + [244] = {.index = 580, .length = 3}, + [245] = {.index = 583, .length = 3}, + [246] = {.index = 586, .length = 3}, + [247] = {.index = 589, .length = 3}, + [248] = {.index = 592, .length = 3}, + [249] = {.index = 595, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4423,65 +4423,61 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, [432] = - {field_completion, 1, .inherited = true}, - {field_key, 0}, - {field_type, 1, .inherited = true}, - [435] = - {field_completion, 1, .inherited = true}, - {field_key, 1, .inherited = true}, - {field_type, 1, .inherited = true}, - [438] = {field_completion, 0, .inherited = true}, {field_completion, 1, .inherited = true}, {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [444] = + [438] = + {field_completion, 1, .inherited = true}, + {field_key, 0}, + {field_type, 1, .inherited = true}, + [441] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [446] = + [443] = {field_completion, 2}, - [447] = + [444] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [449] = + [446] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [451] = + [448] = {field_entry, 1, .inherited = true}, {field_rest, 2}, - [453] = + [450] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [456] = + [453] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [459] = + [456] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [462] = + [459] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [465] = + [462] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [468] = + [465] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [471] = + [468] = {field_catch_branch, 5}, {field_try_branch, 2}, - [473] = + [470] = {field_catch_branch, 5}, {field_try_branch, 1}, - [475] = + [472] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4491,163 +4487,156 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [484] = + [481] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 2}, {field_rhs, 0, .inherited = true}, {field_rhs, 4}, - [490] = + [487] = {field_lhs, 0}, {field_lhs, 4, .inherited = true}, {field_opr, 2}, {field_opr, 4, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [496] = + [493] = {field_param_value, 3}, - [497] = + [494] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [501] = + [498] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 3, .inherited = true}, - [506] = - {field_completion, 1, .inherited = true}, - {field_completion, 2, .inherited = true}, - {field_key, 1, .inherited = true}, - {field_key, 2, .inherited = true}, - {field_type, 1, .inherited = true}, - {field_type, 2, .inherited = true}, - [512] = + [503] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [515] = + [506] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [518] = + [509] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [521] = + [512] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [524] = + [515] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [527] = + [518] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [530] = + [521] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [533] = + [524] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [536] = + [527] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [539] = + [530] = {field_catch_branch, 6}, {field_try_branch, 2}, - [541] = + [532] = {field_catch_branch, 6}, {field_try_branch, 1}, - [543] = + [534] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 4, .inherited = true}, - [548] = + [539] = {field_body, 7}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [552] = + [543] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [555] = + [546] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [558] = + [549] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [561] = + [552] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [564] = + [555] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [567] = + [558] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [570] = + [561] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [573] = + [564] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [576] = + [567] = {field_catch_branch, 7}, {field_try_branch, 2}, - [578] = + [569] = {field_body, 8}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 7}, {field_unquoted_name, 4, .inherited = true}, - [583] = + [574] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [586] = + [577] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [589] = + [580] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [592] = + [583] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [595] = + [586] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [598] = + [589] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [601] = + [592] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [604] = + [595] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, @@ -4765,13 +4754,13 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = sym_val_number, [4] = sym_val_number, }, - [166] = { + [167] = { [0] = sym_identifier, }, - [189] = { + [190] = { [4] = sym_val_string, }, - [196] = { + [199] = { [0] = sym_identifier, }, }; @@ -4795,9 +4784,6 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym__val_number_decimal, 2, sym__val_number_decimal, sym_val_number, - sym_val_string, 2, - sym_val_string, - sym_identifier, sym_unquoted, 3, sym_unquoted, anon_alias_sym__head, @@ -4819,10 +4805,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 4, - [6] = 3, - [7] = 4, - [8] = 3, - [9] = 4, + [6] = 4, + [7] = 3, + [8] = 4, + [9] = 3, [10] = 4, [11] = 4, [12] = 4, @@ -4830,16 +4816,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [14] = 4, [15] = 4, [16] = 16, - [17] = 16, - [18] = 16, - [19] = 16, + [17] = 17, + [18] = 18, + [19] = 18, [20] = 16, - [21] = 21, - [22] = 22, - [23] = 16, - [24] = 22, - [25] = 16, - [26] = 21, + [21] = 17, + [22] = 18, + [23] = 18, + [24] = 18, + [25] = 18, + [26] = 18, [27] = 27, [28] = 27, [29] = 27, @@ -4849,170 +4835,170 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [33] = 27, [34] = 27, [35] = 35, - [36] = 36, + [36] = 35, [37] = 37, - [38] = 38, - [39] = 36, - [40] = 37, - [41] = 38, + [38] = 35, + [39] = 39, + [40] = 40, + [41] = 35, [42] = 42, - [43] = 35, - [44] = 44, - [45] = 42, - [46] = 35, - [47] = 36, - [48] = 38, + [43] = 43, + [44] = 39, + [45] = 45, + [46] = 40, + [47] = 35, + [48] = 40, [49] = 42, - [50] = 35, - [51] = 36, - [52] = 36, - [53] = 42, - [54] = 35, - [55] = 44, - [56] = 36, - [57] = 42, - [58] = 35, - [59] = 44, - [60] = 36, - [61] = 42, + [50] = 43, + [51] = 45, + [52] = 42, + [53] = 43, + [54] = 45, + [55] = 45, + [56] = 42, + [57] = 35, + [58] = 43, + [59] = 42, + [60] = 43, + [61] = 45, [62] = 35, - [63] = 44, - [64] = 42, - [65] = 35, - [66] = 44, - [67] = 35, - [68] = 35, - [69] = 44, - [70] = 35, - [71] = 71, - [72] = 36, - [73] = 44, + [63] = 42, + [64] = 43, + [65] = 45, + [66] = 42, + [67] = 43, + [68] = 45, + [69] = 43, + [70] = 43, + [71] = 43, + [72] = 43, + [73] = 35, [74] = 74, [75] = 75, - [76] = 74, + [76] = 75, [77] = 77, - [78] = 75, - [79] = 74, - [80] = 80, - [81] = 80, + [78] = 78, + [79] = 77, + [80] = 78, + [81] = 75, [82] = 82, [83] = 83, - [84] = 82, - [85] = 85, - [86] = 85, - [87] = 82, + [84] = 84, + [85] = 83, + [86] = 86, + [87] = 87, [88] = 88, - [89] = 85, - [90] = 90, - [91] = 91, + [89] = 86, + [90] = 83, + [91] = 86, [92] = 92, [93] = 93, - [94] = 92, - [95] = 92, - [96] = 93, + [94] = 94, + [95] = 95, + [96] = 92, [97] = 93, - [98] = 98, - [99] = 99, + [98] = 93, + [99] = 92, [100] = 92, [101] = 93, - [102] = 99, - [103] = 103, - [104] = 93, + [102] = 94, + [103] = 95, + [104] = 94, [105] = 105, [106] = 106, - [107] = 98, - [108] = 108, - [109] = 109, + [107] = 107, + [108] = 95, + [109] = 94, [110] = 92, - [111] = 99, - [112] = 98, - [113] = 99, - [114] = 98, + [111] = 93, + [112] = 112, + [113] = 95, + [114] = 114, [115] = 115, - [116] = 115, - [117] = 105, + [116] = 107, + [117] = 117, [118] = 106, - [119] = 99, - [120] = 120, - [121] = 115, - [122] = 98, - [123] = 108, - [124] = 108, - [125] = 105, - [126] = 106, - [127] = 108, - [128] = 103, - [129] = 105, - [130] = 92, - [131] = 93, + [119] = 107, + [120] = 92, + [121] = 95, + [122] = 93, + [123] = 106, + [124] = 105, + [125] = 94, + [126] = 105, + [127] = 114, + [128] = 107, + [129] = 114, + [130] = 106, + [131] = 105, [132] = 115, - [133] = 106, - [134] = 108, - [135] = 98, - [136] = 115, - [137] = 105, + [133] = 114, + [134] = 94, + [135] = 95, + [136] = 105, + [137] = 107, [138] = 106, - [139] = 99, - [140] = 105, - [141] = 115, - [142] = 108, - [143] = 106, + [139] = 114, + [140] = 107, + [141] = 106, + [142] = 114, + [143] = 105, [144] = 144, - [145] = 144, + [145] = 145, [146] = 144, - [147] = 147, + [147] = 145, [148] = 144, - [149] = 147, - [150] = 147, - [151] = 147, + [149] = 145, + [150] = 144, + [151] = 145, [152] = 152, [153] = 153, - [154] = 153, - [155] = 155, - [156] = 152, + [154] = 154, + [155] = 145, + [156] = 156, [157] = 157, [158] = 158, [159] = 159, - [160] = 157, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 158, - [166] = 153, - [167] = 155, + [160] = 160, + [161] = 159, + [162] = 156, + [163] = 157, + [164] = 158, + [165] = 159, + [166] = 160, + [167] = 157, [168] = 152, - [169] = 157, - [170] = 158, - [171] = 161, - [172] = 144, - [173] = 147, - [174] = 153, - [175] = 155, - [176] = 152, - [177] = 157, - [178] = 158, - [179] = 162, - [180] = 159, - [181] = 163, - [182] = 164, - [183] = 155, + [169] = 156, + [170] = 170, + [171] = 144, + [172] = 160, + [173] = 158, + [174] = 157, + [175] = 158, + [176] = 159, + [177] = 160, + [178] = 153, + [179] = 154, + [180] = 180, + [181] = 180, + [182] = 156, + [183] = 170, [184] = 184, - [185] = 184, + [185] = 185, [186] = 186, - [187] = 187, - [188] = 184, - [189] = 144, - [190] = 147, - [191] = 184, - [192] = 187, - [193] = 193, - [194] = 103, + [187] = 185, + [188] = 186, + [189] = 185, + [190] = 190, + [191] = 145, + [192] = 144, + [193] = 185, + [194] = 115, [195] = 195, [196] = 196, [197] = 197, - [198] = 198, - [199] = 199, + [198] = 196, + [199] = 197, [200] = 200, [201] = 201, [202] = 202, @@ -5021,7 +5007,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [205] = 205, [206] = 206, [207] = 207, - [208] = 195, + [208] = 208, [209] = 209, [210] = 210, [211] = 211, @@ -5031,298 +5017,298 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [215] = 215, [216] = 216, [217] = 217, - [218] = 196, + [218] = 218, [219] = 219, - [220] = 197, - [221] = 205, - [222] = 222, - [223] = 198, - [224] = 199, - [225] = 200, - [226] = 201, - [227] = 202, - [228] = 203, - [229] = 204, - [230] = 222, - [231] = 206, - [232] = 207, - [233] = 195, - [234] = 219, - [235] = 210, - [236] = 211, - [237] = 212, - [238] = 213, - [239] = 214, - [240] = 215, - [241] = 216, - [242] = 217, - [243] = 196, - [244] = 219, - [245] = 197, - [246] = 205, - [247] = 222, - [248] = 198, - [249] = 199, - [250] = 200, - [251] = 201, - [252] = 202, - [253] = 203, - [254] = 204, - [255] = 206, - [256] = 207, - [257] = 209, - [258] = 210, - [259] = 211, - [260] = 212, - [261] = 213, - [262] = 214, - [263] = 215, - [264] = 216, - [265] = 217, - [266] = 209, - [267] = 92, + [220] = 220, + [221] = 200, + [222] = 201, + [223] = 202, + [224] = 203, + [225] = 204, + [226] = 205, + [227] = 206, + [228] = 207, + [229] = 208, + [230] = 209, + [231] = 210, + [232] = 196, + [233] = 200, + [234] = 201, + [235] = 202, + [236] = 203, + [237] = 204, + [238] = 205, + [239] = 206, + [240] = 207, + [241] = 208, + [242] = 209, + [243] = 210, + [244] = 211, + [245] = 195, + [246] = 212, + [247] = 213, + [248] = 214, + [249] = 215, + [250] = 216, + [251] = 217, + [252] = 218, + [253] = 219, + [254] = 220, + [255] = 211, + [256] = 195, + [257] = 212, + [258] = 213, + [259] = 214, + [260] = 215, + [261] = 216, + [262] = 217, + [263] = 218, + [264] = 219, + [265] = 220, + [266] = 197, + [267] = 93, [268] = 93, [269] = 92, [270] = 93, - [271] = 93, + [271] = 92, [272] = 92, - [273] = 98, + [273] = 95, [274] = 274, - [275] = 275, - [276] = 274, - [277] = 92, - [278] = 93, - [279] = 99, - [280] = 280, - [281] = 280, - [282] = 99, - [283] = 275, - [284] = 98, - [285] = 274, - [286] = 99, - [287] = 280, - [288] = 274, - [289] = 275, - [290] = 280, - [291] = 274, - [292] = 280, - [293] = 98, - [294] = 115, - [295] = 99, - [296] = 93, - [297] = 108, - [298] = 105, - [299] = 108, - [300] = 106, - [301] = 106, + [275] = 95, + [276] = 276, + [277] = 277, + [278] = 274, + [279] = 274, + [280] = 95, + [281] = 277, + [282] = 277, + [283] = 276, + [284] = 277, + [285] = 94, + [286] = 276, + [287] = 94, + [288] = 276, + [289] = 94, + [290] = 277, + [291] = 92, + [292] = 93, + [293] = 276, + [294] = 106, + [295] = 107, + [296] = 106, + [297] = 114, + [298] = 94, + [299] = 107, + [300] = 105, + [301] = 114, [302] = 106, - [303] = 105, - [304] = 108, - [305] = 105, - [306] = 115, - [307] = 115, - [308] = 92, - [309] = 98, - [310] = 98, - [311] = 115, - [312] = 105, - [313] = 106, - [314] = 108, - [315] = 99, - [316] = 105, + [303] = 107, + [304] = 92, + [305] = 93, + [306] = 114, + [307] = 105, + [308] = 95, + [309] = 105, + [310] = 95, + [311] = 107, + [312] = 106, + [313] = 105, + [314] = 114, + [315] = 94, + [316] = 114, [317] = 106, - [318] = 108, - [319] = 115, + [318] = 107, + [319] = 105, [320] = 320, [321] = 320, [322] = 320, - [323] = 147, - [324] = 144, - [325] = 144, - [326] = 147, - [327] = 147, + [323] = 145, + [324] = 145, + [325] = 145, + [326] = 144, + [327] = 144, [328] = 144, - [329] = 147, - [330] = 144, + [329] = 144, + [330] = 145, [331] = 144, - [332] = 147, + [332] = 145, [333] = 333, - [334] = 334, - [335] = 333, + [334] = 333, + [335] = 335, [336] = 336, - [337] = 336, + [337] = 335, [338] = 338, [339] = 339, - [340] = 340, + [340] = 339, [341] = 341, [342] = 342, - [343] = 343, - [344] = 341, + [343] = 339, + [344] = 344, [345] = 345, - [346] = 342, - [347] = 345, - [348] = 345, + [346] = 346, + [347] = 347, + [348] = 348, [349] = 349, - [350] = 345, - [351] = 351, - [352] = 349, + [350] = 338, + [351] = 345, + [352] = 352, [353] = 353, - [354] = 345, - [355] = 340, - [356] = 345, - [357] = 357, - [358] = 345, - [359] = 345, - [360] = 360, - [361] = 360, - [362] = 345, - [363] = 338, - [364] = 353, - [365] = 343, - [366] = 345, - [367] = 345, - [368] = 368, + [354] = 339, + [355] = 347, + [356] = 348, + [357] = 349, + [358] = 339, + [359] = 339, + [360] = 339, + [361] = 339, + [362] = 339, + [363] = 339, + [364] = 339, + [365] = 341, + [366] = 342, + [367] = 344, + [368] = 335, [369] = 369, [370] = 333, [371] = 371, - [372] = 334, + [372] = 336, [373] = 369, - [374] = 336, - [375] = 342, + [374] = 374, + [375] = 375, [376] = 376, - [377] = 377, + [377] = 352, [378] = 378, - [379] = 376, - [380] = 380, - [381] = 338, - [382] = 353, - [383] = 376, - [384] = 380, - [385] = 339, - [386] = 380, - [387] = 380, - [388] = 351, - [389] = 389, - [390] = 357, - [391] = 343, - [392] = 360, - [393] = 340, - [394] = 341, - [395] = 349, - [396] = 380, - [397] = 397, + [379] = 344, + [380] = 338, + [381] = 345, + [382] = 347, + [383] = 348, + [384] = 349, + [385] = 376, + [386] = 375, + [387] = 387, + [388] = 375, + [389] = 353, + [390] = 390, + [391] = 375, + [392] = 341, + [393] = 342, + [394] = 375, + [395] = 395, + [396] = 346, + [397] = 376, [398] = 398, [399] = 399, - [400] = 400, - [401] = 389, - [402] = 334, + [400] = 374, + [401] = 333, + [402] = 402, [403] = 403, - [404] = 369, - [405] = 368, - [406] = 336, - [407] = 407, + [404] = 404, + [405] = 378, + [406] = 406, + [407] = 336, [408] = 408, [409] = 409, [410] = 410, [411] = 411, - [412] = 412, - [413] = 357, - [414] = 333, - [415] = 343, - [416] = 398, - [417] = 339, - [418] = 407, - [419] = 377, - [420] = 353, - [421] = 92, - [422] = 93, - [423] = 338, - [424] = 360, - [425] = 334, - [426] = 340, - [427] = 341, - [428] = 342, - [429] = 349, - [430] = 378, - [431] = 431, - [432] = 351, - [433] = 92, - [434] = 434, - [435] = 98, - [436] = 99, - [437] = 351, - [438] = 438, - [439] = 434, - [440] = 369, - [441] = 339, - [442] = 442, - [443] = 400, - [444] = 444, - [445] = 434, - [446] = 446, - [447] = 357, - [448] = 408, - [449] = 409, - [450] = 410, - [451] = 411, - [452] = 403, - [453] = 368, - [454] = 93, + [412] = 369, + [413] = 345, + [414] = 344, + [415] = 403, + [416] = 335, + [417] = 390, + [418] = 347, + [419] = 348, + [420] = 349, + [421] = 341, + [422] = 352, + [423] = 353, + [424] = 399, + [425] = 92, + [426] = 93, + [427] = 346, + [428] = 336, + [429] = 338, + [430] = 395, + [431] = 342, + [432] = 432, + [433] = 369, + [434] = 374, + [435] = 404, + [436] = 436, + [437] = 93, + [438] = 410, + [439] = 439, + [440] = 406, + [441] = 408, + [442] = 409, + [443] = 398, + [444] = 439, + [445] = 352, + [446] = 346, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 95, + [451] = 92, + [452] = 439, + [453] = 94, + [454] = 353, [455] = 455, [456] = 456, - [457] = 455, - [458] = 455, - [459] = 459, + [457] = 457, + [458] = 458, + [459] = 436, [460] = 460, - [461] = 460, - [462] = 106, - [463] = 446, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 105, - [468] = 460, - [469] = 99, - [470] = 470, - [471] = 438, - [472] = 98, - [473] = 108, - [474] = 434, - [475] = 460, - [476] = 105, - [477] = 442, - [478] = 399, - [479] = 340, - [480] = 343, - [481] = 444, - [482] = 342, - [483] = 349, - [484] = 484, + [461] = 456, + [462] = 462, + [463] = 463, + [464] = 458, + [465] = 448, + [466] = 94, + [467] = 458, + [468] = 105, + [469] = 106, + [470] = 107, + [471] = 456, + [472] = 95, + [473] = 439, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 345, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 347, + [482] = 105, + [483] = 348, + [484] = 338, [485] = 485, - [486] = 486, - [487] = 360, - [488] = 341, - [489] = 489, - [490] = 490, - [491] = 491, - [492] = 368, + [486] = 411, + [487] = 106, + [488] = 488, + [489] = 402, + [490] = 333, + [491] = 107, + [492] = 492, [493] = 493, - [494] = 412, - [495] = 108, - [496] = 333, + [494] = 494, + [495] = 335, + [496] = 496, [497] = 497, - [498] = 498, - [499] = 106, - [500] = 500, - [501] = 501, - [502] = 336, + [498] = 449, + [499] = 374, + [500] = 349, + [501] = 344, + [502] = 447, [503] = 503, [504] = 504, [505] = 505, [506] = 506, [507] = 507, [508] = 508, - [509] = 509, + [509] = 463, [510] = 510, [511] = 511, [512] = 512, @@ -5330,17 +5316,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [514] = 514, [515] = 515, [516] = 516, - [517] = 353, - [518] = 338, + [517] = 517, + [518] = 518, [519] = 519, [520] = 520, [521] = 521, [522] = 522, [523] = 523, - [524] = 504, - [525] = 525, + [524] = 524, + [525] = 341, [526] = 526, - [527] = 527, + [527] = 474, [528] = 528, [529] = 529, [530] = 530, @@ -5354,30 +5340,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [538] = 538, [539] = 539, [540] = 540, - [541] = 526, - [542] = 529, - [543] = 532, - [544] = 533, - [545] = 534, - [546] = 536, - [547] = 537, - [548] = 538, - [549] = 539, - [550] = 527, - [551] = 528, - [552] = 535, - [553] = 553, - [554] = 553, - [555] = 527, - [556] = 519, - [557] = 520, - [558] = 521, - [559] = 522, - [560] = 523, - [561] = 538, - [562] = 525, - [563] = 530, - [564] = 531, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 342, + [546] = 546, + [547] = 531, + [548] = 532, + [549] = 533, + [550] = 534, + [551] = 535, + [552] = 536, + [553] = 537, + [554] = 538, + [555] = 503, + [556] = 539, + [557] = 540, + [558] = 541, + [559] = 542, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 564, [565] = 565, [566] = 566, [567] = 567, @@ -5393,142 +5379,142 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [577] = 577, [578] = 578, [579] = 579, - [580] = 580, - [581] = 581, - [582] = 528, - [583] = 535, - [584] = 553, - [585] = 585, - [586] = 505, - [587] = 506, - [588] = 507, - [589] = 508, - [590] = 509, - [591] = 510, - [592] = 511, - [593] = 512, - [594] = 513, - [595] = 514, - [596] = 515, - [597] = 516, - [598] = 565, - [599] = 566, - [600] = 567, - [601] = 568, - [602] = 569, - [603] = 570, - [604] = 571, - [605] = 572, - [606] = 573, - [607] = 574, - [608] = 575, - [609] = 576, - [610] = 577, - [611] = 578, - [612] = 579, - [613] = 580, - [614] = 581, - [615] = 459, - [616] = 519, - [617] = 520, - [618] = 618, - [619] = 521, - [620] = 522, - [621] = 523, - [622] = 504, - [623] = 525, - [624] = 530, - [625] = 625, - [626] = 531, - [627] = 565, - [628] = 566, - [629] = 629, - [630] = 630, - [631] = 585, - [632] = 505, - [633] = 506, - [634] = 507, - [635] = 508, - [636] = 509, - [637] = 539, - [638] = 510, - [639] = 511, - [640] = 512, - [641] = 513, - [642] = 642, - [643] = 567, - [644] = 514, - [645] = 645, - [646] = 568, - [647] = 515, - [648] = 569, - [649] = 570, - [650] = 516, - [651] = 571, - [652] = 572, - [653] = 573, - [654] = 574, - [655] = 537, - [656] = 575, - [657] = 657, - [658] = 576, - [659] = 577, - [660] = 578, - [661] = 579, - [662] = 580, - [663] = 581, - [664] = 470, - [665] = 526, - [666] = 529, - [667] = 532, - [668] = 533, - [669] = 534, - [670] = 536, - [671] = 585, - [672] = 444, - [673] = 645, + [580] = 578, + [581] = 504, + [582] = 505, + [583] = 506, + [584] = 507, + [585] = 508, + [586] = 512, + [587] = 513, + [588] = 514, + [589] = 515, + [590] = 516, + [591] = 517, + [592] = 518, + [593] = 519, + [594] = 520, + [595] = 521, + [596] = 522, + [597] = 523, + [598] = 524, + [599] = 531, + [600] = 532, + [601] = 533, + [602] = 534, + [603] = 535, + [604] = 536, + [605] = 537, + [606] = 538, + [607] = 503, + [608] = 539, + [609] = 540, + [610] = 541, + [611] = 542, + [612] = 560, + [613] = 561, + [614] = 562, + [615] = 563, + [616] = 564, + [617] = 565, + [618] = 566, + [619] = 567, + [620] = 568, + [621] = 569, + [622] = 570, + [623] = 571, + [624] = 572, + [625] = 573, + [626] = 574, + [627] = 575, + [628] = 576, + [629] = 577, + [630] = 511, + [631] = 579, + [632] = 578, + [633] = 504, + [634] = 505, + [635] = 506, + [636] = 507, + [637] = 508, + [638] = 512, + [639] = 513, + [640] = 514, + [641] = 515, + [642] = 516, + [643] = 517, + [644] = 518, + [645] = 519, + [646] = 520, + [647] = 521, + [648] = 522, + [649] = 523, + [650] = 524, + [651] = 560, + [652] = 561, + [653] = 562, + [654] = 563, + [655] = 564, + [656] = 565, + [657] = 566, + [658] = 567, + [659] = 568, + [660] = 569, + [661] = 570, + [662] = 579, + [663] = 571, + [664] = 572, + [665] = 573, + [666] = 574, + [667] = 575, + [668] = 576, + [669] = 577, + [670] = 511, + [671] = 671, + [672] = 672, + [673] = 673, [674] = 674, [675] = 675, [676] = 676, [677] = 677, - [678] = 500, + [678] = 678, [679] = 679, - [680] = 503, + [680] = 680, [681] = 681, [682] = 682, [683] = 683, - [684] = 490, + [684] = 684, [685] = 685, [686] = 686, - [687] = 687, - [688] = 688, - [689] = 689, + [687] = 543, + [688] = 544, + [689] = 475, [690] = 690, [691] = 691, [692] = 692, - [693] = 642, + [693] = 693, [694] = 694, [695] = 695, - [696] = 442, + [696] = 696, [697] = 697, - [698] = 698, + [698] = 480, [699] = 699, - [700] = 700, - [701] = 369, + [700] = 369, + [701] = 336, [702] = 702, [703] = 703, [704] = 704, [705] = 705, - [706] = 334, - [707] = 707, - [708] = 708, + [706] = 706, + [707] = 488, + [708] = 447, [709] = 709, - [710] = 710, + [710] = 449, [711] = 711, [712] = 712, [713] = 713, [714] = 714, - [715] = 713, + [715] = 715, [716] = 716, [717] = 717, [718] = 718, @@ -5538,11 +5524,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [722] = 722, [723] = 723, [724] = 724, - [725] = 725, - [726] = 726, - [727] = 727, + [725] = 494, + [726] = 449, + [727] = 496, [728] = 728, - [729] = 357, + [729] = 729, [730] = 730, [731] = 731, [732] = 732, @@ -5551,264 +5537,264 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [735] = 735, [736] = 736, [737] = 737, - [738] = 738, + [738] = 479, [739] = 739, [740] = 740, [741] = 741, - [742] = 742, + [742] = 447, [743] = 743, - [744] = 744, - [745] = 714, - [746] = 746, - [747] = 747, + [744] = 352, + [745] = 476, + [746] = 478, + [747] = 449, [748] = 748, [749] = 749, - [750] = 750, - [751] = 725, - [752] = 731, - [753] = 732, - [754] = 733, - [755] = 734, - [756] = 714, - [757] = 713, - [758] = 716, - [759] = 717, - [760] = 718, - [761] = 493, - [762] = 716, - [763] = 763, - [764] = 764, - [765] = 717, - [766] = 766, + [750] = 474, + [751] = 463, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, + [762] = 762, + [763] = 713, + [764] = 714, + [765] = 715, + [766] = 716, [767] = 767, - [768] = 718, + [768] = 768, [769] = 769, [770] = 770, [771] = 771, [772] = 772, [773] = 773, [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 444, - [780] = 780, - [781] = 781, - [782] = 782, - [783] = 339, - [784] = 351, - [785] = 485, - [786] = 442, - [787] = 486, + [775] = 754, + [776] = 755, + [777] = 756, + [778] = 757, + [779] = 758, + [780] = 759, + [781] = 760, + [782] = 761, + [783] = 762, + [784] = 713, + [785] = 714, + [786] = 715, + [787] = 716, [788] = 788, [789] = 789, - [790] = 484, - [791] = 444, + [790] = 754, + [791] = 791, [792] = 792, [793] = 793, - [794] = 794, - [795] = 470, - [796] = 734, + [794] = 755, + [795] = 795, + [796] = 796, [797] = 797, - [798] = 798, + [798] = 762, [799] = 799, [800] = 800, [801] = 801, [802] = 802, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 748, - [812] = 749, - [813] = 750, - [814] = 725, - [815] = 731, - [816] = 732, - [817] = 733, - [818] = 734, - [819] = 714, - [820] = 713, - [821] = 716, - [822] = 717, - [823] = 718, + [803] = 754, + [804] = 755, + [805] = 756, + [806] = 757, + [807] = 758, + [808] = 759, + [809] = 760, + [810] = 761, + [811] = 762, + [812] = 713, + [813] = 714, + [814] = 715, + [815] = 716, + [816] = 816, + [817] = 817, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, [824] = 824, [825] = 825, [826] = 826, - [827] = 827, + [827] = 346, [828] = 828, [829] = 829, - [830] = 497, - [831] = 831, - [832] = 832, + [830] = 756, + [831] = 757, + [832] = 758, [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, + [834] = 759, + [835] = 760, + [836] = 761, [837] = 837, - [838] = 748, - [839] = 749, - [840] = 750, - [841] = 725, - [842] = 731, - [843] = 732, - [844] = 733, - [845] = 734, - [846] = 714, - [847] = 713, - [848] = 716, - [849] = 717, - [850] = 718, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 489, - [865] = 748, - [866] = 749, - [867] = 750, - [868] = 725, - [869] = 731, - [870] = 732, - [871] = 733, - [872] = 734, - [873] = 714, - [874] = 713, - [875] = 716, - [876] = 717, - [877] = 718, + [838] = 838, + [839] = 839, + [840] = 353, + [841] = 841, + [842] = 762, + [843] = 713, + [844] = 714, + [845] = 715, + [846] = 846, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 492, + [851] = 754, + [852] = 755, + [853] = 756, + [854] = 757, + [855] = 758, + [856] = 759, + [857] = 760, + [858] = 761, + [859] = 762, + [860] = 713, + [861] = 714, + [862] = 715, + [863] = 716, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 716, + [875] = 875, + [876] = 876, + [877] = 877, [878] = 878, [879] = 879, - [880] = 733, + [880] = 880, [881] = 881, - [882] = 748, - [883] = 749, - [884] = 750, - [885] = 885, + [882] = 882, + [883] = 883, + [884] = 754, + [885] = 755, [886] = 886, - [887] = 887, + [887] = 756, [888] = 888, - [889] = 748, - [890] = 749, - [891] = 750, - [892] = 725, - [893] = 731, - [894] = 732, - [895] = 459, + [889] = 757, + [890] = 758, + [891] = 759, + [892] = 760, + [893] = 761, + [894] = 894, + [895] = 895, [896] = 896, [897] = 897, [898] = 898, [899] = 899, - [900] = 900, + [900] = 497, [901] = 901, [902] = 902, - [903] = 903, + [903] = 488, [904] = 904, - [905] = 500, + [905] = 905, [906] = 906, - [907] = 503, - [908] = 490, - [909] = 909, + [907] = 907, + [908] = 679, + [909] = 680, [910] = 910, - [911] = 911, - [912] = 912, + [911] = 681, + [912] = 682, [913] = 913, - [914] = 914, - [915] = 915, + [914] = 475, + [915] = 480, [916] = 916, [917] = 917, - [918] = 692, + [918] = 696, [919] = 919, - [920] = 675, - [921] = 921, + [920] = 702, + [921] = 463, [922] = 922, [923] = 923, [924] = 924, - [925] = 925, + [925] = 528, [926] = 926, [927] = 927, - [928] = 697, - [929] = 698, + [928] = 928, + [929] = 929, [930] = 930, [931] = 931, - [932] = 465, - [933] = 368, - [934] = 705, - [935] = 466, + [932] = 932, + [933] = 374, + [934] = 934, + [935] = 455, [936] = 936, [937] = 937, - [938] = 491, - [939] = 700, - [940] = 470, + [938] = 938, + [939] = 939, + [940] = 940, [941] = 941, - [942] = 498, + [942] = 942, [943] = 943, [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, + [945] = 474, + [946] = 705, + [947] = 695, [948] = 948, [949] = 949, - [950] = 704, - [951] = 951, - [952] = 712, + [950] = 692, + [951] = 485, + [952] = 952, [953] = 953, [954] = 954, - [955] = 955, - [956] = 709, - [957] = 459, + [955] = 457, + [956] = 956, + [957] = 957, [958] = 958, [959] = 959, [960] = 960, - [961] = 961, - [962] = 921, - [963] = 921, - [964] = 540, - [965] = 965, - [966] = 691, + [961] = 917, + [962] = 917, + [963] = 963, + [964] = 964, + [965] = 683, + [966] = 684, [967] = 967, - [968] = 710, - [969] = 674, - [970] = 500, - [971] = 971, - [972] = 679, - [973] = 503, - [974] = 686, - [975] = 490, + [968] = 968, + [969] = 969, + [970] = 685, + [971] = 686, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 975, [976] = 976, [977] = 977, [978] = 978, [979] = 979, [980] = 980, - [981] = 681, + [981] = 981, [982] = 982, [983] = 983, [984] = 984, - [985] = 985, - [986] = 986, - [987] = 987, + [985] = 768, + [986] = 924, + [987] = 940, [988] = 988, - [989] = 989, - [990] = 990, - [991] = 991, - [992] = 992, - [993] = 993, - [994] = 994, - [995] = 995, + [989] = 949, + [990] = 927, + [991] = 963, + [992] = 907, + [993] = 919, + [994] = 922, + [995] = 923, [996] = 996, [997] = 997, [998] = 998, @@ -5818,73 +5804,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1002] = 1002, [1003] = 1003, [1004] = 1004, - [1005] = 978, + [1005] = 697, [1006] = 1006, [1007] = 1007, [1008] = 1008, [1009] = 1009, [1010] = 1010, [1011] = 1011, - [1012] = 682, + [1012] = 488, [1013] = 1013, [1014] = 1014, - [1015] = 1015, - [1016] = 687, + [1015] = 475, + [1016] = 480, [1017] = 1017, [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 971, + [1021] = 1021, [1022] = 1022, [1023] = 1023, [1024] = 1024, - [1025] = 886, - [1026] = 960, + [1025] = 1025, + [1026] = 1026, [1027] = 1027, - [1028] = 937, + [1028] = 1028, [1029] = 1029, [1030] = 1030, [1031] = 1031, [1032] = 1032, - [1033] = 688, + [1033] = 1033, [1034] = 1034, [1035] = 1035, - [1036] = 1036, - [1037] = 1037, - [1038] = 1038, - [1039] = 1039, - [1040] = 1040, - [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 1044, + [1036] = 703, + [1037] = 704, + [1038] = 706, + [1039] = 709, + [1040] = 690, + [1041] = 691, + [1042] = 672, + [1043] = 673, + [1044] = 674, [1045] = 1045, [1046] = 1046, - [1047] = 941, + [1047] = 1047, [1048] = 1048, - [1049] = 961, - [1050] = 931, + [1049] = 1049, + [1050] = 1050, [1051] = 1051, - [1052] = 1052, + [1052] = 999, [1053] = 1053, [1054] = 1054, [1055] = 1055, - [1056] = 1056, + [1056] = 675, [1057] = 1057, - [1058] = 1058, + [1058] = 676, [1059] = 1059, [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 948, + [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 954, - [1069] = 1069, - [1070] = 1070, - [1071] = 683, + [1068] = 1068, + [1069] = 677, + [1070] = 678, + [1071] = 1071, [1072] = 1072, [1073] = 1073, [1074] = 1074, @@ -5892,24 +5878,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 1079, + [1079] = 1073, [1080] = 1080, - [1081] = 1081, + [1081] = 449, [1082] = 1082, - [1083] = 958, + [1083] = 1083, [1084] = 1084, [1085] = 1085, - [1086] = 689, + [1086] = 1057, [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 959, + [1090] = 1090, [1091] = 1091, [1092] = 1092, [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, + [1094] = 1026, + [1095] = 1027, + [1096] = 1028, [1097] = 1097, [1098] = 1098, [1099] = 1099, @@ -5922,27 +5908,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1106] = 1106, [1107] = 1107, [1108] = 1108, - [1109] = 985, - [1110] = 987, - [1111] = 988, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, [1112] = 1112, [1113] = 1113, - [1114] = 1043, + [1114] = 1114, [1115] = 1115, [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 702, + [1119] = 1119, [1120] = 1120, - [1121] = 707, - [1122] = 444, - [1123] = 708, - [1124] = 703, - [1125] = 971, - [1126] = 711, - [1127] = 677, - [1128] = 690, - [1129] = 978, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1057, + [1126] = 1126, + [1127] = 1127, + [1128] = 999, + [1129] = 1129, [1130] = 1130, [1131] = 1131, [1132] = 1132, @@ -5953,13 +5939,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1137] = 1137, [1138] = 1138, [1139] = 1139, - [1140] = 1140, + [1140] = 1008, [1141] = 1141, [1142] = 1142, - [1143] = 1143, + [1143] = 1072, [1144] = 1144, [1145] = 1145, - [1146] = 1146, + [1146] = 1073, [1147] = 1147, [1148] = 1148, [1149] = 1149, @@ -5969,23 +5955,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1153] = 1153, [1154] = 1154, [1155] = 1155, - [1156] = 1156, + [1156] = 694, [1157] = 1157, - [1158] = 1158, + [1158] = 1150, [1159] = 1159, - [1160] = 1160, + [1160] = 699, [1161] = 1161, - [1162] = 1162, - [1163] = 1112, + [1162] = 1151, + [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, [1167] = 1167, [1168] = 1168, - [1169] = 699, + [1169] = 1169, [1170] = 1170, [1171] = 1171, - [1172] = 1113, + [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, @@ -6006,8 +5992,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1190] = 1190, [1191] = 1191, [1192] = 1192, - [1193] = 1193, - [1194] = 1194, + [1193] = 1071, + [1194] = 1072, [1195] = 1195, [1196] = 1196, [1197] = 1197, @@ -6015,17 +6001,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1199] = 1199, [1200] = 1200, [1201] = 1201, - [1202] = 1202, + [1202] = 1142, [1203] = 1203, [1204] = 1204, - [1205] = 967, + [1205] = 1205, [1206] = 1206, - [1207] = 1043, - [1208] = 1208, + [1207] = 1142, + [1208] = 1071, [1209] = 1209, [1210] = 1210, [1211] = 1211, - [1212] = 1212, + [1212] = 711, [1213] = 1213, [1214] = 1214, [1215] = 1215, @@ -6033,10 +6019,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1217] = 1217, [1218] = 1218, [1219] = 1219, - [1220] = 685, + [1220] = 1220, [1221] = 1221, [1222] = 1222, - [1223] = 676, + [1223] = 1223, [1224] = 1224, [1225] = 1225, [1226] = 1226, @@ -6044,18 +6030,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1228] = 1228, [1229] = 1229, [1230] = 1230, - [1231] = 1231, + [1231] = 1141, [1232] = 1232, [1233] = 1233, [1234] = 1234, [1235] = 1235, [1236] = 1236, - [1237] = 1151, + [1237] = 1237, [1238] = 1238, - [1239] = 1112, - [1240] = 1230, + [1239] = 1239, + [1240] = 1240, [1241] = 1241, - [1242] = 1113, + [1242] = 1242, [1243] = 1243, [1244] = 1244, [1245] = 1245, @@ -6069,277 +6055,277 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1253] = 1253, [1254] = 1254, [1255] = 1255, - [1256] = 1232, - [1257] = 1232, - [1258] = 1232, - [1259] = 1232, - [1260] = 1149, + [1256] = 1256, + [1257] = 1257, + [1258] = 1258, + [1259] = 1142, + [1260] = 1142, [1261] = 1261, [1262] = 1262, - [1263] = 764, - [1264] = 888, - [1265] = 730, - [1266] = 955, - [1267] = 1133, - [1268] = 944, - [1269] = 721, - [1270] = 898, - [1271] = 722, - [1272] = 936, - [1273] = 724, - [1274] = 899, - [1275] = 1275, - [1276] = 1142, - [1277] = 887, - [1278] = 1136, - [1279] = 735, - [1280] = 917, - [1281] = 911, - [1282] = 913, - [1283] = 1140, - [1284] = 922, - [1285] = 947, - [1286] = 1145, - [1287] = 1287, - [1288] = 1203, - [1289] = 695, - [1290] = 927, - [1291] = 1291, - [1292] = 923, - [1293] = 924, - [1294] = 945, - [1295] = 926, - [1296] = 914, - [1297] = 949, - [1298] = 726, - [1299] = 897, - [1300] = 727, - [1301] = 915, - [1302] = 909, - [1303] = 943, - [1304] = 694, - [1305] = 953, - [1306] = 728, - [1307] = 906, - [1308] = 1138, - [1309] = 746, - [1310] = 747, - [1311] = 723, - [1312] = 903, - [1313] = 904, - [1314] = 1147, - [1315] = 1144, - [1316] = 719, - [1317] = 902, - [1318] = 896, - [1319] = 763, - [1320] = 930, - [1321] = 910, - [1322] = 946, - [1323] = 1247, - [1324] = 720, - [1325] = 743, - [1326] = 744, - [1327] = 900, - [1328] = 1328, - [1329] = 1329, - [1330] = 1251, + [1263] = 938, + [1264] = 932, + [1265] = 1236, + [1266] = 937, + [1267] = 934, + [1268] = 1245, + [1269] = 936, + [1270] = 793, + [1271] = 717, + [1272] = 718, + [1273] = 958, + [1274] = 916, + [1275] = 1247, + [1276] = 939, + [1277] = 1252, + [1278] = 953, + [1279] = 1211, + [1280] = 957, + [1281] = 960, + [1282] = 1215, + [1283] = 959, + [1284] = 1217, + [1285] = 941, + [1286] = 822, + [1287] = 825, + [1288] = 826, + [1289] = 948, + [1290] = 899, + [1291] = 829, + [1292] = 952, + [1293] = 770, + [1294] = 1221, + [1295] = 837, + [1296] = 905, + [1297] = 838, + [1298] = 901, + [1299] = 772, + [1300] = 839, + [1301] = 1223, + [1302] = 902, + [1303] = 841, + [1304] = 913, + [1305] = 693, + [1306] = 881, + [1307] = 883, + [1308] = 876, + [1309] = 1309, + [1310] = 956, + [1311] = 954, + [1312] = 833, + [1313] = 930, + [1314] = 1314, + [1315] = 846, + [1316] = 898, + [1317] = 878, + [1318] = 904, + [1319] = 1228, + [1320] = 897, + [1321] = 906, + [1322] = 1233, + [1323] = 931, + [1324] = 942, + [1325] = 926, + [1326] = 1235, + [1327] = 943, + [1328] = 929, + [1329] = 895, + [1330] = 944, [1331] = 1331, - [1332] = 916, - [1333] = 951, - [1334] = 901, - [1335] = 1254, - [1336] = 736, - [1337] = 737, - [1338] = 1328, - [1339] = 738, - [1340] = 739, - [1341] = 740, - [1342] = 741, - [1343] = 742, - [1344] = 925, - [1345] = 919, + [1332] = 1332, + [1333] = 1333, + [1334] = 910, + [1335] = 896, + [1336] = 847, + [1337] = 848, + [1338] = 849, + [1339] = 864, + [1340] = 867, + [1341] = 869, + [1342] = 1333, + [1343] = 871, + [1344] = 671, + [1345] = 1345, [1346] = 1346, [1347] = 1347, [1348] = 1348, - [1349] = 1348, + [1349] = 1349, [1350] = 1350, [1351] = 1351, - [1352] = 1352, + [1352] = 1348, [1353] = 1353, [1354] = 1354, - [1355] = 540, - [1356] = 1356, + [1355] = 1355, + [1356] = 528, [1357] = 1357, [1358] = 1358, - [1359] = 691, - [1360] = 1360, + [1359] = 1359, + [1360] = 1349, [1361] = 1361, [1362] = 1362, [1363] = 1363, - [1364] = 1364, - [1365] = 1362, + [1364] = 1362, + [1365] = 1365, [1366] = 1366, [1367] = 1354, - [1368] = 1356, - [1369] = 1358, + [1368] = 1362, + [1369] = 1350, [1370] = 1357, - [1371] = 1350, - [1372] = 1372, - [1373] = 1362, + [1371] = 1362, + [1372] = 1347, + [1373] = 697, [1374] = 1362, - [1375] = 1362, - [1376] = 1376, + [1375] = 1375, + [1376] = 1366, [1377] = 1377, [1378] = 1378, - [1379] = 389, - [1380] = 1366, + [1379] = 1379, + [1380] = 1380, [1381] = 1381, - [1382] = 1382, + [1382] = 378, [1383] = 1383, [1384] = 1384, - [1385] = 1385, - [1386] = 389, - [1387] = 407, - [1388] = 398, - [1389] = 1389, + [1385] = 403, + [1386] = 1386, + [1387] = 378, + [1388] = 1388, + [1389] = 399, [1390] = 1390, [1391] = 1391, [1392] = 1392, [1393] = 1393, - [1394] = 1394, - [1395] = 1395, - [1396] = 398, - [1397] = 407, - [1398] = 1398, + [1394] = 93, + [1395] = 92, + [1396] = 1396, + [1397] = 1397, + [1398] = 399, [1399] = 1399, - [1400] = 92, - [1401] = 93, + [1400] = 403, + [1401] = 1401, [1402] = 93, - [1403] = 98, - [1404] = 1404, - [1405] = 540, - [1406] = 446, + [1403] = 1403, + [1404] = 528, + [1405] = 436, + [1406] = 95, [1407] = 1407, - [1408] = 92, - [1409] = 1409, - [1410] = 99, - [1411] = 1411, + [1408] = 94, + [1409] = 92, + [1410] = 1410, + [1411] = 447, [1412] = 1412, - [1413] = 98, - [1414] = 444, - [1415] = 446, - [1416] = 691, + [1413] = 697, + [1414] = 449, + [1415] = 1415, + [1416] = 94, [1417] = 1417, - [1418] = 1418, - [1419] = 442, - [1420] = 1420, - [1421] = 106, - [1422] = 99, - [1423] = 108, - [1424] = 1424, - [1425] = 105, - [1426] = 442, - [1427] = 444, - [1428] = 106, - [1429] = 470, - [1430] = 105, - [1431] = 459, - [1432] = 108, - [1433] = 500, - [1434] = 645, - [1435] = 503, - [1436] = 642, - [1437] = 490, - [1438] = 470, - [1439] = 459, - [1440] = 444, - [1441] = 642, - [1442] = 442, - [1443] = 645, - [1444] = 500, + [1418] = 105, + [1419] = 436, + [1420] = 106, + [1421] = 1421, + [1422] = 1422, + [1423] = 95, + [1424] = 107, + [1425] = 474, + [1426] = 449, + [1427] = 106, + [1428] = 463, + [1429] = 105, + [1430] = 447, + [1431] = 107, + [1432] = 463, + [1433] = 543, + [1434] = 474, + [1435] = 544, + [1436] = 488, + [1437] = 480, + [1438] = 475, + [1439] = 449, + [1440] = 1440, + [1441] = 544, + [1442] = 475, + [1443] = 480, + [1444] = 1444, [1445] = 1445, - [1446] = 1446, - [1447] = 1447, - [1448] = 503, - [1449] = 490, - [1450] = 1446, - [1451] = 459, - [1452] = 470, - [1453] = 1453, - [1454] = 1454, - [1455] = 1445, - [1456] = 442, - [1457] = 1454, - [1458] = 1447, - [1459] = 444, - [1460] = 937, - [1461] = 500, - [1462] = 961, - [1463] = 503, - [1464] = 1464, - [1465] = 931, - [1466] = 1466, + [1446] = 488, + [1447] = 447, + [1448] = 543, + [1449] = 1444, + [1450] = 1445, + [1451] = 1451, + [1452] = 447, + [1453] = 463, + [1454] = 449, + [1455] = 1440, + [1456] = 1451, + [1457] = 474, + [1458] = 1458, + [1459] = 1459, + [1460] = 922, + [1461] = 1461, + [1462] = 1462, + [1463] = 1463, + [1464] = 949, + [1465] = 768, + [1466] = 480, [1467] = 1467, - [1468] = 1468, + [1468] = 963, [1469] = 1469, - [1470] = 941, - [1471] = 959, - [1472] = 886, + [1470] = 924, + [1471] = 1471, + [1472] = 1472, [1473] = 1473, - [1474] = 1474, - [1475] = 1475, - [1476] = 470, - [1477] = 490, - [1478] = 1478, - [1479] = 948, - [1480] = 1480, - [1481] = 459, - [1482] = 960, - [1483] = 1483, + [1474] = 923, + [1475] = 927, + [1476] = 1476, + [1477] = 475, + [1478] = 907, + [1479] = 488, + [1480] = 463, + [1481] = 940, + [1482] = 1482, + [1483] = 474, [1484] = 1484, - [1485] = 1485, - [1486] = 954, - [1487] = 958, - [1488] = 1043, - [1489] = 1489, - [1490] = 960, - [1491] = 1491, - [1492] = 886, - [1493] = 1112, - [1494] = 961, - [1495] = 941, - [1496] = 1496, - [1497] = 931, - [1498] = 1498, - [1499] = 503, - [1500] = 490, - [1501] = 937, - [1502] = 958, - [1503] = 967, - [1504] = 959, - [1505] = 954, - [1506] = 948, - [1507] = 500, - [1508] = 1113, + [1485] = 919, + [1486] = 1486, + [1487] = 927, + [1488] = 1073, + [1489] = 963, + [1490] = 1490, + [1491] = 940, + [1492] = 922, + [1493] = 768, + [1494] = 1494, + [1495] = 1008, + [1496] = 923, + [1497] = 924, + [1498] = 480, + [1499] = 919, + [1500] = 475, + [1501] = 1071, + [1502] = 907, + [1503] = 1072, + [1504] = 1504, + [1505] = 1505, + [1506] = 488, + [1507] = 949, + [1508] = 1196, [1509] = 1509, [1510] = 1510, - [1511] = 1112, - [1512] = 1113, + [1511] = 1073, + [1512] = 1512, [1513] = 1513, [1514] = 1514, - [1515] = 1515, + [1515] = 378, [1516] = 1516, [1517] = 1517, - [1518] = 1043, - [1519] = 389, - [1520] = 967, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, [1521] = 1521, - [1522] = 1522, + [1522] = 1008, [1523] = 1523, - [1524] = 1524, - [1525] = 1525, - [1526] = 1526, + [1524] = 1512, + [1525] = 1513, + [1526] = 1514, [1527] = 1527, [1528] = 1528, [1529] = 1529, @@ -6351,742 +6337,742 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1535] = 1535, [1536] = 1536, [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1509, - [1541] = 1541, + [1538] = 1533, + [1539] = 1534, + [1540] = 1535, + [1541] = 1536, [1542] = 1542, [1543] = 1543, - [1544] = 1535, - [1545] = 1536, - [1546] = 1526, - [1547] = 1527, - [1548] = 1528, - [1549] = 1529, - [1550] = 1530, - [1551] = 1531, - [1552] = 1532, - [1553] = 1513, - [1554] = 1514, - [1555] = 1516, - [1556] = 1517, - [1557] = 1521, - [1558] = 1522, - [1559] = 1523, - [1560] = 1524, - [1561] = 1533, - [1562] = 1534, - [1563] = 1537, - [1564] = 1176, - [1565] = 1262, - [1566] = 1250, - [1567] = 1255, - [1568] = 1135, - [1569] = 1158, - [1570] = 1182, - [1571] = 1221, - [1572] = 1226, - [1573] = 1235, - [1574] = 1241, - [1575] = 1245, - [1576] = 1538, - [1577] = 1530, - [1578] = 1187, - [1579] = 1243, - [1580] = 1156, - [1581] = 1175, - [1582] = 1193, - [1583] = 1222, - [1584] = 1168, - [1585] = 1173, - [1586] = 1180, - [1587] = 1190, - [1588] = 1197, - [1589] = 1234, - [1590] = 1244, - [1591] = 1261, - [1592] = 1159, - [1593] = 1178, - [1594] = 1183, - [1595] = 1188, - [1596] = 1196, - [1597] = 1201, - [1598] = 1211, - [1599] = 1217, - [1600] = 1225, - [1601] = 1236, - [1602] = 1249, - [1603] = 1253, - [1604] = 1539, - [1605] = 1154, - [1606] = 1161, - [1607] = 1164, - [1608] = 1171, - [1609] = 1174, - [1610] = 1185, - [1611] = 1192, - [1612] = 1195, - [1613] = 1199, - [1614] = 1209, - [1615] = 1213, - [1616] = 1215, - [1617] = 1219, - [1618] = 1224, - [1619] = 1228, - [1620] = 1231, - [1621] = 1233, - [1622] = 1238, - [1623] = 1246, - [1624] = 1248, - [1625] = 1132, - [1626] = 1134, - [1627] = 1137, - [1628] = 1139, - [1629] = 1141, - [1630] = 1143, - [1631] = 1146, - [1632] = 1148, - [1633] = 1150, - [1634] = 1152, - [1635] = 1155, - [1636] = 1157, - [1637] = 1160, - [1638] = 1162, - [1639] = 1165, - [1640] = 1167, - [1641] = 1170, - [1642] = 1177, - [1643] = 1179, - [1644] = 1181, - [1645] = 1184, - [1646] = 1186, - [1647] = 1189, - [1648] = 1191, - [1649] = 1194, - [1650] = 1198, - [1651] = 1200, - [1652] = 1131, - [1653] = 1204, - [1654] = 1206, - [1655] = 1208, - [1656] = 1210, - [1657] = 1212, - [1658] = 1216, - [1659] = 1218, - [1660] = 1227, - [1661] = 1229, - [1662] = 1541, - [1663] = 1542, - [1664] = 1543, - [1665] = 1247, - [1666] = 1251, - [1667] = 1254, - [1668] = 1203, - [1669] = 1133, - [1670] = 1136, - [1671] = 1138, - [1672] = 1140, - [1673] = 1142, - [1674] = 1144, - [1675] = 1145, - [1676] = 1147, - [1677] = 1530, - [1678] = 1214, - [1679] = 398, - [1680] = 1680, - [1681] = 1247, - [1682] = 1251, - [1683] = 1254, - [1684] = 1203, - [1685] = 1133, - [1686] = 1136, - [1687] = 1138, - [1688] = 1688, - [1689] = 1140, - [1690] = 1142, - [1691] = 1144, - [1692] = 1145, - [1693] = 1147, - [1694] = 1680, - [1695] = 389, - [1696] = 1510, - [1697] = 407, - [1698] = 1698, + [1544] = 1542, + [1545] = 1516, + [1546] = 1517, + [1547] = 1518, + [1548] = 1519, + [1549] = 1543, + [1550] = 1550, + [1551] = 1551, + [1552] = 1552, + [1553] = 1509, + [1554] = 1520, + [1555] = 1521, + [1556] = 1527, + [1557] = 1528, + [1558] = 1529, + [1559] = 1530, + [1560] = 1531, + [1561] = 1532, + [1562] = 1230, + [1563] = 1234, + [1564] = 1238, + [1565] = 1240, + [1566] = 1241, + [1567] = 1244, + [1568] = 1246, + [1569] = 1248, + [1570] = 1254, + [1571] = 1255, + [1572] = 1256, + [1573] = 1258, + [1574] = 1536, + [1575] = 1237, + [1576] = 1243, + [1577] = 1249, + [1578] = 1183, + [1579] = 1137, + [1580] = 1171, + [1581] = 1189, + [1582] = 1219, + [1583] = 1251, + [1584] = 1145, + [1585] = 1175, + [1586] = 1178, + [1587] = 1182, + [1588] = 1187, + [1589] = 1188, + [1590] = 1190, + [1591] = 1198, + [1592] = 1199, + [1593] = 1201, + [1594] = 1261, + [1595] = 1203, + [1596] = 1205, + [1597] = 1209, + [1598] = 1210, + [1599] = 1213, + [1600] = 1218, + [1601] = 1220, + [1602] = 1222, + [1603] = 1224, + [1604] = 1226, + [1605] = 1227, + [1606] = 1232, + [1607] = 1239, + [1608] = 1242, + [1609] = 1130, + [1610] = 1153, + [1611] = 1169, + [1612] = 1179, + [1613] = 1133, + [1614] = 1139, + [1615] = 1144, + [1616] = 1164, + [1617] = 1167, + [1618] = 1181, + [1619] = 1185, + [1620] = 1191, + [1621] = 1206, + [1622] = 1257, + [1623] = 1135, + [1624] = 1148, + [1625] = 1165, + [1626] = 1168, + [1627] = 1177, + [1628] = 1180, + [1629] = 1184, + [1630] = 1186, + [1631] = 1192, + [1632] = 1195, + [1633] = 1197, + [1634] = 1200, + [1635] = 1214, + [1636] = 1216, + [1637] = 1225, + [1638] = 1250, + [1639] = 1253, + [1640] = 1131, + [1641] = 1132, + [1642] = 1134, + [1643] = 1136, + [1644] = 1138, + [1645] = 1147, + [1646] = 1152, + [1647] = 1154, + [1648] = 1155, + [1649] = 1157, + [1650] = 1159, + [1651] = 1161, + [1652] = 1163, + [1653] = 1166, + [1654] = 1170, + [1655] = 1172, + [1656] = 1173, + [1657] = 1174, + [1658] = 1211, + [1659] = 1215, + [1660] = 1217, + [1661] = 1221, + [1662] = 1223, + [1663] = 1228, + [1664] = 1233, + [1665] = 1235, + [1666] = 1236, + [1667] = 1245, + [1668] = 1247, + [1669] = 1252, + [1670] = 1670, + [1671] = 1071, + [1672] = 1072, + [1673] = 1550, + [1674] = 1551, + [1675] = 1552, + [1676] = 1537, + [1677] = 1677, + [1678] = 1211, + [1679] = 1215, + [1680] = 1217, + [1681] = 1221, + [1682] = 1223, + [1683] = 1228, + [1684] = 1233, + [1685] = 1235, + [1686] = 1236, + [1687] = 1245, + [1688] = 1247, + [1689] = 1252, + [1690] = 403, + [1691] = 399, + [1692] = 1692, + [1693] = 1677, + [1694] = 378, + [1695] = 1670, + [1696] = 1696, + [1697] = 93, + [1698] = 390, [1699] = 1699, [1700] = 1700, - [1701] = 1699, + [1701] = 1701, [1702] = 1702, - [1703] = 1703, + [1703] = 1702, [1704] = 92, - [1705] = 378, - [1706] = 93, - [1707] = 407, - [1708] = 398, - [1709] = 1698, - [1710] = 1710, - [1711] = 377, - [1712] = 1700, - [1713] = 1710, - [1714] = 1702, - [1715] = 400, - [1716] = 1716, - [1717] = 403, - [1718] = 446, + [1705] = 403, + [1706] = 399, + [1707] = 1707, + [1708] = 1696, + [1709] = 395, + [1710] = 1707, + [1711] = 1701, + [1712] = 1699, + [1713] = 333, + [1714] = 1714, + [1715] = 398, + [1716] = 335, + [1717] = 436, + [1718] = 402, [1719] = 1719, - [1720] = 93, - [1721] = 1721, - [1722] = 98, - [1723] = 411, - [1724] = 1724, - [1725] = 99, - [1726] = 1726, - [1727] = 412, + [1720] = 95, + [1721] = 92, + [1722] = 1722, + [1723] = 93, + [1724] = 94, + [1725] = 410, + [1726] = 404, + [1727] = 406, [1728] = 408, - [1729] = 409, - [1730] = 410, - [1731] = 1719, - [1732] = 1719, - [1733] = 336, - [1734] = 399, - [1735] = 333, + [1729] = 1714, + [1730] = 1714, + [1731] = 1731, + [1732] = 1714, + [1733] = 409, + [1734] = 411, + [1735] = 1735, [1736] = 92, - [1737] = 1737, - [1738] = 412, - [1739] = 446, - [1740] = 1740, - [1741] = 399, - [1742] = 338, - [1743] = 353, - [1744] = 92, - [1745] = 1737, + [1737] = 338, + [1738] = 345, + [1739] = 347, + [1740] = 348, + [1741] = 349, + [1742] = 1742, + [1743] = 1743, + [1744] = 1744, + [1745] = 1745, [1746] = 1746, - [1747] = 444, - [1748] = 93, - [1749] = 343, - [1750] = 360, - [1751] = 340, - [1752] = 341, - [1753] = 1753, - [1754] = 349, - [1755] = 1755, - [1756] = 1753, - [1757] = 108, - [1758] = 1737, - [1759] = 105, - [1760] = 106, - [1761] = 99, - [1762] = 98, - [1763] = 1763, - [1764] = 1764, - [1765] = 442, - [1766] = 1755, - [1767] = 1767, - [1768] = 1740, - [1769] = 1769, - [1770] = 1770, - [1771] = 1767, - [1772] = 336, - [1773] = 1755, - [1774] = 333, - [1775] = 1755, - [1776] = 342, - [1777] = 108, + [1747] = 1744, + [1748] = 333, + [1749] = 106, + [1750] = 1742, + [1751] = 1751, + [1752] = 95, + [1753] = 402, + [1754] = 1754, + [1755] = 94, + [1756] = 1756, + [1757] = 447, + [1758] = 1742, + [1759] = 1759, + [1760] = 1742, + [1761] = 1756, + [1762] = 436, + [1763] = 341, + [1764] = 342, + [1765] = 1756, + [1766] = 335, + [1767] = 1743, + [1768] = 105, + [1769] = 1756, + [1770] = 107, + [1771] = 449, + [1772] = 93, + [1773] = 1746, + [1774] = 1774, + [1775] = 344, + [1776] = 411, + [1777] = 449, [1778] = 1778, [1779] = 1779, - [1780] = 343, + [1780] = 1780, [1781] = 1781, [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 1785, - [1786] = 360, - [1787] = 340, - [1788] = 1788, - [1789] = 1789, + [1783] = 344, + [1784] = 338, + [1785] = 345, + [1786] = 336, + [1787] = 347, + [1788] = 348, + [1789] = 349, [1790] = 1790, [1791] = 1791, [1792] = 1792, [1793] = 1793, - [1794] = 1791, - [1795] = 334, - [1796] = 105, + [1794] = 369, + [1795] = 1795, + [1796] = 95, [1797] = 1797, - [1798] = 106, - [1799] = 1779, - [1800] = 341, - [1801] = 470, - [1802] = 342, - [1803] = 459, - [1804] = 442, - [1805] = 444, - [1806] = 349, - [1807] = 1807, - [1808] = 1808, - [1809] = 1790, - [1810] = 1810, - [1811] = 1810, - [1812] = 338, - [1813] = 353, - [1814] = 1788, - [1815] = 1789, - [1816] = 369, - [1817] = 1817, - [1818] = 1778, - [1819] = 1785, - [1820] = 1817, - [1821] = 1817, - [1822] = 1817, - [1823] = 99, - [1824] = 98, - [1825] = 339, - [1826] = 645, - [1827] = 642, + [1798] = 94, + [1799] = 341, + [1800] = 1800, + [1801] = 1801, + [1802] = 1802, + [1803] = 1803, + [1804] = 1804, + [1805] = 1805, + [1806] = 105, + [1807] = 106, + [1808] = 107, + [1809] = 342, + [1810] = 474, + [1811] = 463, + [1812] = 447, + [1813] = 1780, + [1814] = 1778, + [1815] = 1779, + [1816] = 1800, + [1817] = 1801, + [1818] = 1818, + [1819] = 1797, + [1820] = 1802, + [1821] = 1818, + [1822] = 1818, + [1823] = 1818, + [1824] = 1804, + [1825] = 1825, + [1826] = 346, + [1827] = 1827, [1828] = 1828, - [1829] = 500, - [1830] = 1830, + [1829] = 352, + [1830] = 544, [1831] = 1831, - [1832] = 334, - [1833] = 351, - [1834] = 503, - [1835] = 490, - [1836] = 470, - [1837] = 369, - [1838] = 1838, - [1839] = 459, - [1840] = 108, - [1841] = 1841, - [1842] = 105, - [1843] = 106, - [1844] = 357, - [1845] = 342, - [1846] = 1846, - [1847] = 500, - [1848] = 503, - [1849] = 490, - [1850] = 642, - [1851] = 1851, - [1852] = 685, - [1853] = 1853, - [1854] = 743, - [1855] = 645, - [1856] = 744, - [1857] = 339, - [1858] = 368, - [1859] = 93, - [1860] = 746, - [1861] = 747, - [1862] = 465, - [1863] = 1851, - [1864] = 442, - [1865] = 764, - [1866] = 466, - [1867] = 351, - [1868] = 357, - [1869] = 343, - [1870] = 360, - [1871] = 340, - [1872] = 676, - [1873] = 341, - [1874] = 349, - [1875] = 1830, - [1876] = 1473, - [1877] = 1846, - [1878] = 92, - [1879] = 444, - [1880] = 763, - [1881] = 744, - [1882] = 336, - [1883] = 497, - [1884] = 342, - [1885] = 747, - [1886] = 343, - [1887] = 746, - [1888] = 486, - [1889] = 676, - [1890] = 340, - [1891] = 341, - [1892] = 442, - [1893] = 92, - [1894] = 489, - [1895] = 444, - [1896] = 368, - [1897] = 1897, - [1898] = 466, - [1899] = 459, - [1900] = 1897, - [1901] = 484, - [1902] = 93, - [1903] = 1489, - [1904] = 470, - [1905] = 98, - [1906] = 763, - [1907] = 764, - [1908] = 465, - [1909] = 493, - [1910] = 349, - [1911] = 333, - [1912] = 99, - [1913] = 685, - [1914] = 360, - [1915] = 743, - [1916] = 485, - [1917] = 459, - [1918] = 948, - [1919] = 954, - [1920] = 886, - [1921] = 1921, - [1922] = 1922, - [1923] = 1923, - [1924] = 958, - [1925] = 959, - [1926] = 1926, - [1927] = 960, - [1928] = 937, - [1929] = 470, - [1930] = 1930, - [1931] = 1931, - [1932] = 961, - [1933] = 931, - [1934] = 1498, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, + [1832] = 336, + [1833] = 488, + [1834] = 475, + [1835] = 480, + [1836] = 474, + [1837] = 105, + [1838] = 353, + [1839] = 106, + [1840] = 107, + [1841] = 463, + [1842] = 1842, + [1843] = 543, + [1844] = 369, + [1845] = 1845, + [1846] = 488, + [1847] = 699, + [1848] = 349, + [1849] = 1849, + [1850] = 717, + [1851] = 92, + [1852] = 93, + [1853] = 449, + [1854] = 876, + [1855] = 475, + [1856] = 480, + [1857] = 1459, + [1858] = 346, + [1859] = 1831, + [1860] = 447, + [1861] = 457, + [1862] = 694, + [1863] = 455, + [1864] = 352, + [1865] = 881, + [1866] = 353, + [1867] = 344, + [1868] = 338, + [1869] = 543, + [1870] = 345, + [1871] = 374, + [1872] = 1845, + [1873] = 883, + [1874] = 347, + [1875] = 544, + [1876] = 348, + [1877] = 1877, + [1878] = 878, + [1879] = 718, + [1880] = 374, + [1881] = 479, + [1882] = 1882, + [1883] = 348, + [1884] = 876, + [1885] = 878, + [1886] = 335, + [1887] = 347, + [1888] = 883, + [1889] = 717, + [1890] = 344, + [1891] = 694, + [1892] = 718, + [1893] = 1504, + [1894] = 1882, + [1895] = 333, + [1896] = 463, + [1897] = 447, + [1898] = 349, + [1899] = 93, + [1900] = 345, + [1901] = 496, + [1902] = 492, + [1903] = 494, + [1904] = 449, + [1905] = 881, + [1906] = 474, + [1907] = 95, + [1908] = 699, + [1909] = 94, + [1910] = 478, + [1911] = 92, + [1912] = 455, + [1913] = 457, + [1914] = 476, + [1915] = 338, + [1916] = 1916, + [1917] = 1917, + [1918] = 344, + [1919] = 338, + [1920] = 345, + [1921] = 347, + [1922] = 348, + [1923] = 349, + [1924] = 907, + [1925] = 919, + [1926] = 768, + [1927] = 1927, + [1928] = 95, + [1929] = 922, + [1930] = 923, + [1931] = 474, + [1932] = 924, + [1933] = 463, + [1934] = 1934, + [1935] = 940, + [1936] = 927, + [1937] = 963, [1938] = 1938, - [1939] = 99, + [1939] = 1505, [1940] = 1940, - [1941] = 349, - [1942] = 98, - [1943] = 1936, - [1944] = 108, - [1945] = 105, - [1946] = 106, - [1947] = 338, - [1948] = 353, - [1949] = 500, - [1950] = 503, - [1951] = 490, - [1952] = 941, - [1953] = 343, - [1954] = 360, - [1955] = 700, - [1956] = 709, - [1957] = 705, - [1958] = 340, - [1959] = 697, - [1960] = 704, - [1961] = 692, - [1962] = 675, - [1963] = 698, - [1964] = 341, - [1965] = 342, - [1966] = 712, - [1967] = 948, + [1941] = 94, + [1942] = 702, + [1943] = 105, + [1944] = 106, + [1945] = 107, + [1946] = 341, + [1947] = 1947, + [1948] = 1948, + [1949] = 1949, + [1950] = 342, + [1951] = 488, + [1952] = 475, + [1953] = 480, + [1954] = 949, + [1955] = 1955, + [1956] = 692, + [1957] = 696, + [1958] = 682, + [1959] = 1959, + [1960] = 705, + [1961] = 695, + [1962] = 679, + [1963] = 680, + [1964] = 681, + [1965] = 1938, + [1966] = 1179, + [1967] = 1967, [1968] = 1968, - [1969] = 937, - [1970] = 540, - [1971] = 500, - [1972] = 503, - [1973] = 490, - [1974] = 941, - [1975] = 1975, - [1976] = 1976, - [1977] = 333, - [1978] = 954, + [1969] = 940, + [1970] = 488, + [1971] = 1971, + [1972] = 475, + [1973] = 480, + [1974] = 1974, + [1975] = 1510, + [1976] = 105, + [1977] = 528, + [1978] = 949, [1979] = 1979, - [1980] = 1980, - [1981] = 1981, - [1982] = 1176, - [1983] = 1262, - [1984] = 1250, - [1985] = 1255, - [1986] = 1135, - [1987] = 1158, - [1988] = 1182, - [1989] = 1221, - [1990] = 1990, - [1991] = 1226, - [1992] = 1235, - [1993] = 1241, - [1994] = 1245, - [1995] = 1995, - [1996] = 1187, - [1997] = 1243, - [1998] = 1156, - [1999] = 1175, - [2000] = 1193, - [2001] = 1222, - [2002] = 1168, - [2003] = 1173, - [2004] = 1180, - [2005] = 1190, - [2006] = 1197, - [2007] = 1214, - [2008] = 1234, - [2009] = 1244, - [2010] = 1261, - [2011] = 1159, - [2012] = 1178, - [2013] = 1183, - [2014] = 1188, - [2015] = 1196, + [1980] = 335, + [1981] = 907, + [1982] = 1230, + [1983] = 1234, + [1984] = 1238, + [1985] = 1240, + [1986] = 1241, + [1987] = 1244, + [1988] = 1246, + [1989] = 1248, + [1990] = 1254, + [1991] = 1255, + [1992] = 1256, + [1993] = 919, + [1994] = 1258, + [1995] = 106, + [1996] = 1979, + [1997] = 1237, + [1998] = 1243, + [1999] = 1249, + [2000] = 1183, + [2001] = 1137, + [2002] = 1171, + [2003] = 1189, + [2004] = 1219, + [2005] = 1251, + [2006] = 1145, + [2007] = 1175, + [2008] = 1178, + [2009] = 1182, + [2010] = 1187, + [2011] = 1188, + [2012] = 1190, + [2013] = 1196, + [2014] = 1198, + [2015] = 1199, [2016] = 1201, - [2017] = 1211, - [2018] = 1217, - [2019] = 1225, - [2020] = 1236, - [2021] = 1249, - [2022] = 1253, - [2023] = 1154, - [2024] = 1161, - [2025] = 1164, - [2026] = 1171, - [2027] = 1174, - [2028] = 1185, - [2029] = 1192, - [2030] = 1195, - [2031] = 1199, - [2032] = 1209, - [2033] = 1213, - [2034] = 1215, - [2035] = 1219, - [2036] = 1224, - [2037] = 1228, - [2038] = 1231, - [2039] = 1233, - [2040] = 1238, - [2041] = 1246, - [2042] = 1248, - [2043] = 1132, - [2044] = 1134, - [2045] = 1137, - [2046] = 1139, - [2047] = 1141, - [2048] = 1143, - [2049] = 1146, - [2050] = 1148, - [2051] = 1150, - [2052] = 1152, - [2053] = 1155, - [2054] = 1157, - [2055] = 1160, - [2056] = 1162, - [2057] = 1165, - [2058] = 1167, - [2059] = 1170, - [2060] = 1177, - [2061] = 1179, - [2062] = 1181, - [2063] = 1184, - [2064] = 1186, - [2065] = 1189, - [2066] = 1191, - [2067] = 1194, - [2068] = 1198, - [2069] = 1200, - [2070] = 1131, - [2071] = 1204, - [2072] = 1206, - [2073] = 1208, - [2074] = 1210, - [2075] = 1212, - [2076] = 1216, - [2077] = 1218, - [2078] = 1227, - [2079] = 1229, - [2080] = 108, + [2017] = 1261, + [2018] = 1203, + [2019] = 1205, + [2020] = 1209, + [2021] = 1210, + [2022] = 1213, + [2023] = 1218, + [2024] = 1220, + [2025] = 1222, + [2026] = 1224, + [2027] = 1226, + [2028] = 1227, + [2029] = 1232, + [2030] = 1239, + [2031] = 1242, + [2032] = 1130, + [2033] = 2033, + [2034] = 1153, + [2035] = 1169, + [2036] = 1133, + [2037] = 1139, + [2038] = 1144, + [2039] = 1164, + [2040] = 1167, + [2041] = 1181, + [2042] = 1185, + [2043] = 1191, + [2044] = 1206, + [2045] = 1257, + [2046] = 1135, + [2047] = 1148, + [2048] = 1165, + [2049] = 1168, + [2050] = 1177, + [2051] = 1180, + [2052] = 2052, + [2053] = 1186, + [2054] = 1192, + [2055] = 1195, + [2056] = 1197, + [2057] = 1200, + [2058] = 1214, + [2059] = 1216, + [2060] = 1225, + [2061] = 1250, + [2062] = 1253, + [2063] = 1131, + [2064] = 1132, + [2065] = 1134, + [2066] = 1136, + [2067] = 1138, + [2068] = 1147, + [2069] = 1152, + [2070] = 1154, + [2071] = 1155, + [2072] = 1157, + [2073] = 1159, + [2074] = 1161, + [2075] = 1163, + [2076] = 1166, + [2077] = 1170, + [2078] = 1172, + [2079] = 1173, + [2080] = 1174, [2081] = 2081, - [2082] = 2082, - [2083] = 2083, - [2084] = 958, - [2085] = 1976, - [2086] = 2086, + [2082] = 922, + [2083] = 1979, + [2084] = 2084, + [2085] = 1459, + [2086] = 336, [2087] = 2087, - [2088] = 1515, - [2089] = 2089, - [2090] = 105, - [2091] = 1473, - [2092] = 959, - [2093] = 886, - [2094] = 334, - [2095] = 369, - [2096] = 960, - [2097] = 961, - [2098] = 967, - [2099] = 1976, - [2100] = 931, - [2101] = 1976, - [2102] = 1473, - [2103] = 1976, - [2104] = 2104, - [2105] = 2105, - [2106] = 1981, - [2107] = 1976, - [2108] = 2108, - [2109] = 106, - [2110] = 2110, - [2111] = 351, - [2112] = 1489, - [2113] = 1489, - [2114] = 960, - [2115] = 967, - [2116] = 937, - [2117] = 1498, + [2088] = 923, + [2089] = 768, + [2090] = 2090, + [2091] = 1459, + [2092] = 2092, + [2093] = 2093, + [2094] = 2094, + [2095] = 2095, + [2096] = 2096, + [2097] = 924, + [2098] = 369, + [2099] = 927, + [2100] = 963, + [2101] = 2101, + [2102] = 1008, + [2103] = 107, + [2104] = 1979, + [2105] = 1979, + [2106] = 2106, + [2107] = 1979, + [2108] = 1979, + [2109] = 1967, + [2110] = 1184, + [2111] = 768, + [2112] = 1008, + [2113] = 352, + [2114] = 924, + [2115] = 353, + [2116] = 1504, + [2117] = 1505, [2118] = 2118, - [2119] = 961, + [2119] = 940, [2120] = 2120, - [2121] = 1498, - [2122] = 931, - [2123] = 2123, + [2121] = 2121, + [2122] = 346, + [2123] = 711, [2124] = 2124, - [2125] = 967, - [2126] = 699, - [2127] = 357, - [2128] = 2123, - [2129] = 2124, - [2130] = 2123, - [2131] = 2124, - [2132] = 886, - [2133] = 339, - [2134] = 691, - [2135] = 926, - [2136] = 1515, - [2137] = 1251, - [2138] = 1254, - [2139] = 1203, - [2140] = 1133, - [2141] = 1136, - [2142] = 1138, - [2143] = 1140, - [2144] = 1142, - [2145] = 1144, - [2146] = 1145, - [2147] = 1147, - [2148] = 2148, - [2149] = 2149, - [2150] = 899, - [2151] = 2149, - [2152] = 930, - [2153] = 1515, - [2154] = 676, - [2155] = 763, - [2156] = 764, - [2157] = 2157, - [2158] = 498, - [2159] = 2157, - [2160] = 343, - [2161] = 2149, - [2162] = 360, - [2163] = 340, - [2164] = 695, - [2165] = 341, - [2166] = 342, - [2167] = 349, - [2168] = 743, - [2169] = 1247, - [2170] = 1251, - [2171] = 943, - [2172] = 1254, - [2173] = 2173, - [2174] = 2174, - [2175] = 1203, - [2176] = 2176, - [2177] = 1133, - [2178] = 694, - [2179] = 744, - [2180] = 491, - [2181] = 887, - [2182] = 368, - [2183] = 951, - [2184] = 1136, - [2185] = 1138, - [2186] = 1140, - [2187] = 1142, - [2188] = 1144, - [2189] = 1145, - [2190] = 1147, - [2191] = 2191, - [2192] = 2149, - [2193] = 924, - [2194] = 746, - [2195] = 2149, - [2196] = 730, - [2197] = 747, - [2198] = 949, - [2199] = 2149, - [2200] = 2149, - [2201] = 540, - [2202] = 2157, - [2203] = 735, - [2204] = 916, - [2205] = 724, - [2206] = 897, - [2207] = 936, - [2208] = 685, - [2209] = 923, - [2210] = 719, - [2211] = 898, - [2212] = 1247, + [2125] = 1504, + [2126] = 2120, + [2127] = 2121, + [2128] = 1505, + [2129] = 697, + [2130] = 2120, + [2131] = 2121, + [2132] = 927, + [2133] = 963, + [2134] = 1008, + [2135] = 770, + [2136] = 1510, + [2137] = 528, + [2138] = 2138, + [2139] = 1236, + [2140] = 2140, + [2141] = 2141, + [2142] = 1245, + [2143] = 1247, + [2144] = 1252, + [2145] = 1211, + [2146] = 1215, + [2147] = 1217, + [2148] = 1221, + [2149] = 1223, + [2150] = 1228, + [2151] = 1233, + [2152] = 1235, + [2153] = 1236, + [2154] = 1245, + [2155] = 1247, + [2156] = 1252, + [2157] = 717, + [2158] = 718, + [2159] = 2159, + [2160] = 930, + [2161] = 956, + [2162] = 2162, + [2163] = 344, + [2164] = 931, + [2165] = 338, + [2166] = 345, + [2167] = 2167, + [2168] = 793, + [2169] = 347, + [2170] = 348, + [2171] = 349, + [2172] = 699, + [2173] = 943, + [2174] = 833, + [2175] = 1223, + [2176] = 671, + [2177] = 944, + [2178] = 954, + [2179] = 896, + [2180] = 694, + [2181] = 693, + [2182] = 1211, + [2183] = 2159, + [2184] = 1215, + [2185] = 2159, + [2186] = 1217, + [2187] = 374, + [2188] = 898, + [2189] = 2159, + [2190] = 881, + [2191] = 2159, + [2192] = 883, + [2193] = 1233, + [2194] = 2159, + [2195] = 1235, + [2196] = 2159, + [2197] = 2159, + [2198] = 897, + [2199] = 497, + [2200] = 1221, + [2201] = 485, + [2202] = 841, + [2203] = 1510, + [2204] = 876, + [2205] = 1228, + [2206] = 878, + [2207] = 942, + [2208] = 846, + [2209] = 910, + [2210] = 937, + [2211] = 2211, + [2212] = 2212, [2213] = 2213, - [2214] = 2213, - [2215] = 2213, - [2216] = 2213, - [2217] = 2217, - [2218] = 2213, - [2219] = 691, - [2220] = 2213, - [2221] = 2217, - [2222] = 1473, - [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 540, - [2227] = 2227, - [2228] = 343, - [2229] = 341, - [2230] = 342, - [2231] = 2231, + [2214] = 2214, + [2215] = 2214, + [2216] = 2216, + [2217] = 2216, + [2218] = 2211, + [2219] = 2214, + [2220] = 2216, + [2221] = 2211, + [2222] = 2214, + [2223] = 697, + [2224] = 2216, + [2225] = 2214, + [2226] = 2214, + [2227] = 2211, + [2228] = 2228, + [2229] = 2213, + [2230] = 528, + [2231] = 1459, [2232] = 2232, - [2233] = 349, - [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 1981, + [2233] = 2233, + [2234] = 345, + [2235] = 1967, + [2236] = 1459, + [2237] = 2237, [2238] = 2238, - [2239] = 1489, + [2239] = 1505, [2240] = 2240, - [2241] = 1498, - [2242] = 360, - [2243] = 340, - [2244] = 691, - [2245] = 1473, + [2241] = 697, + [2242] = 347, + [2243] = 348, + [2244] = 2244, + [2245] = 2245, [2246] = 2246, - [2247] = 1498, - [2248] = 1489, + [2247] = 344, + [2248] = 349, [2249] = 2249, - [2250] = 2250, - [2251] = 1515, - [2252] = 2252, - [2253] = 1515, + [2250] = 338, + [2251] = 1504, + [2252] = 1504, + [2253] = 1505, [2254] = 2254, - [2255] = 2255, + [2255] = 1510, [2256] = 2256, - [2257] = 2257, - [2258] = 368, - [2259] = 2259, + [2257] = 1510, + [2258] = 2258, + [2259] = 2258, [2260] = 2260, - [2261] = 2255, - [2262] = 2254, - [2263] = 336, - [2264] = 2264, - [2265] = 2265, - [2266] = 2266, + [2261] = 2261, + [2262] = 2262, + [2263] = 2263, + [2264] = 2256, + [2265] = 374, + [2266] = 333, [2267] = 2267, [2268] = 2268, - [2269] = 2269, - [2270] = 2270, + [2269] = 335, + [2270] = 2268, [2271] = 2271, [2272] = 2272, - [2273] = 333, + [2273] = 2273, [2274] = 2274, [2275] = 2275, [2276] = 2276, @@ -7095,462 +7081,462 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2279] = 2279, [2280] = 2280, [2281] = 2281, - [2282] = 2268, - [2283] = 389, + [2282] = 2282, + [2283] = 2283, [2284] = 2284, [2285] = 2285, [2286] = 2286, [2287] = 2287, [2288] = 2288, [2289] = 2289, - [2290] = 338, - [2291] = 353, - [2292] = 412, - [2293] = 399, - [2294] = 2294, - [2295] = 2295, - [2296] = 369, - [2297] = 377, - [2298] = 389, - [2299] = 407, - [2300] = 398, - [2301] = 407, - [2302] = 2302, + [2290] = 2290, + [2291] = 2291, + [2292] = 2292, + [2293] = 2293, + [2294] = 341, + [2295] = 342, + [2296] = 411, + [2297] = 402, + [2298] = 378, + [2299] = 378, + [2300] = 478, + [2301] = 333, + [2302] = 403, [2303] = 2303, - [2304] = 398, - [2305] = 2302, - [2306] = 400, - [2307] = 408, - [2308] = 409, - [2309] = 410, + [2304] = 476, + [2305] = 395, + [2306] = 494, + [2307] = 369, + [2308] = 335, + [2309] = 399, [2310] = 2310, - [2311] = 2311, - [2312] = 2303, - [2313] = 389, - [2314] = 377, + [2311] = 342, + [2312] = 2310, + [2313] = 2313, + [2314] = 2314, [2315] = 2315, [2316] = 2316, - [2317] = 2315, - [2318] = 2316, - [2319] = 2310, - [2320] = 2311, - [2321] = 92, - [2322] = 93, - [2323] = 410, - [2324] = 98, - [2325] = 377, - [2326] = 389, - [2327] = 93, - [2328] = 92, - [2329] = 398, - [2330] = 407, - [2331] = 446, - [2332] = 408, - [2333] = 400, - [2334] = 409, - [2335] = 99, - [2336] = 108, - [2337] = 442, - [2338] = 446, - [2339] = 106, - [2340] = 377, - [2341] = 400, - [2342] = 105, - [2343] = 408, - [2344] = 409, - [2345] = 410, - [2346] = 407, - [2347] = 98, - [2348] = 444, - [2349] = 486, - [2350] = 93, - [2351] = 493, - [2352] = 92, - [2353] = 398, - [2354] = 99, - [2355] = 108, - [2356] = 410, - [2357] = 92, - [2358] = 400, - [2359] = 336, - [2360] = 470, - [2361] = 1473, - [2362] = 2362, - [2363] = 446, - [2364] = 412, - [2365] = 442, - [2366] = 459, - [2367] = 399, - [2368] = 93, - [2369] = 444, - [2370] = 2370, - [2371] = 99, - [2372] = 2372, + [2317] = 2317, + [2318] = 2313, + [2319] = 344, + [2320] = 338, + [2321] = 345, + [2322] = 92, + [2323] = 347, + [2324] = 348, + [2325] = 410, + [2326] = 403, + [2327] = 349, + [2328] = 404, + [2329] = 406, + [2330] = 408, + [2331] = 399, + [2332] = 395, + [2333] = 378, + [2334] = 93, + [2335] = 2315, + [2336] = 2316, + [2337] = 341, + [2338] = 2317, + [2339] = 2314, + [2340] = 403, + [2341] = 2341, + [2342] = 2342, + [2343] = 369, + [2344] = 2344, + [2345] = 94, + [2346] = 395, + [2347] = 378, + [2348] = 2348, + [2349] = 436, + [2350] = 2350, + [2351] = 92, + [2352] = 93, + [2353] = 399, + [2354] = 410, + [2355] = 404, + [2356] = 406, + [2357] = 408, + [2358] = 336, + [2359] = 95, + [2360] = 92, + [2361] = 347, + [2362] = 410, + [2363] = 349, + [2364] = 348, + [2365] = 404, + [2366] = 406, + [2367] = 403, + [2368] = 352, + [2369] = 449, + [2370] = 408, + [2371] = 436, + [2372] = 344, [2373] = 2373, - [2374] = 336, - [2375] = 105, + [2374] = 2374, + [2375] = 2375, [2376] = 2376, - [2377] = 408, - [2378] = 389, - [2379] = 106, - [2380] = 98, - [2381] = 409, - [2382] = 333, - [2383] = 398, - [2384] = 442, - [2385] = 1489, - [2386] = 1498, - [2387] = 338, - [2388] = 399, - [2389] = 2389, - [2390] = 349, - [2391] = 106, - [2392] = 377, - [2393] = 99, - [2394] = 333, - [2395] = 92, - [2396] = 93, - [2397] = 446, - [2398] = 500, - [2399] = 98, - [2400] = 503, - [2401] = 490, - [2402] = 2402, - [2403] = 342, - [2404] = 336, - [2405] = 470, - [2406] = 642, - [2407] = 353, - [2408] = 340, - [2409] = 645, - [2410] = 108, - [2411] = 341, - [2412] = 412, - [2413] = 497, - [2414] = 484, - [2415] = 485, - [2416] = 489, - [2417] = 2417, - [2418] = 407, - [2419] = 459, - [2420] = 343, - [2421] = 105, - [2422] = 360, - [2423] = 444, - [2424] = 490, - [2425] = 333, - [2426] = 106, - [2427] = 408, - [2428] = 409, - [2429] = 410, - [2430] = 338, - [2431] = 444, - [2432] = 412, - [2433] = 642, - [2434] = 353, - [2435] = 442, - [2436] = 645, - [2437] = 400, - [2438] = 503, - [2439] = 1515, - [2440] = 105, - [2441] = 349, - [2442] = 99, - [2443] = 442, + [2377] = 106, + [2378] = 338, + [2379] = 345, + [2380] = 107, + [2381] = 399, + [2382] = 395, + [2383] = 2383, + [2384] = 2384, + [2385] = 2385, + [2386] = 2386, + [2387] = 94, + [2388] = 2388, + [2389] = 105, + [2390] = 93, + [2391] = 496, + [2392] = 2392, + [2393] = 492, + [2394] = 447, + [2395] = 353, + [2396] = 2396, + [2397] = 346, + [2398] = 95, + [2399] = 333, + [2400] = 2400, + [2401] = 410, + [2402] = 408, + [2403] = 406, + [2404] = 93, + [2405] = 335, + [2406] = 378, + [2407] = 2407, + [2408] = 106, + [2409] = 2409, + [2410] = 107, + [2411] = 2411, + [2412] = 411, + [2413] = 402, + [2414] = 2414, + [2415] = 956, + [2416] = 94, + [2417] = 404, + [2418] = 92, + [2419] = 2419, + [2420] = 95, + [2421] = 2421, + [2422] = 474, + [2423] = 2423, + [2424] = 937, + [2425] = 447, + [2426] = 897, + [2427] = 2427, + [2428] = 2428, + [2429] = 463, + [2430] = 2430, + [2431] = 105, + [2432] = 2432, + [2433] = 333, + [2434] = 942, + [2435] = 374, + [2436] = 449, + [2437] = 2437, + [2438] = 2438, + [2439] = 436, + [2440] = 488, + [2441] = 2441, + [2442] = 107, + [2443] = 342, [2444] = 2444, - [2445] = 334, - [2446] = 360, - [2447] = 444, - [2448] = 1841, - [2449] = 459, - [2450] = 108, - [2451] = 341, - [2452] = 98, - [2453] = 500, - [2454] = 343, - [2455] = 336, - [2456] = 399, - [2457] = 340, - [2458] = 342, - [2459] = 369, - [2460] = 470, - [2461] = 369, - [2462] = 360, - [2463] = 342, - [2464] = 2464, - [2465] = 349, - [2466] = 489, - [2467] = 2467, - [2468] = 500, - [2469] = 1841, - [2470] = 484, - [2471] = 459, - [2472] = 343, - [2473] = 106, - [2474] = 485, - [2475] = 2475, - [2476] = 351, - [2477] = 486, - [2478] = 697, - [2479] = 497, - [2480] = 444, - [2481] = 2481, - [2482] = 442, - [2483] = 108, - [2484] = 2464, - [2485] = 2464, - [2486] = 341, - [2487] = 490, - [2488] = 444, - [2489] = 338, - [2490] = 340, - [2491] = 399, - [2492] = 353, - [2493] = 470, - [2494] = 333, - [2495] = 2464, - [2496] = 2496, - [2497] = 2497, - [2498] = 412, - [2499] = 470, - [2500] = 704, - [2501] = 692, - [2502] = 675, - [2503] = 698, - [2504] = 442, - [2505] = 642, - [2506] = 369, - [2507] = 105, - [2508] = 357, - [2509] = 645, - [2510] = 459, - [2511] = 339, - [2512] = 334, - [2513] = 493, - [2514] = 503, - [2515] = 937, - [2516] = 485, - [2517] = 2517, - [2518] = 369, - [2519] = 489, - [2520] = 2497, - [2521] = 2521, - [2522] = 886, - [2523] = 941, - [2524] = 961, - [2525] = 459, + [2445] = 95, + [2446] = 475, + [2447] = 335, + [2448] = 480, + [2449] = 344, + [2450] = 395, + [2451] = 94, + [2452] = 399, + [2453] = 411, + [2454] = 105, + [2455] = 338, + [2456] = 93, + [2457] = 92, + [2458] = 403, + [2459] = 106, + [2460] = 347, + [2461] = 348, + [2462] = 436, + [2463] = 449, + [2464] = 402, + [2465] = 474, + [2466] = 349, + [2467] = 333, + [2468] = 476, + [2469] = 479, + [2470] = 494, + [2471] = 544, + [2472] = 478, + [2473] = 341, + [2474] = 463, + [2475] = 447, + [2476] = 543, + [2477] = 345, + [2478] = 342, + [2479] = 463, + [2480] = 369, + [2481] = 338, + [2482] = 408, + [2483] = 544, + [2484] = 410, + [2485] = 105, + [2486] = 449, + [2487] = 336, + [2488] = 347, + [2489] = 333, + [2490] = 1828, + [2491] = 404, + [2492] = 106, + [2493] = 348, + [2494] = 2494, + [2495] = 406, + [2496] = 447, + [2497] = 107, + [2498] = 345, + [2499] = 344, + [2500] = 94, + [2501] = 341, + [2502] = 449, + [2503] = 95, + [2504] = 411, + [2505] = 488, + [2506] = 543, + [2507] = 475, + [2508] = 480, + [2509] = 402, + [2510] = 447, + [2511] = 335, + [2512] = 369, + [2513] = 474, + [2514] = 349, + [2515] = 463, + [2516] = 345, + [2517] = 449, + [2518] = 2518, + [2519] = 352, + [2520] = 2520, + [2521] = 447, + [2522] = 341, + [2523] = 475, + [2524] = 336, + [2525] = 2525, [2526] = 2526, - [2527] = 960, - [2528] = 948, - [2529] = 503, - [2530] = 2530, - [2531] = 500, - [2532] = 357, - [2533] = 954, - [2534] = 958, - [2535] = 959, - [2536] = 341, - [2537] = 2537, - [2538] = 2538, - [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 339, - [2543] = 442, - [2544] = 342, - [2545] = 2545, - [2546] = 931, - [2547] = 2547, - [2548] = 343, - [2549] = 2549, - [2550] = 444, - [2551] = 334, - [2552] = 349, - [2553] = 497, - [2554] = 493, - [2555] = 470, - [2556] = 338, - [2557] = 486, - [2558] = 500, - [2559] = 490, - [2560] = 645, - [2561] = 360, - [2562] = 2475, - [2563] = 2537, - [2564] = 697, - [2565] = 642, - [2566] = 351, - [2567] = 2567, - [2568] = 340, - [2569] = 503, - [2570] = 2570, - [2571] = 490, - [2572] = 459, - [2573] = 484, - [2574] = 2481, - [2575] = 353, - [2576] = 704, - [2577] = 470, - [2578] = 692, - [2579] = 675, - [2580] = 698, - [2581] = 2581, - [2582] = 444, - [2583] = 503, - [2584] = 2584, - [2585] = 2538, - [2586] = 459, - [2587] = 937, - [2588] = 503, - [2589] = 490, - [2590] = 2590, - [2591] = 490, - [2592] = 2592, - [2593] = 2567, - [2594] = 493, - [2595] = 500, - [2596] = 491, - [2597] = 2597, - [2598] = 2598, - [2599] = 489, - [2600] = 948, - [2601] = 465, - [2602] = 497, - [2603] = 954, - [2604] = 697, - [2605] = 704, - [2606] = 692, - [2607] = 675, - [2608] = 698, - [2609] = 351, - [2610] = 500, - [2611] = 339, - [2612] = 642, - [2613] = 2547, - [2614] = 958, - [2615] = 466, - [2616] = 491, - [2617] = 486, - [2618] = 959, - [2619] = 960, - [2620] = 967, - [2621] = 2621, - [2622] = 498, - [2623] = 2623, - [2624] = 498, - [2625] = 485, - [2626] = 941, - [2627] = 368, - [2628] = 2521, - [2629] = 442, - [2630] = 2539, - [2631] = 2631, - [2632] = 2581, - [2633] = 484, - [2634] = 1940, - [2635] = 2549, - [2636] = 2545, - [2637] = 645, - [2638] = 470, - [2639] = 961, - [2640] = 357, - [2641] = 931, - [2642] = 886, - [2643] = 2643, - [2644] = 498, - [2645] = 697, - [2646] = 2646, - [2647] = 2647, - [2648] = 2648, - [2649] = 2649, - [2650] = 2650, - [2651] = 442, - [2652] = 2652, - [2653] = 2653, + [2527] = 480, + [2528] = 1828, + [2529] = 492, + [2530] = 705, + [2531] = 476, + [2532] = 342, + [2533] = 353, + [2534] = 2520, + [2535] = 449, + [2536] = 344, + [2537] = 494, + [2538] = 106, + [2539] = 349, + [2540] = 107, + [2541] = 338, + [2542] = 543, + [2543] = 474, + [2544] = 496, + [2545] = 105, + [2546] = 347, + [2547] = 479, + [2548] = 2520, + [2549] = 335, + [2550] = 695, + [2551] = 679, + [2552] = 680, + [2553] = 681, + [2554] = 2554, + [2555] = 447, + [2556] = 474, + [2557] = 348, + [2558] = 369, + [2559] = 2559, + [2560] = 2520, + [2561] = 463, + [2562] = 346, + [2563] = 544, + [2564] = 488, + [2565] = 402, + [2566] = 478, + [2567] = 411, + [2568] = 940, + [2569] = 2411, + [2570] = 341, + [2571] = 924, + [2572] = 480, + [2573] = 480, + [2574] = 2400, + [2575] = 2575, + [2576] = 922, + [2577] = 2577, + [2578] = 474, + [2579] = 352, + [2580] = 492, + [2581] = 463, + [2582] = 2582, + [2583] = 2583, + [2584] = 543, + [2585] = 923, + [2586] = 2526, + [2587] = 336, + [2588] = 907, + [2589] = 494, + [2590] = 344, + [2591] = 2591, + [2592] = 476, + [2593] = 2430, + [2594] = 2594, + [2595] = 544, + [2596] = 353, + [2597] = 927, + [2598] = 479, + [2599] = 447, + [2600] = 496, + [2601] = 963, + [2602] = 488, + [2603] = 346, + [2604] = 2604, + [2605] = 338, + [2606] = 705, + [2607] = 2421, + [2608] = 2608, + [2609] = 345, + [2610] = 463, + [2611] = 347, + [2612] = 348, + [2613] = 349, + [2614] = 919, + [2615] = 475, + [2616] = 2525, + [2617] = 488, + [2618] = 768, + [2619] = 2423, + [2620] = 478, + [2621] = 369, + [2622] = 2622, + [2623] = 2428, + [2624] = 2518, + [2625] = 695, + [2626] = 949, + [2627] = 475, + [2628] = 679, + [2629] = 680, + [2630] = 681, + [2631] = 449, + [2632] = 2622, + [2633] = 474, + [2634] = 342, + [2635] = 485, + [2636] = 2575, + [2637] = 2604, + [2638] = 455, + [2639] = 447, + [2640] = 480, + [2641] = 2641, + [2642] = 2642, + [2643] = 907, + [2644] = 2644, + [2645] = 2582, + [2646] = 476, + [2647] = 924, + [2648] = 705, + [2649] = 695, + [2650] = 679, + [2651] = 680, + [2652] = 681, + [2653] = 480, [2654] = 2654, - [2655] = 2655, - [2656] = 2656, - [2657] = 2657, - [2658] = 2658, - [2659] = 2659, - [2660] = 2660, - [2661] = 2661, - [2662] = 2662, - [2663] = 2663, - [2664] = 2664, - [2665] = 2665, - [2666] = 2666, - [2667] = 2667, - [2668] = 2668, + [2655] = 492, + [2656] = 2583, + [2657] = 949, + [2658] = 496, + [2659] = 922, + [2660] = 1008, + [2661] = 352, + [2662] = 485, + [2663] = 346, + [2664] = 768, + [2665] = 1917, + [2666] = 449, + [2667] = 488, + [2668] = 457, [2669] = 2669, - [2670] = 2670, - [2671] = 2671, + [2670] = 923, + [2671] = 2591, [2672] = 2672, - [2673] = 2673, - [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2678, - [2679] = 2679, - [2680] = 2680, - [2681] = 444, - [2682] = 704, - [2683] = 444, - [2684] = 2684, - [2685] = 2685, - [2686] = 2686, - [2687] = 2687, - [2688] = 2688, - [2689] = 2689, + [2673] = 2594, + [2674] = 479, + [2675] = 474, + [2676] = 374, + [2677] = 919, + [2678] = 494, + [2679] = 2577, + [2680] = 497, + [2681] = 927, + [2682] = 544, + [2683] = 475, + [2684] = 488, + [2685] = 543, + [2686] = 963, + [2687] = 497, + [2688] = 475, + [2689] = 353, [2690] = 2690, - [2691] = 2691, - [2692] = 2692, - [2693] = 2693, + [2691] = 2608, + [2692] = 940, + [2693] = 478, [2694] = 2694, - [2695] = 937, - [2696] = 470, - [2697] = 2697, + [2695] = 463, + [2696] = 2696, + [2697] = 681, [2698] = 2698, - [2699] = 941, + [2699] = 2699, [2700] = 2700, - [2701] = 368, + [2701] = 2701, [2702] = 2702, [2703] = 2703, - [2704] = 692, - [2705] = 675, - [2706] = 698, - [2707] = 948, - [2708] = 954, - [2709] = 459, - [2710] = 958, + [2704] = 2704, + [2705] = 2705, + [2706] = 2706, + [2707] = 485, + [2708] = 2708, + [2709] = 2709, + [2710] = 2710, [2711] = 2711, [2712] = 2712, - [2713] = 959, + [2713] = 497, [2714] = 2714, [2715] = 2715, - [2716] = 886, - [2717] = 960, + [2716] = 683, + [2717] = 684, [2718] = 2718, [2719] = 2719, [2720] = 2720, - [2721] = 2597, - [2722] = 961, - [2723] = 931, - [2724] = 2724, + [2721] = 2721, + [2722] = 2722, + [2723] = 2723, + [2724] = 488, [2725] = 2725, [2726] = 2726, [2727] = 2727, - [2728] = 2598, - [2729] = 2729, + [2728] = 685, + [2729] = 475, [2730] = 2730, [2731] = 2731, - [2732] = 2732, - [2733] = 702, - [2734] = 703, + [2732] = 480, + [2733] = 2733, + [2734] = 686, [2735] = 2735, - [2736] = 710, - [2737] = 674, + [2736] = 2736, + [2737] = 2737, [2738] = 2738, [2739] = 2739, [2740] = 2740, @@ -7558,58 +7544,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2742] = 2742, [2743] = 2743, [2744] = 2744, - [2745] = 2745, + [2745] = 940, [2746] = 2746, [2747] = 2747, - [2748] = 2748, - [2749] = 2749, - [2750] = 2750, + [2748] = 474, + [2749] = 949, + [2750] = 374, [2751] = 2751, [2752] = 2752, [2753] = 2753, [2754] = 2754, [2755] = 2755, - [2756] = 465, + [2756] = 2756, [2757] = 2757, [2758] = 2758, [2759] = 2759, - [2760] = 1940, - [2761] = 466, + [2760] = 2760, + [2761] = 705, [2762] = 2762, - [2763] = 2763, - [2764] = 500, - [2765] = 2765, - [2766] = 2766, + [2763] = 907, + [2764] = 2764, + [2765] = 919, + [2766] = 463, [2767] = 2767, - [2768] = 503, - [2769] = 490, - [2770] = 2770, + [2768] = 922, + [2769] = 2769, + [2770] = 923, [2771] = 2771, - [2772] = 2772, + [2772] = 457, [2773] = 2773, [2774] = 2774, [2775] = 2775, [2776] = 2776, - [2777] = 2777, - [2778] = 2778, - [2779] = 2779, + [2777] = 768, + [2778] = 924, + [2779] = 695, [2780] = 2780, [2781] = 2781, - [2782] = 2782, - [2783] = 2783, - [2784] = 491, + [2782] = 2641, + [2783] = 2642, + [2784] = 447, [2785] = 2785, [2786] = 2786, [2787] = 2787, [2788] = 2788, [2789] = 2789, - [2790] = 1980, - [2791] = 484, - [2792] = 486, - [2793] = 489, - [2794] = 493, - [2795] = 497, - [2796] = 485, + [2790] = 963, + [2791] = 2791, + [2792] = 2792, + [2793] = 2793, + [2794] = 2794, + [2795] = 2795, + [2796] = 2796, [2797] = 2797, [2798] = 2798, [2799] = 2799, @@ -7620,2403 +7606,2461 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2804] = 2804, [2805] = 2805, [2806] = 2806, - [2807] = 2807, + [2807] = 455, [2808] = 2808, [2809] = 2809, [2810] = 2810, - [2811] = 2811, + [2811] = 449, [2812] = 2812, [2813] = 2813, [2814] = 2814, - [2815] = 967, - [2816] = 941, - [2817] = 503, + [2815] = 2815, + [2816] = 2816, + [2817] = 2817, [2818] = 2818, - [2819] = 490, - [2820] = 676, - [2821] = 2821, - [2822] = 2541, - [2823] = 2743, - [2824] = 702, - [2825] = 459, - [2826] = 923, - [2827] = 2744, - [2828] = 2828, - [2829] = 2570, - [2830] = 1980, - [2831] = 2745, - [2832] = 2762, - [2833] = 2530, - [2834] = 703, - [2835] = 2540, - [2836] = 886, - [2837] = 961, - [2838] = 931, + [2819] = 2819, + [2820] = 2820, + [2821] = 449, + [2822] = 2822, + [2823] = 2823, + [2824] = 2824, + [2825] = 2825, + [2826] = 2826, + [2827] = 1008, + [2828] = 1917, + [2829] = 2829, + [2830] = 2830, + [2831] = 2831, + [2832] = 2832, + [2833] = 2303, + [2834] = 2834, + [2835] = 2835, + [2836] = 2836, + [2837] = 2837, + [2838] = 2838, [2839] = 2839, [2840] = 2840, - [2841] = 2779, - [2842] = 2530, - [2843] = 899, - [2844] = 2780, - [2845] = 2782, + [2841] = 2841, + [2842] = 2842, + [2843] = 2081, + [2844] = 2844, + [2845] = 2845, [2846] = 2846, - [2847] = 2847, - [2848] = 2848, - [2849] = 2849, - [2850] = 2783, - [2851] = 2786, - [2852] = 2852, - [2853] = 2797, - [2854] = 2798, - [2855] = 2799, - [2856] = 2800, + [2847] = 479, + [2848] = 496, + [2849] = 478, + [2850] = 492, + [2851] = 476, + [2852] = 494, + [2853] = 2853, + [2854] = 2854, + [2855] = 2855, + [2856] = 2856, [2857] = 2857, - [2858] = 2801, - [2859] = 2802, - [2860] = 2803, - [2861] = 2805, - [2862] = 2808, - [2863] = 368, - [2864] = 2809, - [2865] = 2810, + [2858] = 2858, + [2859] = 2859, + [2860] = 2860, + [2861] = 2861, + [2862] = 2862, + [2863] = 679, + [2864] = 2864, + [2865] = 680, [2866] = 2866, [2867] = 2867, - [2868] = 466, - [2869] = 2517, - [2870] = 2526, - [2871] = 2871, - [2872] = 960, - [2873] = 948, - [2874] = 2541, - [2875] = 954, - [2876] = 937, - [2877] = 710, - [2878] = 674, - [2879] = 2879, - [2880] = 2880, - [2881] = 699, - [2882] = 444, - [2883] = 470, - [2884] = 697, - [2885] = 2540, - [2886] = 704, - [2887] = 2887, - [2888] = 958, - [2889] = 2889, - [2890] = 2813, - [2891] = 2891, - [2892] = 389, - [2893] = 2789, - [2894] = 959, - [2895] = 2711, - [2896] = 967, - [2897] = 2570, - [2898] = 699, - [2899] = 930, - [2900] = 465, - [2901] = 2879, - [2902] = 2880, - [2903] = 500, - [2904] = 685, - [2905] = 2905, - [2906] = 692, - [2907] = 2517, - [2908] = 2526, - [2909] = 675, - [2910] = 2887, - [2911] = 2911, - [2912] = 2889, - [2913] = 698, - [2914] = 936, - [2915] = 2812, - [2916] = 2916, - [2917] = 2917, - [2918] = 2918, - [2919] = 2919, - [2920] = 763, - [2921] = 764, - [2922] = 2530, - [2923] = 444, - [2924] = 743, - [2925] = 744, - [2926] = 2857, - [2927] = 2927, + [2868] = 927, + [2869] = 711, + [2870] = 2767, + [2871] = 942, + [2872] = 2769, + [2873] = 2795, + [2874] = 2819, + [2875] = 2875, + [2876] = 923, + [2877] = 956, + [2878] = 455, + [2879] = 2803, + [2880] = 2798, + [2881] = 2881, + [2882] = 2882, + [2883] = 475, + [2884] = 2884, + [2885] = 927, + [2886] = 907, + [2887] = 480, + [2888] = 2797, + [2889] = 374, + [2890] = 2428, + [2891] = 2430, + [2892] = 949, + [2893] = 2893, + [2894] = 2775, + [2895] = 2776, + [2896] = 2780, + [2897] = 2400, + [2898] = 922, + [2899] = 2781, + [2900] = 768, + [2901] = 1008, + [2902] = 711, + [2903] = 2423, + [2904] = 2793, + [2905] = 2794, + [2906] = 2906, + [2907] = 2907, + [2908] = 2908, + [2909] = 378, + [2910] = 2081, + [2911] = 694, + [2912] = 2840, + [2913] = 2913, + [2914] = 2914, + [2915] = 683, + [2916] = 684, + [2917] = 919, + [2918] = 2771, + [2919] = 963, + [2920] = 2920, + [2921] = 2796, + [2922] = 474, + [2923] = 2786, + [2924] = 2924, + [2925] = 2925, + [2926] = 463, + [2927] = 2710, [2928] = 2928, - [2929] = 2905, - [2930] = 888, - [2931] = 724, - [2932] = 936, - [2933] = 2191, - [2934] = 724, - [2935] = 676, - [2936] = 949, - [2937] = 2937, - [2938] = 2846, - [2939] = 2849, - [2940] = 2570, - [2941] = 377, - [2942] = 897, - [2943] = 898, - [2944] = 2944, - [2945] = 2945, - [2946] = 2946, - [2947] = 730, - [2948] = 2948, - [2949] = 389, - [2950] = 2950, - [2951] = 730, - [2952] = 746, - [2953] = 2818, - [2954] = 747, - [2955] = 2955, - [2956] = 2176, - [2957] = 2867, - [2958] = 2540, - [2959] = 2517, - [2960] = 389, - [2961] = 2961, - [2962] = 2839, - [2963] = 2963, - [2964] = 2964, - [2965] = 2526, + [2929] = 2800, + [2930] = 2930, + [2931] = 2931, + [2932] = 2421, + [2933] = 937, + [2934] = 457, + [2935] = 679, + [2936] = 2423, + [2937] = 680, + [2938] = 2411, + [2939] = 924, + [2940] = 940, + [2941] = 2818, + [2942] = 2696, + [2943] = 681, + [2944] = 2875, + [2945] = 2430, + [2946] = 2428, + [2947] = 699, + [2948] = 685, + [2949] = 2949, + [2950] = 2400, + [2951] = 2951, + [2952] = 686, + [2953] = 2925, + [2954] = 2951, + [2955] = 705, + [2956] = 2799, + [2957] = 488, + [2958] = 2411, + [2959] = 2801, + [2960] = 2884, + [2961] = 897, + [2962] = 2962, + [2963] = 2802, + [2964] = 695, + [2965] = 2965, [2966] = 2966, - [2967] = 2967, - [2968] = 930, - [2969] = 2969, + [2967] = 2421, + [2968] = 449, + [2969] = 898, [2970] = 2970, - [2971] = 2971, + [2971] = 2928, [2972] = 2972, [2973] = 2973, [2974] = 2974, [2975] = 2975, [2976] = 2976, - [2977] = 720, - [2978] = 886, - [2979] = 721, - [2980] = 937, - [2981] = 722, - [2982] = 723, - [2983] = 941, - [2984] = 503, + [2977] = 711, + [2978] = 2978, + [2979] = 2979, + [2980] = 2980, + [2981] = 2981, + [2982] = 772, + [2983] = 833, + [2984] = 2140, [2985] = 2985, - [2986] = 2986, - [2987] = 735, - [2988] = 2988, - [2989] = 948, - [2990] = 2990, - [2991] = 954, - [2992] = 2992, - [2993] = 958, - [2994] = 959, - [2995] = 490, - [2996] = 726, - [2997] = 727, - [2998] = 728, - [2999] = 389, - [3000] = 763, - [3001] = 967, - [3002] = 764, - [3003] = 3003, - [3004] = 398, - [3005] = 3005, - [3006] = 736, - [3007] = 960, - [3008] = 737, - [3009] = 2840, - [3010] = 739, - [3011] = 740, - [3012] = 741, - [3013] = 742, - [3014] = 961, - [3015] = 931, - [3016] = 3016, - [3017] = 916, - [3018] = 949, - [3019] = 897, - [3020] = 695, - [3021] = 943, - [3022] = 898, - [3023] = 694, - [3024] = 3024, - [3025] = 899, + [2986] = 2430, + [2987] = 930, + [2988] = 931, + [2989] = 896, + [2990] = 897, + [2991] = 2991, + [2992] = 841, + [2993] = 694, + [2994] = 2930, + [2995] = 399, + [2996] = 846, + [2997] = 768, + [2998] = 910, + [2999] = 940, + [3000] = 2428, + [3001] = 949, + [3002] = 2411, + [3003] = 876, + [3004] = 671, + [3005] = 878, + [3006] = 954, + [3007] = 2141, + [3008] = 693, + [3009] = 876, + [3010] = 907, + [3011] = 3011, + [3012] = 878, + [3013] = 919, + [3014] = 922, + [3015] = 488, + [3016] = 923, + [3017] = 3017, + [3018] = 475, + [3019] = 480, + [3020] = 2924, + [3021] = 2400, + [3022] = 881, + [3023] = 883, + [3024] = 528, + [3025] = 3025, [3026] = 3026, - [3027] = 887, + [3027] = 770, [3028] = 3028, - [3029] = 2891, - [3030] = 951, - [3031] = 3031, - [3032] = 735, - [3033] = 3033, - [3034] = 916, - [3035] = 951, - [3036] = 3036, + [3029] = 3029, + [3030] = 3030, + [3031] = 898, + [3032] = 3032, + [3033] = 822, + [3034] = 3034, + [3035] = 825, + [3036] = 826, [3037] = 3037, - [3038] = 924, - [3039] = 407, - [3040] = 3040, - [3041] = 3041, + [3038] = 829, + [3039] = 378, + [3040] = 881, + [3041] = 883, [3042] = 3042, [3043] = 3043, - [3044] = 3044, - [3045] = 685, - [3046] = 2541, + [3044] = 403, + [3045] = 942, + [3046] = 378, [3047] = 3047, [3048] = 3048, - [3049] = 746, - [3050] = 923, - [3051] = 924, - [3052] = 926, - [3053] = 3053, - [3054] = 3054, - [3055] = 500, - [3056] = 695, - [3057] = 3057, - [3058] = 926, - [3059] = 719, - [3060] = 2174, - [3061] = 943, - [3062] = 694, - [3063] = 743, - [3064] = 699, - [3065] = 540, - [3066] = 744, - [3067] = 747, - [3068] = 887, - [3069] = 3069, - [3070] = 2173, - [3071] = 3071, - [3072] = 719, - [3073] = 3073, - [3074] = 738, - [3075] = 408, - [3076] = 3076, + [3049] = 3049, + [3050] = 924, + [3051] = 3051, + [3052] = 937, + [3053] = 2162, + [3054] = 699, + [3055] = 3055, + [3056] = 3056, + [3057] = 1008, + [3058] = 3058, + [3059] = 717, + [3060] = 3060, + [3061] = 718, + [3062] = 927, + [3063] = 963, + [3064] = 943, + [3065] = 944, + [3066] = 837, + [3067] = 838, + [3068] = 943, + [3069] = 944, + [3070] = 839, + [3071] = 2421, + [3072] = 3072, + [3073] = 2881, + [3074] = 2344, + [3075] = 2949, + [3076] = 378, [3077] = 3077, - [3078] = 916, - [3079] = 3079, - [3080] = 389, - [3081] = 2955, - [3082] = 400, + [3078] = 2350, + [3079] = 2962, + [3080] = 3080, + [3081] = 3081, + [3082] = 793, [3083] = 3083, - [3084] = 724, - [3085] = 2970, - [3086] = 3037, - [3087] = 3087, - [3088] = 3088, - [3089] = 887, - [3090] = 398, - [3091] = 743, - [3092] = 2967, - [3093] = 3093, - [3094] = 936, - [3095] = 3095, - [3096] = 3096, - [3097] = 3036, - [3098] = 744, - [3099] = 398, - [3100] = 2986, - [3101] = 726, - [3102] = 3102, - [3103] = 727, - [3104] = 691, - [3105] = 3105, - [3106] = 3076, - [3107] = 746, - [3108] = 377, - [3109] = 3109, - [3110] = 736, - [3111] = 737, - [3112] = 738, - [3113] = 3113, + [3084] = 3084, + [3085] = 3085, + [3086] = 3086, + [3087] = 847, + [3088] = 449, + [3089] = 848, + [3090] = 849, + [3091] = 864, + [3092] = 793, + [3093] = 867, + [3094] = 2423, + [3095] = 869, + [3096] = 871, + [3097] = 3097, + [3098] = 3098, + [3099] = 717, + [3100] = 3100, + [3101] = 671, + [3102] = 718, + [3103] = 956, + [3104] = 833, + [3105] = 954, + [3106] = 693, + [3107] = 2931, + [3108] = 930, + [3109] = 931, + [3110] = 896, + [3111] = 3111, + [3112] = 2138, + [3113] = 841, [3114] = 3114, [3115] = 3115, - [3116] = 3116, + [3116] = 395, [3117] = 3117, [3118] = 3118, - [3119] = 377, + [3119] = 3119, [3120] = 3120, - [3121] = 739, - [3122] = 3003, - [3123] = 3005, - [3124] = 3016, - [3125] = 740, - [3126] = 3073, - [3127] = 407, + [3121] = 846, + [3122] = 910, + [3123] = 2906, + [3124] = 770, + [3125] = 3125, + [3126] = 2913, + [3127] = 3127, [3128] = 3128, [3129] = 3129, - [3130] = 728, - [3131] = 3131, - [3132] = 741, - [3133] = 951, + [3130] = 697, + [3131] = 847, + [3132] = 3011, + [3133] = 3128, [3134] = 3134, - [3135] = 2173, - [3136] = 3136, - [3137] = 3137, - [3138] = 742, - [3139] = 3139, - [3140] = 3140, - [3141] = 747, + [3135] = 395, + [3136] = 717, + [3137] = 718, + [3138] = 3049, + [3139] = 3072, + [3140] = 3051, + [3141] = 881, [3142] = 3142, - [3143] = 930, + [3143] = 3143, [3144] = 3144, - [3145] = 3145, - [3146] = 3146, - [3147] = 2174, - [3148] = 949, - [3149] = 407, - [3150] = 2988, + [3145] = 846, + [3146] = 883, + [3147] = 848, + [3148] = 3148, + [3149] = 3149, + [3150] = 849, [3151] = 3151, - [3152] = 2176, - [3153] = 924, - [3154] = 409, - [3155] = 926, - [3156] = 730, - [3157] = 3157, - [3158] = 3158, - [3159] = 3076, - [3160] = 410, - [3161] = 3161, - [3162] = 897, - [3163] = 719, - [3164] = 398, - [3165] = 695, - [3166] = 2971, - [3167] = 3167, - [3168] = 898, - [3169] = 3169, - [3170] = 2972, - [3171] = 3077, - [3172] = 3083, + [3152] = 403, + [3153] = 3153, + [3154] = 864, + [3155] = 3155, + [3156] = 2376, + [3157] = 2388, + [3158] = 395, + [3159] = 867, + [3160] = 869, + [3161] = 399, + [3162] = 403, + [3163] = 930, + [3164] = 3086, + [3165] = 3165, + [3166] = 3166, + [3167] = 956, + [3168] = 910, + [3169] = 871, + [3170] = 2374, + [3171] = 2375, + [3172] = 3172, [3173] = 3173, - [3174] = 3088, - [3175] = 407, - [3176] = 2973, - [3177] = 720, - [3178] = 389, - [3179] = 3179, - [3180] = 943, - [3181] = 2974, - [3182] = 721, - [3183] = 3040, - [3184] = 3069, - [3185] = 3071, - [3186] = 2944, - [3187] = 3028, - [3188] = 2919, - [3189] = 2950, - [3190] = 2963, - [3191] = 3044, - [3192] = 3047, - [3193] = 3057, - [3194] = 2937, - [3195] = 722, - [3196] = 2975, - [3197] = 735, - [3198] = 3198, - [3199] = 723, - [3200] = 377, - [3201] = 888, - [3202] = 3198, - [3203] = 694, - [3204] = 2191, - [3205] = 763, - [3206] = 764, - [3207] = 3207, - [3208] = 3208, - [3209] = 2967, - [3210] = 2985, + [3174] = 3174, + [3175] = 3175, + [3176] = 3176, + [3177] = 837, + [3178] = 3100, + [3179] = 3111, + [3180] = 2373, + [3181] = 2407, + [3182] = 3182, + [3183] = 2409, + [3184] = 838, + [3185] = 403, + [3186] = 3186, + [3187] = 3086, + [3188] = 839, + [3189] = 2138, + [3190] = 937, + [3191] = 942, + [3192] = 770, + [3193] = 3193, + [3194] = 2384, + [3195] = 833, + [3196] = 3196, + [3197] = 2385, + [3198] = 898, + [3199] = 943, + [3200] = 841, + [3201] = 2141, + [3202] = 944, + [3203] = 2974, + [3204] = 2979, + [3205] = 671, + [3206] = 931, + [3207] = 2386, + [3208] = 2392, + [3209] = 2396, + [3210] = 3210, [3211] = 3211, - [3212] = 899, - [3213] = 923, - [3214] = 3040, - [3215] = 3215, - [3216] = 3216, - [3217] = 3217, - [3218] = 3218, - [3219] = 3219, - [3220] = 741, - [3221] = 742, + [3212] = 378, + [3213] = 896, + [3214] = 3214, + [3215] = 954, + [3216] = 772, + [3217] = 897, + [3218] = 399, + [3219] = 2140, + [3220] = 3048, + [3221] = 2162, [3222] = 3222, - [3223] = 3223, + [3223] = 829, [3224] = 3224, - [3225] = 3225, - [3226] = 728, - [3227] = 3227, - [3228] = 3228, - [3229] = 3109, - [3230] = 3230, - [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 3234, - [3235] = 408, - [3236] = 409, - [3237] = 410, - [3238] = 408, - [3239] = 3239, - [3240] = 409, - [3241] = 3241, - [3242] = 3242, - [3243] = 3243, - [3244] = 3244, + [3225] = 3114, + [3226] = 410, + [3227] = 3117, + [3228] = 793, + [3229] = 3222, + [3230] = 3028, + [3231] = 693, + [3232] = 2975, + [3233] = 2976, + [3234] = 2978, + [3235] = 3025, + [3236] = 3032, + [3237] = 3034, + [3238] = 3055, + [3239] = 2981, + [3240] = 3120, + [3241] = 3043, + [3242] = 3125, + [3243] = 3118, + [3244] = 399, [3245] = 3245, - [3246] = 3246, - [3247] = 3247, - [3248] = 92, + [3246] = 3214, + [3247] = 3056, + [3248] = 395, [3249] = 3249, - [3250] = 3250, + [3250] = 876, [3251] = 3251, - [3252] = 3087, - [3253] = 93, - [3254] = 3254, - [3255] = 3255, - [3256] = 3256, - [3257] = 3257, - [3258] = 3169, - [3259] = 3259, + [3252] = 822, + [3253] = 878, + [3254] = 3119, + [3255] = 3251, + [3256] = 3214, + [3257] = 378, + [3258] = 3127, + [3259] = 404, [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 3263, - [3264] = 410, - [3265] = 3265, - [3266] = 3102, - [3267] = 92, - [3268] = 336, - [3269] = 3269, - [3270] = 93, - [3271] = 726, - [3272] = 3272, - [3273] = 407, - [3274] = 727, - [3275] = 736, - [3276] = 92, - [3277] = 400, - [3278] = 3146, - [3279] = 737, - [3280] = 3280, - [3281] = 3113, - [3282] = 3114, - [3283] = 3115, - [3284] = 3284, - [3285] = 738, - [3286] = 398, - [3287] = 3161, - [3288] = 3118, + [3261] = 406, + [3262] = 825, + [3263] = 408, + [3264] = 826, + [3265] = 2972, + [3266] = 3196, + [3267] = 403, + [3268] = 839, + [3269] = 829, + [3270] = 528, + [3271] = 3271, + [3272] = 3129, + [3273] = 3245, + [3274] = 3274, + [3275] = 3275, + [3276] = 93, + [3277] = 849, + [3278] = 864, + [3279] = 867, + [3280] = 869, + [3281] = 871, + [3282] = 3282, + [3283] = 3283, + [3284] = 93, + [3285] = 3285, + [3286] = 3173, + [3287] = 3211, + [3288] = 3288, [3289] = 3289, - [3290] = 888, - [3291] = 3291, - [3292] = 400, - [3293] = 333, + [3290] = 3174, + [3291] = 3210, + [3292] = 3292, + [3293] = 3028, [3294] = 3294, [3295] = 3295, [3296] = 3296, [3297] = 3297, - [3298] = 93, - [3299] = 3299, - [3300] = 3300, - [3301] = 3167, - [3302] = 3136, - [3303] = 3207, - [3304] = 739, - [3305] = 740, - [3306] = 540, - [3307] = 3307, - [3308] = 3308, - [3309] = 3309, - [3310] = 2967, - [3311] = 3311, - [3312] = 3145, + [3298] = 3298, + [3299] = 2975, + [3300] = 2976, + [3301] = 2978, + [3302] = 3025, + [3303] = 3032, + [3304] = 3034, + [3305] = 3055, + [3306] = 3306, + [3307] = 2981, + [3308] = 3120, + [3309] = 3043, + [3310] = 3125, + [3311] = 3086, + [3312] = 3312, [3313] = 3313, - [3314] = 3314, + [3314] = 403, [3315] = 3315, - [3316] = 3316, - [3317] = 3069, - [3318] = 3071, - [3319] = 2944, - [3320] = 3028, - [3321] = 2919, - [3322] = 2950, - [3323] = 2963, - [3324] = 3044, - [3325] = 3047, - [3326] = 3057, - [3327] = 2937, - [3328] = 3328, + [3316] = 378, + [3317] = 3176, + [3318] = 3318, + [3319] = 3319, + [3320] = 404, + [3321] = 3321, + [3322] = 3322, + [3323] = 3143, + [3324] = 406, + [3325] = 3325, + [3326] = 3326, + [3327] = 3193, + [3328] = 3249, [3329] = 3329, [3330] = 3330, - [3331] = 389, + [3331] = 3331, [3332] = 3332, [3333] = 3333, - [3334] = 3079, - [3335] = 400, - [3336] = 408, - [3337] = 409, - [3338] = 410, - [3339] = 3216, - [3340] = 3340, - [3341] = 3341, - [3342] = 398, - [3343] = 720, - [3344] = 378, - [3345] = 721, - [3346] = 3076, - [3347] = 722, - [3348] = 92, - [3349] = 3349, - [3350] = 93, - [3351] = 723, + [3334] = 3334, + [3335] = 92, + [3336] = 3336, + [3337] = 3175, + [3338] = 3338, + [3339] = 3339, + [3340] = 822, + [3341] = 408, + [3342] = 3342, + [3343] = 3343, + [3344] = 3344, + [3345] = 410, + [3346] = 3346, + [3347] = 399, + [3348] = 3348, + [3349] = 772, + [3350] = 3350, + [3351] = 3351, [3352] = 3352, - [3353] = 407, - [3354] = 3354, + [3353] = 3353, + [3354] = 3312, [3355] = 3355, - [3356] = 691, - [3357] = 3357, - [3358] = 98, - [3359] = 3355, - [3360] = 99, - [3361] = 398, - [3362] = 92, - [3363] = 3363, - [3364] = 92, + [3356] = 404, + [3357] = 410, + [3358] = 410, + [3359] = 92, + [3360] = 3360, + [3361] = 3361, + [3362] = 93, + [3363] = 406, + [3364] = 3364, [3365] = 3365, - [3366] = 446, - [3367] = 3367, - [3368] = 98, - [3369] = 399, - [3370] = 98, - [3371] = 3371, - [3372] = 343, - [3373] = 99, + [3366] = 3366, + [3367] = 92, + [3368] = 3182, + [3369] = 3144, + [3370] = 390, + [3371] = 408, + [3372] = 3172, + [3373] = 3373, [3374] = 3374, - [3375] = 377, - [3376] = 360, - [3377] = 340, - [3378] = 338, - [3379] = 341, - [3380] = 353, - [3381] = 3355, - [3382] = 342, - [3383] = 349, + [3375] = 404, + [3376] = 406, + [3377] = 3377, + [3378] = 3378, + [3379] = 408, + [3380] = 3380, + [3381] = 3214, + [3382] = 825, + [3383] = 92, [3384] = 3384, - [3385] = 407, - [3386] = 412, - [3387] = 403, - [3388] = 99, - [3389] = 411, - [3390] = 93, + [3385] = 3385, + [3386] = 3386, + [3387] = 3387, + [3388] = 3388, + [3389] = 3224, + [3390] = 826, [3391] = 3391, - [3392] = 92, - [3393] = 3355, + [3392] = 333, + [3393] = 3393, [3394] = 3394, - [3395] = 3076, - [3396] = 3355, - [3397] = 93, - [3398] = 99, - [3399] = 98, - [3400] = 93, - [3401] = 3401, + [3395] = 399, + [3396] = 93, + [3397] = 837, + [3398] = 838, + [3399] = 3399, + [3400] = 847, + [3401] = 848, [3402] = 3402, - [3403] = 3402, - [3404] = 3402, + [3403] = 3403, + [3404] = 3404, [3405] = 3405, [3406] = 3406, - [3407] = 105, - [3408] = 3402, - [3409] = 3409, - [3410] = 3401, - [3411] = 3406, - [3412] = 99, - [3413] = 442, - [3414] = 106, - [3415] = 3402, - [3416] = 444, - [3417] = 3417, - [3418] = 2444, - [3419] = 99, - [3420] = 3405, - [3421] = 3406, - [3422] = 3402, - [3423] = 442, - [3424] = 108, - [3425] = 105, - [3426] = 442, - [3427] = 408, - [3428] = 409, - [3429] = 106, - [3430] = 3405, - [3431] = 3406, - [3432] = 410, - [3433] = 3402, - [3434] = 400, - [3435] = 369, - [3436] = 3405, - [3437] = 3406, - [3438] = 3402, - [3439] = 444, - [3440] = 98, - [3441] = 3402, - [3442] = 3405, - [3443] = 3406, - [3444] = 3402, - [3445] = 98, - [3446] = 3405, - [3447] = 3406, - [3448] = 106, - [3449] = 3449, - [3450] = 98, - [3451] = 3405, - [3452] = 105, - [3453] = 3406, - [3454] = 3402, - [3455] = 3405, - [3456] = 3357, + [3407] = 403, + [3408] = 95, + [3409] = 94, + [3410] = 92, + [3411] = 93, + [3412] = 399, + [3413] = 92, + [3414] = 93, + [3415] = 409, + [3416] = 95, + [3417] = 94, + [3418] = 92, + [3419] = 411, + [3420] = 93, + [3421] = 3421, + [3422] = 402, + [3423] = 395, + [3424] = 95, + [3425] = 3425, + [3426] = 335, + [3427] = 697, + [3428] = 94, + [3429] = 3429, + [3430] = 3430, + [3431] = 3431, + [3432] = 3432, + [3433] = 3433, + [3434] = 3425, + [3435] = 3435, + [3436] = 3436, + [3437] = 3425, + [3438] = 3425, + [3439] = 3425, + [3440] = 94, + [3441] = 398, + [3442] = 3214, + [3443] = 95, + [3444] = 3444, + [3445] = 436, + [3446] = 447, + [3447] = 95, + [3448] = 105, + [3449] = 369, + [3450] = 404, + [3451] = 406, + [3452] = 94, + [3453] = 3453, + [3454] = 3454, + [3455] = 3455, + [3456] = 3456, [3457] = 3457, - [3458] = 3406, - [3459] = 3402, - [3460] = 99, - [3461] = 3457, - [3462] = 3449, - [3463] = 3405, - [3464] = 3405, - [3465] = 3406, - [3466] = 3405, - [3467] = 3402, - [3468] = 3405, - [3469] = 3406, - [3470] = 444, - [3471] = 3406, - [3472] = 3405, - [3473] = 3406, - [3474] = 3405, - [3475] = 3406, - [3476] = 3402, - [3477] = 3402, - [3478] = 3409, - [3479] = 3402, - [3480] = 444, - [3481] = 108, - [3482] = 442, - [3483] = 3402, - [3484] = 105, - [3485] = 106, - [3486] = 3402, - [3487] = 3487, - [3488] = 108, - [3489] = 108, - [3490] = 3402, - [3491] = 105, - [3492] = 106, - [3493] = 489, - [3494] = 3494, - [3495] = 3495, - [3496] = 485, - [3497] = 106, - [3498] = 3494, - [3499] = 3495, - [3500] = 459, - [3501] = 3487, - [3502] = 3502, - [3503] = 3494, - [3504] = 3495, - [3505] = 343, - [3506] = 3494, - [3507] = 3495, - [3508] = 342, - [3509] = 3494, - [3510] = 3495, - [3511] = 349, - [3512] = 3494, - [3513] = 3494, - [3514] = 442, - [3515] = 3494, - [3516] = 3494, - [3517] = 3494, - [3518] = 92, - [3519] = 3494, - [3520] = 3494, - [3521] = 3494, - [3522] = 3494, - [3523] = 3494, - [3524] = 3494, - [3525] = 3525, - [3526] = 1841, - [3527] = 3495, - [3528] = 340, - [3529] = 3502, - [3530] = 3495, - [3531] = 3495, - [3532] = 3532, - [3533] = 3502, - [3534] = 459, - [3535] = 3502, - [3536] = 470, - [3537] = 3525, - [3538] = 108, - [3539] = 3525, - [3540] = 3540, - [3541] = 105, - [3542] = 108, - [3543] = 3495, - [3544] = 1841, - [3545] = 3495, - [3546] = 106, - [3547] = 3540, - [3548] = 470, - [3549] = 105, - [3550] = 3494, - [3551] = 3495, - [3552] = 3495, - [3553] = 470, - [3554] = 444, - [3555] = 3555, - [3556] = 3525, - [3557] = 3540, - [3558] = 3540, - [3559] = 442, - [3560] = 341, - [3561] = 108, - [3562] = 497, - [3563] = 459, - [3564] = 93, - [3565] = 470, - [3566] = 3494, - [3567] = 3495, - [3568] = 360, - [3569] = 459, - [3570] = 3570, - [3571] = 444, - [3572] = 333, - [3573] = 3573, - [3574] = 3573, - [3575] = 459, - [3576] = 3573, - [3577] = 645, - [3578] = 503, - [3579] = 500, - [3580] = 3573, - [3581] = 3581, - [3582] = 3582, - [3583] = 500, - [3584] = 490, - [3585] = 503, - [3586] = 3573, - [3587] = 3573, - [3588] = 490, - [3589] = 99, - [3590] = 470, - [3591] = 3591, - [3592] = 338, - [3593] = 353, - [3594] = 3573, - [3595] = 470, - [3596] = 490, - [3597] = 500, - [3598] = 645, - [3599] = 3599, - [3600] = 642, - [3601] = 98, - [3602] = 3573, - [3603] = 642, - [3604] = 459, - [3605] = 3573, - [3606] = 645, - [3607] = 3573, - [3608] = 642, - [3609] = 93, - [3610] = 336, - [3611] = 92, - [3612] = 3573, - [3613] = 3613, - [3614] = 503, - [3615] = 3573, - [3616] = 500, - [3617] = 503, - [3618] = 490, - [3619] = 3573, - [3620] = 3581, - [3621] = 333, - [3622] = 444, + [3458] = 408, + [3459] = 105, + [3460] = 95, + [3461] = 3453, + [3462] = 3454, + [3463] = 447, + [3464] = 449, + [3465] = 106, + [3466] = 344, + [3467] = 107, + [3468] = 105, + [3469] = 3469, + [3470] = 338, + [3471] = 345, + [3472] = 3472, + [3473] = 3473, + [3474] = 3474, + [3475] = 3455, + [3476] = 447, + [3477] = 3456, + [3478] = 449, + [3479] = 3472, + [3480] = 3473, + [3481] = 2494, + [3482] = 449, + [3483] = 3453, + [3484] = 3454, + [3485] = 3457, + [3486] = 3432, + [3487] = 106, + [3488] = 347, + [3489] = 348, + [3490] = 3457, + [3491] = 349, + [3492] = 447, + [3493] = 3453, + [3494] = 3454, + [3495] = 3457, + [3496] = 3453, + [3497] = 3454, + [3498] = 107, + [3499] = 3453, + [3500] = 3454, + [3501] = 3457, + [3502] = 3453, + [3503] = 3454, + [3504] = 3457, + [3505] = 3453, + [3506] = 3454, + [3507] = 3457, + [3508] = 3453, + [3509] = 3454, + [3510] = 3457, + [3511] = 3453, + [3512] = 3454, + [3513] = 3457, + [3514] = 3453, + [3515] = 3454, + [3516] = 3457, + [3517] = 3453, + [3518] = 3454, + [3519] = 3457, + [3520] = 3453, + [3521] = 3454, + [3522] = 3457, + [3523] = 3453, + [3524] = 3454, + [3525] = 3457, + [3526] = 3457, + [3527] = 3457, + [3528] = 3457, + [3529] = 3457, + [3530] = 3457, + [3531] = 3457, + [3532] = 107, + [3533] = 94, + [3534] = 410, + [3535] = 341, + [3536] = 342, + [3537] = 95, + [3538] = 106, + [3539] = 107, + [3540] = 94, + [3541] = 106, + [3542] = 105, + [3543] = 449, + [3544] = 3457, + [3545] = 93, + [3546] = 3546, + [3547] = 463, + [3548] = 474, + [3549] = 3549, + [3550] = 3550, + [3551] = 105, + [3552] = 447, + [3553] = 463, + [3554] = 3549, + [3555] = 3550, + [3556] = 478, + [3557] = 3549, + [3558] = 3550, + [3559] = 449, + [3560] = 3560, + [3561] = 3561, + [3562] = 3562, + [3563] = 476, + [3564] = 3546, + [3565] = 3560, + [3566] = 494, + [3567] = 1828, + [3568] = 3561, + [3569] = 3549, + [3570] = 3550, + [3571] = 474, + [3572] = 3560, + [3573] = 3561, + [3574] = 3574, + [3575] = 106, + [3576] = 3546, + [3577] = 463, + [3578] = 3549, + [3579] = 105, + [3580] = 107, + [3581] = 3546, + [3582] = 3549, + [3583] = 106, + [3584] = 107, + [3585] = 107, + [3586] = 3549, + [3587] = 3546, + [3588] = 3549, + [3589] = 447, + [3590] = 3546, + [3591] = 3549, + [3592] = 3546, + [3593] = 3546, + [3594] = 3549, + [3595] = 3546, + [3596] = 3549, + [3597] = 3546, + [3598] = 1828, + [3599] = 3546, + [3600] = 449, + [3601] = 3546, + [3602] = 3546, + [3603] = 3546, + [3604] = 3560, + [3605] = 3546, + [3606] = 3546, + [3607] = 3561, + [3608] = 3546, + [3609] = 105, + [3610] = 3549, + [3611] = 474, + [3612] = 3549, + [3613] = 335, + [3614] = 92, + [3615] = 463, + [3616] = 3616, + [3617] = 3469, + [3618] = 474, + [3619] = 106, + [3620] = 3546, + [3621] = 338, + [3622] = 474, [3623] = 3623, - [3624] = 353, - [3625] = 704, - [3626] = 503, - [3627] = 3627, - [3628] = 3628, + [3624] = 475, + [3625] = 543, + [3626] = 3626, + [3627] = 480, + [3628] = 3626, [3629] = 3629, - [3630] = 442, - [3631] = 444, - [3632] = 489, - [3633] = 3633, - [3634] = 692, - [3635] = 675, - [3636] = 698, - [3637] = 442, - [3638] = 491, - [3639] = 645, - [3640] = 338, - [3641] = 3641, - [3642] = 3642, - [3643] = 3643, - [3644] = 98, - [3645] = 490, - [3646] = 3646, - [3647] = 333, - [3648] = 3648, - [3649] = 490, - [3650] = 3646, - [3651] = 3641, - [3652] = 106, - [3653] = 333, - [3654] = 3654, - [3655] = 485, - [3656] = 3646, - [3657] = 3648, - [3658] = 3627, - [3659] = 3659, - [3660] = 485, - [3661] = 465, - [3662] = 3662, - [3663] = 466, - [3664] = 493, - [3665] = 3646, - [3666] = 3628, - [3667] = 486, - [3668] = 493, - [3669] = 486, - [3670] = 3646, - [3671] = 3671, - [3672] = 3555, - [3673] = 645, - [3674] = 3674, - [3675] = 3646, - [3676] = 1830, - [3677] = 336, - [3678] = 444, - [3679] = 444, - [3680] = 645, - [3681] = 442, - [3682] = 497, - [3683] = 503, - [3684] = 2521, - [3685] = 3646, + [3630] = 3626, + [3631] = 463, + [3632] = 3632, + [3633] = 474, + [3634] = 3626, + [3635] = 488, + [3636] = 3626, + [3637] = 3626, + [3638] = 463, + [3639] = 3623, + [3640] = 543, + [3641] = 3626, + [3642] = 544, + [3643] = 475, + [3644] = 3626, + [3645] = 488, + [3646] = 3626, + [3647] = 3647, + [3648] = 347, + [3649] = 344, + [3650] = 3626, + [3651] = 348, + [3652] = 544, + [3653] = 92, + [3654] = 3626, + [3655] = 475, + [3656] = 488, + [3657] = 93, + [3658] = 543, + [3659] = 95, + [3660] = 544, + [3661] = 475, + [3662] = 94, + [3663] = 480, + [3664] = 335, + [3665] = 341, + [3666] = 342, + [3667] = 349, + [3668] = 3626, + [3669] = 480, + [3670] = 488, + [3671] = 3626, + [3672] = 345, + [3673] = 3673, + [3674] = 480, + [3675] = 3675, + [3676] = 447, + [3677] = 3677, + [3678] = 3678, + [3679] = 496, + [3680] = 494, + [3681] = 3681, + [3682] = 544, + [3683] = 3683, + [3684] = 3684, + [3685] = 3685, [3686] = 3686, - [3687] = 642, + [3687] = 488, [3688] = 3688, - [3689] = 3689, - [3690] = 493, - [3691] = 3633, - [3692] = 2549, - [3693] = 642, - [3694] = 500, - [3695] = 3671, - [3696] = 3613, - [3697] = 3646, - [3698] = 3643, - [3699] = 484, - [3700] = 442, - [3701] = 3701, - [3702] = 3646, - [3703] = 486, - [3704] = 497, - [3705] = 500, - [3706] = 3706, - [3707] = 3581, - [3708] = 3674, - [3709] = 3646, - [3710] = 3487, - [3711] = 2539, - [3712] = 3591, - [3713] = 3706, - [3714] = 3714, - [3715] = 3715, - [3716] = 3654, - [3717] = 108, - [3718] = 484, - [3719] = 642, - [3720] = 3671, - [3721] = 3659, - [3722] = 3671, - [3723] = 99, - [3724] = 3688, - [3725] = 3686, - [3726] = 498, - [3727] = 3642, - [3728] = 3646, - [3729] = 3629, - [3730] = 105, - [3731] = 3731, - [3732] = 3732, - [3733] = 3733, - [3734] = 3734, - [3735] = 3735, + [3689] = 457, + [3690] = 3690, + [3691] = 543, + [3692] = 3574, + [3693] = 3632, + [3694] = 475, + [3695] = 449, + [3696] = 544, + [3697] = 3697, + [3698] = 333, + [3699] = 480, + [3700] = 342, + [3701] = 497, + [3702] = 496, + [3703] = 94, + [3704] = 3704, + [3705] = 3705, + [3706] = 3469, + [3707] = 3688, + [3708] = 455, + [3709] = 2608, + [3710] = 3710, + [3711] = 335, + [3712] = 3683, + [3713] = 3713, + [3714] = 492, + [3715] = 496, + [3716] = 478, + [3717] = 492, + [3718] = 476, + [3719] = 3675, + [3720] = 494, + [3721] = 543, + [3722] = 2591, + [3723] = 447, + [3724] = 3629, + [3725] = 485, + [3726] = 447, + [3727] = 2575, + [3728] = 3728, + [3729] = 3713, + [3730] = 3675, + [3731] = 3623, + [3732] = 3685, + [3733] = 3686, + [3734] = 3675, + [3735] = 3697, [3736] = 3736, - [3737] = 2597, - [3738] = 2598, - [3739] = 2990, - [3740] = 2992, - [3741] = 444, - [3742] = 444, - [3743] = 3731, - [3744] = 3744, - [3745] = 3745, - [3746] = 442, - [3747] = 3747, - [3748] = 3748, - [3749] = 3749, - [3750] = 3750, - [3751] = 3751, - [3752] = 3752, - [3753] = 3753, - [3754] = 3754, - [3755] = 338, - [3756] = 3714, - [3757] = 3715, - [3758] = 353, - [3759] = 459, - [3760] = 3752, - [3761] = 3761, - [3762] = 3762, - [3763] = 3763, - [3764] = 3764, - [3765] = 444, - [3766] = 3751, - [3767] = 3767, - [3768] = 3768, - [3769] = 3769, - [3770] = 1446, - [3771] = 2785, - [3772] = 2785, - [3773] = 2538, - [3774] = 3774, - [3775] = 3775, - [3776] = 489, - [3777] = 497, - [3778] = 338, - [3779] = 485, - [3780] = 704, - [3781] = 3747, - [3782] = 3748, - [3783] = 3749, - [3784] = 3784, - [3785] = 3752, + [3737] = 3737, + [3738] = 3684, + [3739] = 3690, + [3740] = 3740, + [3741] = 3741, + [3742] = 3742, + [3743] = 3743, + [3744] = 107, + [3745] = 475, + [3746] = 3741, + [3747] = 3675, + [3748] = 695, + [3749] = 3742, + [3750] = 335, + [3751] = 679, + [3752] = 680, + [3753] = 681, + [3754] = 95, + [3755] = 479, + [3756] = 3675, + [3757] = 1831, + [3758] = 3675, + [3759] = 488, + [3760] = 3675, + [3761] = 3737, + [3762] = 3736, + [3763] = 333, + [3764] = 3675, + [3765] = 476, + [3766] = 3675, + [3767] = 341, + [3768] = 479, + [3769] = 447, + [3770] = 449, + [3771] = 106, + [3772] = 105, + [3773] = 3743, + [3774] = 544, + [3775] = 480, + [3776] = 449, + [3777] = 492, + [3778] = 543, + [3779] = 3683, + [3780] = 3683, + [3781] = 3675, + [3782] = 3677, + [3783] = 449, + [3784] = 3681, + [3785] = 3785, [3786] = 3786, - [3787] = 3787, - [3788] = 3788, + [3787] = 474, + [3788] = 695, [3789] = 3789, - [3790] = 3790, - [3791] = 343, + [3790] = 3704, + [3791] = 3705, [3792] = 3792, - [3793] = 470, + [3793] = 3793, [3794] = 3794, - [3795] = 360, - [3796] = 340, - [3797] = 353, - [3798] = 341, - [3799] = 342, - [3800] = 349, - [3801] = 459, - [3802] = 3744, + [3795] = 3795, + [3796] = 3796, + [3797] = 3785, + [3798] = 3798, + [3799] = 3799, + [3800] = 463, + [3801] = 447, + [3802] = 3802, [3803] = 3803, - [3804] = 3745, - [3805] = 3748, - [3806] = 3749, - [3807] = 692, - [3808] = 675, - [3809] = 698, - [3810] = 470, - [3811] = 3750, - [3812] = 334, - [3813] = 459, - [3814] = 3814, - [3815] = 3786, - [3816] = 3816, - [3817] = 1940, - [3818] = 3818, - [3819] = 3747, + [3804] = 3804, + [3805] = 3805, + [3806] = 447, + [3807] = 3807, + [3808] = 3808, + [3809] = 3809, + [3810] = 3810, + [3811] = 3811, + [3812] = 449, + [3813] = 3813, + [3814] = 679, + [3815] = 680, + [3816] = 681, + [3817] = 463, + [3818] = 3808, + [3819] = 3819, [3820] = 3820, - [3821] = 3748, - [3822] = 3749, - [3823] = 3752, - [3824] = 3824, - [3825] = 3747, - [3826] = 3748, - [3827] = 3749, - [3828] = 3752, - [3829] = 3747, - [3830] = 3748, - [3831] = 3749, - [3832] = 3752, - [3833] = 3747, - [3834] = 3752, - [3835] = 3747, - [3836] = 3836, - [3837] = 3752, - [3838] = 442, - [3839] = 3747, - [3840] = 3752, - [3841] = 3841, - [3842] = 3842, - [3843] = 3843, - [3844] = 1940, + [3821] = 3821, + [3822] = 1917, + [3823] = 3823, + [3824] = 1440, + [3825] = 449, + [3826] = 2350, + [3827] = 3827, + [3828] = 705, + [3829] = 3829, + [3830] = 2583, + [3831] = 3808, + [3832] = 344, + [3833] = 3820, + [3834] = 3821, + [3835] = 447, + [3836] = 3823, + [3837] = 474, + [3838] = 474, + [3839] = 3839, + [3840] = 3808, + [3841] = 338, + [3842] = 3820, + [3843] = 3821, + [3844] = 3844, [3845] = 3845, - [3846] = 697, - [3847] = 2545, - [3848] = 697, - [3849] = 470, - [3850] = 459, - [3851] = 444, - [3852] = 470, - [3853] = 704, - [3854] = 108, - [3855] = 105, - [3856] = 106, + [3846] = 345, + [3847] = 3823, + [3848] = 3823, + [3849] = 3808, + [3850] = 679, + [3851] = 680, + [3852] = 3852, + [3853] = 3823, + [3854] = 3854, + [3855] = 1917, + [3856] = 3808, [3857] = 3857, - [3858] = 3858, - [3859] = 3859, - [3860] = 704, - [3861] = 692, - [3862] = 675, - [3863] = 698, - [3864] = 3747, - [3865] = 3731, - [3866] = 3744, - [3867] = 3745, - [3868] = 442, - [3869] = 692, - [3870] = 675, - [3871] = 3871, - [3872] = 698, - [3873] = 444, - [3874] = 3818, + [3858] = 447, + [3859] = 3823, + [3860] = 3860, + [3861] = 3808, + [3862] = 681, + [3863] = 2582, + [3864] = 347, + [3865] = 3823, + [3866] = 3807, + [3867] = 449, + [3868] = 3868, + [3869] = 3869, + [3870] = 348, + [3871] = 105, + [3872] = 449, + [3873] = 3873, + [3874] = 349, [3875] = 3875, - [3876] = 3731, - [3877] = 3744, - [3878] = 3745, - [3879] = 3879, - [3880] = 442, - [3881] = 3775, - [3882] = 3784, - [3883] = 369, - [3884] = 339, - [3885] = 961, - [3886] = 931, - [3887] = 3887, - [3888] = 3105, - [3889] = 369, - [3890] = 490, - [3891] = 3137, - [3892] = 645, - [3893] = 3893, - [3894] = 3139, - [3895] = 3140, - [3896] = 497, - [3897] = 3897, - [3898] = 3142, - [3899] = 485, - [3900] = 967, - [3901] = 444, - [3902] = 3753, - [3903] = 699, - [3904] = 886, - [3905] = 3613, - [3906] = 3591, - [3907] = 2785, - [3908] = 948, - [3909] = 954, + [3876] = 3876, + [3877] = 3789, + [3878] = 3878, + [3879] = 341, + [3880] = 3873, + [3881] = 3792, + [3882] = 3882, + [3883] = 3883, + [3884] = 2641, + [3885] = 2642, + [3886] = 3886, + [3887] = 106, + [3888] = 2303, + [3889] = 463, + [3890] = 107, + [3891] = 342, + [3892] = 3808, + [3893] = 3820, + [3894] = 3821, + [3895] = 3794, + [3896] = 3808, + [3897] = 695, + [3898] = 3820, + [3899] = 679, + [3900] = 680, + [3901] = 681, + [3902] = 3821, + [3903] = 3804, + [3904] = 3789, + [3905] = 3873, + [3906] = 3792, + [3907] = 474, + [3908] = 3908, + [3909] = 2344, [3910] = 3910, - [3911] = 709, + [3911] = 3823, [3912] = 3912, - [3913] = 3887, - [3914] = 941, - [3915] = 3897, - [3916] = 459, - [3917] = 3910, - [3918] = 3918, - [3919] = 958, - [3920] = 3920, - [3921] = 886, - [3922] = 941, - [3923] = 500, - [3924] = 2990, - [3925] = 2992, - [3926] = 959, - [3927] = 948, - [3928] = 954, - [3929] = 503, - [3930] = 958, - [3931] = 490, - [3932] = 959, - [3933] = 3897, - [3934] = 336, - [3935] = 886, - [3936] = 960, - [3937] = 705, - [3938] = 960, - [3939] = 3939, - [3940] = 3940, - [3941] = 937, - [3942] = 3871, - [3943] = 961, - [3944] = 931, + [3913] = 695, + [3914] = 3914, + [3915] = 3915, + [3916] = 463, + [3917] = 3789, + [3918] = 3873, + [3919] = 3792, + [3920] = 705, + [3921] = 341, + [3922] = 3795, + [3923] = 3923, + [3924] = 449, + [3925] = 3925, + [3926] = 3823, + [3927] = 3927, + [3928] = 3820, + [3929] = 342, + [3930] = 3821, + [3931] = 3923, + [3932] = 3932, + [3933] = 2087, + [3934] = 369, + [3935] = 963, + [3936] = 3827, + [3937] = 3937, + [3938] = 3938, + [3939] = 449, + [3940] = 907, + [3941] = 474, + [3942] = 3942, + [3943] = 919, + [3944] = 3942, [3945] = 3945, - [3946] = 500, - [3947] = 351, - [3948] = 503, - [3949] = 357, - [3950] = 490, - [3951] = 3845, - [3952] = 3144, - [3953] = 3953, - [3954] = 3954, - [3955] = 3912, - [3956] = 3887, - [3957] = 3897, - [3958] = 3958, - [3959] = 3875, - [3960] = 3910, - [3961] = 941, - [3962] = 3157, - [3963] = 3879, - [3964] = 3129, - [3965] = 3965, - [3966] = 3912, - [3967] = 3887, - [3968] = 1980, - [3969] = 3912, - [3970] = 3953, - [3971] = 961, - [3972] = 3371, - [3973] = 931, - [3974] = 3912, - [3975] = 3887, + [3946] = 3868, + [3947] = 3869, + [3948] = 768, + [3949] = 463, + [3950] = 3942, + [3951] = 480, + [3952] = 922, + [3953] = 3421, + [3954] = 488, + [3955] = 923, + [3956] = 3956, + [3957] = 3942, + [3958] = 475, + [3959] = 488, + [3960] = 682, + [3961] = 3786, + [3962] = 3942, + [3963] = 768, + [3964] = 924, + [3965] = 940, + [3966] = 3966, + [3967] = 3942, + [3968] = 3968, + [3969] = 3969, + [3970] = 3970, + [3971] = 3937, + [3972] = 3942, + [3973] = 3860, + [3974] = 3937, + [3975] = 3942, [3976] = 3976, - [3977] = 642, - [3978] = 3910, - [3979] = 3912, - [3980] = 3887, - [3981] = 3910, - [3982] = 3910, - [3983] = 3768, - [3984] = 3769, - [3985] = 470, - [3986] = 3912, - [3987] = 3887, - [3988] = 3910, - [3989] = 3754, - [3990] = 503, - [3991] = 3912, - [3992] = 3887, - [3993] = 334, - [3994] = 3910, - [3995] = 459, - [3996] = 3912, - [3997] = 3997, - [3998] = 3912, - [3999] = 3912, - [4000] = 3912, - [4001] = 3116, - [4002] = 470, - [4003] = 3912, - [4004] = 3912, - [4005] = 4005, - [4006] = 3912, - [4007] = 3120, - [4008] = 3912, - [4009] = 3912, - [4010] = 3912, - [4011] = 3912, - [4012] = 948, - [4013] = 954, - [4014] = 3940, - [4015] = 500, - [4016] = 4016, - [4017] = 503, - [4018] = 490, - [4019] = 3887, - [4020] = 958, - [4021] = 4021, - [4022] = 4022, - [4023] = 3939, - [4024] = 500, - [4025] = 4025, - [4026] = 959, - [4027] = 2789, - [4028] = 333, - [4029] = 4029, - [4030] = 886, - [4031] = 960, - [4032] = 470, - [4033] = 4033, - [4034] = 3893, - [4035] = 459, - [4036] = 3912, - [4037] = 4037, - [4038] = 1980, - [4039] = 2081, - [4040] = 3893, - [4041] = 3893, - [4042] = 444, - [4043] = 470, - [4044] = 459, - [4045] = 4045, - [4046] = 4045, - [4047] = 3910, - [4048] = 4048, - [4049] = 4049, - [4050] = 4050, - [4051] = 442, - [4052] = 4052, - [4053] = 4053, - [4054] = 4054, - [4055] = 3137, - [4056] = 960, - [4057] = 967, - [4058] = 719, - [4059] = 338, - [4060] = 4060, - [4061] = 961, - [4062] = 931, - [4063] = 1807, - [4064] = 3139, - [4065] = 353, - [4066] = 4029, - [4067] = 1808, - [4068] = 4068, - [4069] = 4069, - [4070] = 4070, - [4071] = 720, - [4072] = 3140, - [4073] = 3142, - [4074] = 721, - [4075] = 722, - [4076] = 2517, - [4077] = 967, + [3977] = 463, + [3978] = 3942, + [3979] = 3979, + [3980] = 3942, + [3981] = 3942, + [3982] = 927, + [3983] = 3983, + [3984] = 3942, + [3985] = 3942, + [3986] = 3942, + [3987] = 949, + [3988] = 3942, + [3989] = 3942, + [3990] = 3945, + [3991] = 907, + [3992] = 927, + [3993] = 963, + [3994] = 919, + [3995] = 3995, + [3996] = 474, + [3997] = 475, + [3998] = 3983, + [3999] = 922, + [4000] = 480, + [4001] = 923, + [4002] = 2081, + [4003] = 4003, + [4004] = 2386, + [4005] = 3956, + [4006] = 2385, + [4007] = 3942, + [4008] = 336, + [4009] = 4009, + [4010] = 4010, + [4011] = 3945, + [4012] = 907, + [4013] = 1008, + [4014] = 919, + [4015] = 4015, + [4016] = 494, + [4017] = 333, + [4018] = 3629, + [4019] = 3945, + [4020] = 4020, + [4021] = 3945, + [4022] = 3942, + [4023] = 3809, + [4024] = 711, + [4025] = 543, + [4026] = 2384, + [4027] = 3942, + [4028] = 3945, + [4029] = 3945, + [4030] = 922, + [4031] = 3932, + [4032] = 3810, + [4033] = 949, + [4034] = 3937, + [4035] = 4015, + [4036] = 3976, + [4037] = 335, + [4038] = 474, + [4039] = 2392, + [4040] = 474, + [4041] = 2388, + [4042] = 768, + [4043] = 924, + [4044] = 923, + [4045] = 463, + [4046] = 3942, + [4047] = 3945, + [4048] = 2840, + [4049] = 3932, + [4050] = 949, + [4051] = 4015, + [4052] = 476, + [4053] = 2374, + [4054] = 3937, + [4055] = 927, + [4056] = 963, + [4057] = 449, + [4058] = 3937, + [4059] = 4059, + [4060] = 488, + [4061] = 768, + [4062] = 475, + [4063] = 696, + [4064] = 924, + [4065] = 488, + [4066] = 4066, + [4067] = 2396, + [4068] = 475, + [4069] = 480, + [4070] = 3796, + [4071] = 3942, + [4072] = 3945, + [4073] = 4015, + [4074] = 480, + [4075] = 3937, + [4076] = 3937, + [4077] = 2375, [4078] = 4078, - [4079] = 723, - [4080] = 2526, - [4081] = 4081, + [4079] = 3932, + [4080] = 3937, + [4081] = 3995, [4082] = 4082, [4083] = 4083, - [4084] = 4084, - [4085] = 4085, - [4086] = 4086, - [4087] = 4016, - [4088] = 4088, - [4089] = 4089, - [4090] = 4090, - [4091] = 4091, - [4092] = 4092, - [4093] = 4093, - [4094] = 4094, + [4084] = 463, + [4085] = 544, + [4086] = 2081, + [4087] = 4087, + [4088] = 3942, + [4089] = 369, + [4090] = 336, + [4091] = 3632, + [4092] = 2430, + [4093] = 344, + [4094] = 449, [4095] = 4095, - [4096] = 724, - [4097] = 2945, + [4096] = 488, + [4097] = 4097, [4098] = 4098, [4099] = 4099, - [4100] = 3144, + [4100] = 4100, [4101] = 4101, - [4102] = 899, - [4103] = 2948, - [4104] = 886, - [4105] = 726, - [4106] = 727, - [4107] = 728, - [4108] = 339, - [4109] = 730, - [4110] = 4110, - [4111] = 2541, - [4112] = 941, - [4113] = 735, + [4102] = 4102, + [4103] = 4103, + [4104] = 924, + [4105] = 338, + [4106] = 4106, + [4107] = 4107, + [4108] = 949, + [4109] = 345, + [4110] = 475, + [4111] = 927, + [4112] = 963, + [4113] = 488, [4114] = 4114, - [4115] = 736, - [4116] = 737, - [4117] = 738, - [4118] = 948, - [4119] = 739, - [4120] = 954, - [4121] = 740, - [4122] = 741, - [4123] = 742, - [4124] = 958, - [4125] = 959, + [4115] = 480, + [4116] = 793, + [4117] = 475, + [4118] = 4118, + [4119] = 480, + [4120] = 4120, + [4121] = 488, + [4122] = 4122, + [4123] = 1008, + [4124] = 4124, + [4125] = 346, [4126] = 4126, - [4127] = 886, - [4128] = 4128, - [4129] = 4129, - [4130] = 937, + [4127] = 347, + [4128] = 348, + [4129] = 349, + [4130] = 4130, [4131] = 4131, - [4132] = 4132, + [4132] = 695, [4133] = 4133, - [4134] = 4016, - [4135] = 704, + [4134] = 475, + [4135] = 480, [4136] = 4136, [4137] = 4137, - [4138] = 4138, + [4138] = 2924, [4139] = 4139, - [4140] = 343, - [4141] = 4050, - [4142] = 4142, - [4143] = 948, - [4144] = 4144, - [4145] = 954, - [4146] = 960, - [4147] = 4147, - [4148] = 444, - [4149] = 4149, - [4150] = 360, + [4140] = 837, + [4141] = 4141, + [4142] = 838, + [4143] = 4143, + [4144] = 839, + [4145] = 679, + [4146] = 680, + [4147] = 681, + [4148] = 488, + [4149] = 3704, + [4150] = 3705, [4151] = 4151, - [4152] = 3918, - [4153] = 340, - [4154] = 4154, - [4155] = 2570, + [4152] = 4152, + [4153] = 352, + [4154] = 475, + [4155] = 480, [4156] = 4156, - [4157] = 961, - [4158] = 931, - [4159] = 941, - [4160] = 341, - [4161] = 342, - [4162] = 349, - [4163] = 695, - [4164] = 4164, - [4165] = 694, + [4157] = 353, + [4158] = 841, + [4159] = 4159, + [4160] = 4160, + [4161] = 4161, + [4162] = 4162, + [4163] = 3083, + [4164] = 3084, + [4165] = 4165, [4166] = 4166, - [4167] = 3997, - [4168] = 2540, - [4169] = 4050, + [4167] = 4167, + [4168] = 4168, + [4169] = 927, [4170] = 4170, - [4171] = 4092, + [4171] = 4171, [4172] = 4172, - [4173] = 4173, - [4174] = 948, + [4173] = 963, + [4174] = 4174, [4175] = 4175, - [4176] = 930, - [4177] = 954, - [4178] = 692, - [4179] = 4088, - [4180] = 4050, - [4181] = 1395, - [4182] = 4182, - [4183] = 675, + [4176] = 4176, + [4177] = 2344, + [4178] = 2350, + [4179] = 2400, + [4180] = 4180, + [4181] = 1803, + [4182] = 1805, + [4183] = 4183, [4184] = 4184, [4185] = 4185, - [4186] = 698, + [4186] = 4120, [4187] = 4187, [4188] = 4188, [4189] = 4189, [4190] = 4190, - [4191] = 3714, - [4192] = 3715, - [4193] = 4050, + [4191] = 3970, + [4192] = 907, + [4193] = 919, [4194] = 4194, - [4195] = 4195, - [4196] = 4196, - [4197] = 887, + [4195] = 4078, + [4196] = 1393, + [4197] = 4197, [4198] = 4198, [4199] = 4199, - [4200] = 958, + [4200] = 4200, [4201] = 4201, [4202] = 4202, - [4203] = 4203, - [4204] = 4050, + [4203] = 4098, + [4204] = 4204, [4205] = 4205, - [4206] = 3116, - [4207] = 697, - [4208] = 959, - [4209] = 500, - [4210] = 3120, - [4211] = 1781, - [4212] = 4212, - [4213] = 4050, - [4214] = 936, - [4215] = 2857, - [4216] = 4216, + [4206] = 4206, + [4207] = 4207, + [4208] = 4208, + [4209] = 4209, + [4210] = 4210, + [4211] = 4211, + [4212] = 1781, + [4213] = 768, + [4214] = 1782, + [4215] = 4215, + [4216] = 940, [4217] = 4217, - [4218] = 503, - [4219] = 886, + [4218] = 4218, + [4219] = 4219, [4220] = 4220, - [4221] = 490, - [4222] = 960, - [4223] = 967, - [4224] = 4050, - [4225] = 4225, - [4226] = 4226, - [4227] = 4227, + [4221] = 4221, + [4222] = 4222, + [4223] = 4223, + [4224] = 4224, + [4225] = 846, + [4226] = 949, + [4227] = 922, [4228] = 4228, - [4229] = 958, - [4230] = 4050, - [4231] = 4231, + [4229] = 907, + [4230] = 4230, + [4231] = 919, [4232] = 4232, - [4233] = 1782, - [4234] = 888, - [4235] = 4235, - [4236] = 4236, - [4237] = 4237, - [4238] = 4238, + [4233] = 922, + [4234] = 923, + [4235] = 768, + [4236] = 924, + [4237] = 847, + [4238] = 1008, [4239] = 4239, [4240] = 4240, [4241] = 4241, - [4242] = 4050, + [4242] = 4242, [4243] = 4243, [4244] = 4244, - [4245] = 503, - [4246] = 3532, - [4247] = 4247, - [4248] = 3570, - [4249] = 961, + [4245] = 1790, + [4246] = 1792, + [4247] = 927, + [4248] = 963, + [4249] = 4249, [4250] = 4250, - [4251] = 4251, + [4251] = 848, [4252] = 4252, - [4253] = 931, - [4254] = 4050, - [4255] = 4232, - [4256] = 4256, + [4253] = 849, + [4254] = 864, + [4255] = 867, + [4256] = 4162, [4257] = 4257, - [4258] = 4258, - [4259] = 4259, - [4260] = 4260, + [4258] = 869, + [4259] = 871, + [4260] = 2411, [4261] = 4261, - [4262] = 960, - [4263] = 937, + [4262] = 4262, + [4263] = 4263, [4264] = 4264, - [4265] = 4265, - [4266] = 351, + [4265] = 4162, + [4266] = 923, [4267] = 4267, - [4268] = 3417, + [4268] = 4268, [4269] = 4269, - [4270] = 4270, - [4271] = 4271, - [4272] = 4272, - [4273] = 4138, - [4274] = 357, - [4275] = 2927, - [4276] = 2530, - [4277] = 2928, + [4270] = 4162, + [4271] = 705, + [4272] = 1349, + [4273] = 353, + [4274] = 4274, + [4275] = 4275, + [4276] = 940, + [4277] = 4277, [4278] = 4278, - [4279] = 4084, + [4279] = 4279, [4280] = 4280, - [4281] = 3131, - [4282] = 1357, - [4283] = 4050, - [4284] = 4284, + [4281] = 822, + [4282] = 4282, + [4283] = 4162, + [4284] = 907, [4285] = 4285, - [4286] = 959, - [4287] = 4287, - [4288] = 4288, - [4289] = 4289, - [4290] = 4290, - [4291] = 500, - [4292] = 4292, - [4293] = 4293, + [4286] = 922, + [4287] = 825, + [4288] = 826, + [4289] = 2421, + [4290] = 4162, + [4291] = 4291, + [4292] = 923, + [4293] = 829, [4294] = 4294, - [4295] = 4295, - [4296] = 4296, + [4295] = 4200, + [4296] = 4162, [4297] = 4297, - [4298] = 4298, + [4298] = 4269, [4299] = 4299, - [4300] = 4300, - [4301] = 937, - [4302] = 4302, - [4303] = 490, - [4304] = 4304, - [4305] = 4185, - [4306] = 3105, + [4300] = 2423, + [4301] = 4162, + [4302] = 4162, + [4303] = 919, + [4304] = 4162, + [4305] = 4305, + [4306] = 4306, [4307] = 4307, - [4308] = 4308, + [4308] = 4162, [4309] = 4309, - [4310] = 500, - [4311] = 4311, + [4310] = 4310, + [4311] = 4162, [4312] = 4312, - [4313] = 4050, - [4314] = 503, - [4315] = 4050, + [4313] = 4313, + [4314] = 4314, + [4315] = 4315, [4316] = 4316, - [4317] = 490, - [4318] = 368, + [4317] = 3186, + [4318] = 4318, [4319] = 4319, - [4320] = 4320, + [4320] = 3970, [4321] = 4321, - [4322] = 4322, - [4323] = 4133, + [4322] = 4162, + [4323] = 4316, [4324] = 4324, [4325] = 4325, [4326] = 4326, - [4327] = 4327, - [4328] = 4328, + [4327] = 3616, + [4328] = 3562, [4329] = 4329, [4330] = 4330, - [4331] = 4331, - [4332] = 1792, - [4333] = 1793, - [4334] = 4334, - [4335] = 923, + [4331] = 924, + [4332] = 4332, + [4333] = 4333, + [4334] = 1008, + [4335] = 4335, [4336] = 4336, [4337] = 4337, [4338] = 4338, [4339] = 4339, [4340] = 4340, [4341] = 4341, - [4342] = 500, - [4343] = 4050, - [4344] = 4344, + [4342] = 4342, + [4343] = 4343, + [4344] = 768, [4345] = 4345, [4346] = 4346, [4347] = 4347, [4348] = 4348, - [4349] = 503, - [4350] = 941, - [4351] = 4351, - [4352] = 4280, - [4353] = 490, - [4354] = 961, - [4355] = 4271, - [4356] = 4272, - [4357] = 931, - [4358] = 4267, - [4359] = 4359, - [4360] = 4280, - [4361] = 4271, - [4362] = 4272, - [4363] = 4267, - [4364] = 4364, + [4349] = 4349, + [4350] = 927, + [4351] = 963, + [4352] = 4352, + [4353] = 4299, + [4354] = 4354, + [4355] = 671, + [4356] = 4356, + [4357] = 924, + [4358] = 693, + [4359] = 940, + [4360] = 4360, + [4361] = 4361, + [4362] = 3474, + [4363] = 2428, + [4364] = 447, [4365] = 4365, - [4366] = 4050, - [4367] = 4367, - [4368] = 930, + [4366] = 4082, + [4367] = 341, + [4368] = 4368, [4369] = 4369, - [4370] = 4370, - [4371] = 4371, - [4372] = 4372, - [4373] = 4373, - [4374] = 4374, - [4375] = 369, - [4376] = 4068, - [4377] = 924, - [4378] = 4378, - [4379] = 4270, - [4380] = 926, + [4370] = 4162, + [4371] = 770, + [4372] = 4162, + [4373] = 4162, + [4374] = 4201, + [4375] = 342, + [4376] = 4376, + [4377] = 772, + [4378] = 352, + [4379] = 3080, + [4380] = 833, [4381] = 4381, - [4382] = 685, - [4383] = 4250, - [4384] = 4269, - [4385] = 4321, - [4386] = 4386, - [4387] = 4069, - [4388] = 4388, - [4389] = 4251, - [4390] = 4252, - [4391] = 4391, - [4392] = 4231, - [4393] = 4393, - [4394] = 4324, - [4395] = 4330, - [4396] = 4396, - [4397] = 4322, - [4398] = 334, - [4399] = 4289, - [4400] = 676, - [4401] = 3054, + [4382] = 3081, + [4383] = 4383, + [4384] = 4384, + [4385] = 4087, + [4386] = 346, + [4387] = 4387, + [4388] = 4162, + [4389] = 4389, + [4390] = 4390, + [4391] = 4197, + [4392] = 4392, + [4393] = 949, + [4394] = 4230, + [4395] = 4232, + [4396] = 4310, + [4397] = 4197, + [4398] = 4230, + [4399] = 4232, + [4400] = 4310, + [4401] = 4401, [4402] = 4402, - [4403] = 4307, - [4404] = 4404, + [4403] = 4241, + [4404] = 4205, [4405] = 4405, - [4406] = 4226, + [4406] = 4406, [4407] = 4407, - [4408] = 2916, - [4409] = 4331, - [4410] = 4227, + [4408] = 4244, + [4409] = 4409, + [4410] = 4410, [4411] = 4411, - [4412] = 4294, + [4412] = 4412, [4413] = 4413, - [4414] = 4339, - [4415] = 4336, - [4416] = 4257, - [4417] = 4340, - [4418] = 4348, - [4419] = 4351, - [4420] = 4049, - [4421] = 936, - [4422] = 4052, - [4423] = 4423, - [4424] = 949, - [4425] = 897, - [4426] = 898, - [4427] = 4053, - [4428] = 459, - [4429] = 4054, - [4430] = 4304, - [4431] = 4402, - [4432] = 4083, - [4433] = 4085, - [4434] = 4086, - [4435] = 4090, - [4436] = 916, - [4437] = 4091, - [4438] = 4438, - [4439] = 4439, - [4440] = 4093, + [4414] = 4099, + [4415] = 4100, + [4416] = 4206, + [4417] = 4207, + [4418] = 4208, + [4419] = 4101, + [4420] = 937, + [4421] = 3153, + [4422] = 4102, + [4423] = 4335, + [4424] = 4103, + [4425] = 4183, + [4426] = 4405, + [4427] = 4405, + [4428] = 4428, + [4429] = 463, + [4430] = 4280, + [4431] = 4431, + [4432] = 4209, + [4433] = 4210, + [4434] = 2376, + [4435] = 4384, + [4436] = 4436, + [4437] = 4306, + [4438] = 4176, + [4439] = 910, + [4440] = 3098, [4441] = 4441, - [4442] = 4094, - [4443] = 4098, - [4444] = 4259, + [4442] = 2970, + [4443] = 4211, + [4444] = 4106, [4445] = 4445, [4446] = 4446, - [4447] = 4393, - [4448] = 4448, - [4449] = 4449, + [4447] = 4446, + [4448] = 4185, + [4449] = 4107, [4450] = 4450, [4451] = 4451, - [4452] = 743, - [4453] = 744, - [4454] = 2570, - [4455] = 4325, - [4456] = 4326, - [4457] = 4327, - [4458] = 4328, - [4459] = 4329, - [4460] = 4460, - [4461] = 4461, - [4462] = 2173, - [4463] = 2174, + [4452] = 4452, + [4453] = 930, + [4454] = 4454, + [4455] = 4455, + [4456] = 4456, + [4457] = 4457, + [4458] = 4458, + [4459] = 2374, + [4460] = 2375, + [4461] = 4307, + [4462] = 4215, + [4463] = 4463, [4464] = 4464, - [4465] = 4378, - [4466] = 2176, + [4465] = 528, + [4466] = 485, [4467] = 4467, - [4468] = 4407, - [4469] = 444, - [4470] = 2540, - [4471] = 4381, - [4472] = 4472, - [4473] = 3128, - [4474] = 4413, - [4475] = 4446, - [4476] = 4287, - [4477] = 4288, - [4478] = 4297, - [4479] = 746, - [4480] = 747, - [4481] = 4337, + [4468] = 3017, + [4469] = 4175, + [4470] = 4470, + [4471] = 4471, + [4472] = 4332, + [4473] = 4184, + [4474] = 4341, + [4475] = 937, + [4476] = 4279, + [4477] = 4477, + [4478] = 4478, + [4479] = 4342, + [4480] = 4168, + [4481] = 4343, [4482] = 4482, - [4483] = 3003, - [4484] = 4484, - [4485] = 4485, - [4486] = 4338, - [4487] = 4101, - [4488] = 4110, - [4489] = 4129, - [4490] = 4381, - [4491] = 4292, - [4492] = 4136, - [4493] = 4413, - [4494] = 4137, - [4495] = 4142, - [4496] = 4496, - [4497] = 4381, - [4498] = 4413, - [4499] = 4446, - [4500] = 4334, - [4501] = 4381, + [4483] = 4483, + [4484] = 4126, + [4485] = 4130, + [4486] = 4139, + [4487] = 4345, + [4488] = 4405, + [4489] = 497, + [4490] = 4294, + [4491] = 4491, + [4492] = 4217, + [4493] = 4218, + [4494] = 4297, + [4495] = 4495, + [4496] = 4285, + [4497] = 4497, + [4498] = 4498, + [4499] = 4499, + [4500] = 4500, + [4501] = 4346, [4502] = 4502, - [4503] = 4503, - [4504] = 4070, - [4505] = 763, - [4506] = 764, - [4507] = 4149, - [4508] = 4151, - [4509] = 4381, - [4510] = 4172, - [4511] = 4175, - [4512] = 4413, - [4513] = 4217, - [4514] = 3005, - [4515] = 4299, - [4516] = 4302, - [4517] = 4309, - [4518] = 4311, - [4519] = 4341, - [4520] = 2530, - [4521] = 4144, - [4522] = 1358, - [4523] = 4156, - [4524] = 4524, - [4525] = 4164, - [4526] = 4526, - [4527] = 4170, - [4528] = 4201, - [4529] = 4345, - [4530] = 4530, + [4503] = 4477, + [4504] = 4504, + [4505] = 4505, + [4506] = 4482, + [4507] = 4172, + [4508] = 4508, + [4509] = 4347, + [4510] = 3100, + [4511] = 4309, + [4512] = 4512, + [4513] = 931, + [4514] = 4249, + [4515] = 896, + [4516] = 4477, + [4517] = 4477, + [4518] = 881, + [4519] = 2384, + [4520] = 4482, + [4521] = 4482, + [4522] = 2385, + [4523] = 2386, + [4524] = 4250, + [4525] = 717, + [4526] = 374, + [4527] = 718, + [4528] = 4528, + [4529] = 2392, + [4530] = 4220, [4531] = 4531, - [4532] = 1366, - [4533] = 4081, - [4534] = 4202, - [4535] = 4082, - [4536] = 943, - [4537] = 4537, - [4538] = 4316, - [4539] = 4539, - [4540] = 540, - [4541] = 4402, - [4542] = 4542, - [4543] = 4543, + [4532] = 4477, + [4533] = 4533, + [4534] = 4257, + [4535] = 369, + [4536] = 4482, + [4537] = 4282, + [4538] = 4538, + [4539] = 1403, + [4540] = 4540, + [4541] = 4348, + [4542] = 4349, + [4543] = 4243, [4544] = 4544, - [4545] = 4346, - [4546] = 4095, - [4547] = 2148, - [4548] = 4099, - [4549] = 4549, - [4550] = 4320, - [4551] = 4551, - [4552] = 3026, - [4553] = 4347, - [4554] = 3036, + [4545] = 4352, + [4546] = 4313, + [4547] = 4477, + [4548] = 4324, + [4549] = 4325, + [4550] = 4354, + [4551] = 4268, + [4552] = 4312, + [4553] = 4261, + [4554] = 1357, [4555] = 4555, - [4556] = 951, - [4557] = 4557, - [4558] = 4558, - [4559] = 4559, - [4560] = 4237, - [4561] = 4240, - [4562] = 4241, - [4563] = 4243, - [4564] = 4244, - [4565] = 4265, - [4566] = 4128, - [4567] = 4220, - [4568] = 4568, - [4569] = 4569, - [4570] = 4570, + [4556] = 4477, + [4557] = 4274, + [4558] = 4329, + [4559] = 694, + [4560] = 4330, + [4561] = 4336, + [4562] = 4337, + [4563] = 4482, + [4564] = 4483, + [4565] = 3097, + [4566] = 4566, + [4567] = 4482, + [4568] = 942, + [4569] = 4483, + [4570] = 2373, [4571] = 4571, - [4572] = 2517, - [4573] = 470, - [4574] = 2526, - [4575] = 4575, - [4576] = 4576, - [4577] = 4577, - [4578] = 4578, - [4579] = 4579, - [4580] = 4580, + [4572] = 4572, + [4573] = 4314, + [4574] = 943, + [4575] = 4338, + [4576] = 4356, + [4577] = 944, + [4578] = 4221, + [4579] = 4339, + [4580] = 956, [4581] = 4581, - [4582] = 4225, - [4583] = 4583, - [4584] = 4264, - [4585] = 4212, + [4582] = 4262, + [4583] = 699, + [4584] = 2162, + [4585] = 2388, [4586] = 4586, - [4587] = 4587, - [4588] = 4588, - [4589] = 4589, - [4590] = 4590, - [4591] = 4591, - [4592] = 4592, - [4593] = 4593, - [4594] = 444, + [4587] = 4263, + [4588] = 2167, + [4589] = 2396, + [4590] = 2138, + [4591] = 2140, + [4592] = 876, + [4593] = 883, + [4594] = 2141, [4595] = 4595, - [4596] = 491, - [4597] = 4597, - [4598] = 442, - [4599] = 2191, - [4600] = 4381, - [4601] = 4485, + [4596] = 878, + [4597] = 4222, + [4598] = 4275, + [4599] = 1366, + [4600] = 897, + [4601] = 954, [4602] = 4602, - [4603] = 3053, - [4604] = 4228, - [4605] = 4373, - [4606] = 498, + [4603] = 4483, + [4604] = 4604, + [4605] = 4223, + [4606] = 4606, [4607] = 4607, - [4608] = 4608, - [4609] = 4413, - [4610] = 4446, - [4611] = 4078, - [4612] = 1409, - [4613] = 4472, + [4608] = 4277, + [4609] = 4160, + [4610] = 4161, + [4611] = 4166, + [4612] = 4612, + [4613] = 4613, [4614] = 4614, [4615] = 4615, [4616] = 4616, - [4617] = 4617, - [4618] = 4239, + [4617] = 4187, + [4618] = 4618, [4619] = 4619, - [4620] = 2541, - [4621] = 4413, - [4622] = 4622, - [4623] = 4623, - [4624] = 4624, - [4625] = 4625, + [4620] = 4278, + [4621] = 4224, + [4622] = 3011, + [4623] = 4457, + [4624] = 3049, + [4625] = 898, [4626] = 4626, - [4627] = 4627, - [4628] = 4628, - [4629] = 4629, - [4630] = 4630, - [4631] = 4631, - [4632] = 4632, - [4633] = 4633, - [4634] = 4629, - [4635] = 4635, + [4627] = 4188, + [4628] = 336, + [4629] = 474, + [4630] = 4174, + [4631] = 956, + [4632] = 4305, + [4633] = 447, + [4634] = 4634, + [4635] = 4402, [4636] = 4636, - [4637] = 4637, - [4638] = 4635, - [4639] = 4639, - [4640] = 691, - [4641] = 339, + [4637] = 449, + [4638] = 4095, + [4639] = 4544, + [4640] = 4333, + [4641] = 4641, [4642] = 4642, [4643] = 4643, - [4644] = 4644, + [4644] = 4642, [4645] = 4645, - [4646] = 4626, - [4647] = 4637, - [4648] = 4648, - [4649] = 4630, + [4646] = 4646, + [4647] = 4647, + [4648] = 4267, + [4649] = 4649, [4650] = 4650, - [4651] = 4651, + [4651] = 449, [4652] = 4652, - [4653] = 960, - [4654] = 4654, - [4655] = 4631, - [4656] = 4656, - [4657] = 4627, - [4658] = 4628, - [4659] = 4639, - [4660] = 941, - [4661] = 967, - [4662] = 4662, - [4663] = 4627, + [4653] = 4361, + [4654] = 4458, + [4655] = 4242, + [4656] = 4239, + [4657] = 4240, + [4658] = 4658, + [4659] = 4659, + [4660] = 4660, + [4661] = 4661, + [4662] = 4660, + [4663] = 4663, [4664] = 4664, - [4665] = 4628, + [4665] = 475, [4666] = 4666, [4667] = 4667, [4668] = 4668, - [4669] = 961, + [4669] = 4669, [4670] = 4670, - [4671] = 503, - [4672] = 4672, - [4673] = 931, - [4674] = 4674, + [4671] = 4671, + [4672] = 938, + [4673] = 4673, + [4674] = 768, [4675] = 4675, - [4676] = 904, - [4677] = 937, - [4678] = 3016, - [4679] = 4648, - [4680] = 4651, + [4676] = 4676, + [4677] = 4677, + [4678] = 4678, + [4679] = 4679, + [4680] = 907, [4681] = 4681, [4682] = 4682, [4683] = 4683, - [4684] = 4684, - [4685] = 4016, + [4684] = 2430, + [4685] = 4685, [4686] = 4686, - [4687] = 4664, - [4688] = 4666, - [4689] = 4662, - [4690] = 4622, + [4687] = 4687, + [4688] = 4688, + [4689] = 4681, + [4690] = 4690, [4691] = 4691, - [4692] = 4643, - [4693] = 4667, - [4694] = 4670, - [4695] = 948, - [4696] = 4672, - [4697] = 490, - [4698] = 886, - [4699] = 4699, - [4700] = 1043, + [4692] = 3186, + [4693] = 4693, + [4694] = 919, + [4695] = 4695, + [4696] = 4696, + [4697] = 4697, + [4698] = 948, + [4699] = 4664, + [4700] = 4700, [4701] = 4701, - [4702] = 4675, - [4703] = 4668, - [4704] = 4704, + [4702] = 4663, + [4703] = 4703, + [4704] = 4661, [4705] = 4705, [4706] = 4706, [4707] = 4707, - [4708] = 4708, - [4709] = 4709, - [4710] = 3532, - [4711] = 3570, - [4712] = 4464, - [4713] = 954, - [4714] = 4633, - [4715] = 4715, - [4716] = 1510, + [4708] = 2411, + [4709] = 1073, + [4710] = 4710, + [4711] = 4711, + [4712] = 4669, + [4713] = 2428, + [4714] = 2093, + [4715] = 4685, + [4716] = 4716, [4717] = 4717, - [4718] = 4707, - [4719] = 4719, - [4720] = 2089, + [4718] = 4710, + [4719] = 4669, + [4720] = 4720, [4721] = 4721, - [4722] = 4644, - [4723] = 958, - [4724] = 4724, - [4725] = 4625, - [4726] = 4726, - [4727] = 4727, + [4722] = 4721, + [4723] = 4723, + [4724] = 949, + [4725] = 474, + [4726] = 902, + [4727] = 697, [4728] = 4728, [4729] = 4729, - [4730] = 3037, - [4731] = 3131, + [4730] = 4723, + [4731] = 4731, [4732] = 4732, - [4733] = 351, - [4734] = 4645, - [4735] = 4735, - [4736] = 4736, - [4737] = 4724, - [4738] = 4704, - [4739] = 4625, - [4740] = 4705, + [4733] = 952, + [4734] = 4734, + [4735] = 4688, + [4736] = 3616, + [4737] = 4737, + [4738] = 3562, + [4739] = 4723, + [4740] = 2383, [4741] = 4741, - [4742] = 4742, - [4743] = 357, - [4744] = 4744, - [4745] = 4745, - [4746] = 4626, - [4747] = 4691, - [4748] = 927, + [4742] = 480, + [4743] = 1670, + [4744] = 488, + [4745] = 346, + [4746] = 4746, + [4747] = 4747, + [4748] = 4748, [4749] = 4749, - [4750] = 955, - [4751] = 4751, - [4752] = 4706, - [4753] = 896, - [4754] = 4754, - [4755] = 4627, - [4756] = 4726, - [4757] = 4628, - [4758] = 4758, - [4759] = 4759, - [4760] = 3093, + [4750] = 4737, + [4751] = 4721, + [4752] = 4703, + [4753] = 4753, + [4754] = 4710, + [4755] = 4669, + [4756] = 4756, + [4757] = 3111, + [4758] = 927, + [4759] = 923, + [4760] = 3051, [4761] = 4761, - [4762] = 3095, - [4763] = 4726, - [4764] = 4764, + [4762] = 963, + [4763] = 4695, + [4764] = 4748, [4765] = 4765, - [4766] = 4766, - [4767] = 4767, - [4768] = 4768, - [4769] = 470, - [4770] = 4770, - [4771] = 4699, + [4766] = 4721, + [4767] = 4753, + [4768] = 4723, + [4769] = 4769, + [4770] = 4761, + [4771] = 924, [4772] = 4772, - [4773] = 459, - [4774] = 4774, - [4775] = 4625, - [4776] = 4726, - [4777] = 4626, - [4778] = 2082, - [4779] = 4726, - [4780] = 2083, - [4781] = 4686, - [4782] = 4719, - [4783] = 4783, - [4784] = 4715, - [4785] = 4785, - [4786] = 500, - [4787] = 959, - [4788] = 4788, - [4789] = 4632, - [4790] = 925, - [4791] = 4791, + [4773] = 913, + [4774] = 1008, + [4775] = 4775, + [4776] = 352, + [4777] = 4777, + [4778] = 4741, + [4779] = 4746, + [4780] = 353, + [4781] = 940, + [4782] = 4782, + [4783] = 4671, + [4784] = 4706, + [4785] = 4710, + [4786] = 4775, + [4787] = 4753, + [4788] = 4753, + [4789] = 4789, + [4790] = 4790, + [4791] = 922, [4792] = 4792, [4793] = 4793, - [4794] = 4794, + [4794] = 4753, [4795] = 4795, - [4796] = 4796, - [4797] = 4797, + [4796] = 4792, + [4797] = 2421, [4798] = 4798, - [4799] = 4798, - [4800] = 4792, - [4801] = 4801, + [4799] = 2423, + [4800] = 4800, + [4801] = 4798, [4802] = 4802, - [4803] = 4803, - [4804] = 4798, - [4805] = 4801, + [4803] = 4670, + [4804] = 4800, + [4805] = 4805, [4806] = 4806, [4807] = 4807, - [4808] = 4808, + [4808] = 4673, [4809] = 4809, - [4810] = 4810, + [4810] = 4683, [4811] = 4811, - [4812] = 4792, - [4813] = 4793, - [4814] = 4794, + [4812] = 4676, + [4813] = 4813, + [4814] = 4686, [4815] = 4815, - [4816] = 4816, - [4817] = 4798, - [4818] = 4802, - [4819] = 4819, + [4816] = 4678, + [4817] = 4782, + [4818] = 4705, + [4819] = 4790, [4820] = 4820, - [4821] = 4821, - [4822] = 4801, - [4823] = 4823, - [4824] = 4792, - [4825] = 4791, - [4826] = 4809, - [4827] = 4827, - [4828] = 4828, - [4829] = 4792, - [4830] = 4793, - [4831] = 4794, - [4832] = 4798, + [4821] = 3970, + [4822] = 4668, + [4823] = 463, + [4824] = 2400, + [4825] = 2090, + [4826] = 4690, + [4827] = 2095, + [4828] = 2383, + [4829] = 4700, + [4830] = 4830, + [4831] = 4831, + [4832] = 4832, [4833] = 4833, - [4834] = 4793, + [4834] = 4834, [4835] = 4835, [4836] = 4836, - [4837] = 4801, + [4837] = 4837, [4838] = 4838, - [4839] = 4798, + [4839] = 4839, [4840] = 4840, - [4841] = 498, + [4841] = 4831, [4842] = 4842, - [4843] = 4792, - [4844] = 4793, - [4845] = 4794, - [4846] = 4798, - [4847] = 4801, + [4843] = 2421, + [4844] = 4844, + [4845] = 4845, + [4846] = 4844, + [4847] = 4847, [4848] = 4848, - [4849] = 4821, - [4850] = 4801, + [4849] = 4849, + [4850] = 4850, [4851] = 4851, - [4852] = 4819, + [4852] = 4852, [4853] = 4853, - [4854] = 4815, - [4855] = 4792, - [4856] = 4793, - [4857] = 4794, - [4858] = 4820, - [4859] = 4803, - [4860] = 4801, - [4861] = 4861, + [4854] = 4854, + [4855] = 4832, + [4856] = 4856, + [4857] = 4837, + [4858] = 4838, + [4859] = 4859, + [4860] = 4860, + [4861] = 497, [4862] = 4862, - [4863] = 4863, - [4864] = 4792, - [4865] = 4793, - [4866] = 4794, - [4867] = 4867, - [4868] = 4868, - [4869] = 4801, - [4870] = 4870, - [4871] = 4871, - [4872] = 4872, - [4873] = 4792, - [4874] = 4793, - [4875] = 4794, - [4876] = 4835, - [4877] = 491, - [4878] = 4801, + [4863] = 4844, + [4864] = 4864, + [4865] = 4865, + [4866] = 4866, + [4867] = 4850, + [4868] = 488, + [4869] = 4850, + [4870] = 4853, + [4871] = 4854, + [4872] = 4832, + [4873] = 4838, + [4874] = 4874, + [4875] = 4875, + [4876] = 4876, + [4877] = 4834, + [4878] = 4844, [4879] = 4879, - [4880] = 4792, - [4881] = 4793, - [4882] = 4794, - [4883] = 4801, - [4884] = 4851, - [4885] = 4801, - [4886] = 4809, - [4887] = 4792, - [4888] = 4793, - [4889] = 4794, - [4890] = 4793, - [4891] = 4891, - [4892] = 4801, - [4893] = 4827, - [4894] = 4792, - [4895] = 4793, - [4896] = 4794, - [4897] = 4807, - [4898] = 4810, - [4899] = 4801, - [4900] = 4810, - [4901] = 4792, - [4902] = 4793, - [4903] = 4794, - [4904] = 4904, - [4905] = 491, - [4906] = 4801, - [4907] = 4907, - [4908] = 4792, - [4909] = 4793, - [4910] = 4794, - [4911] = 4911, - [4912] = 4801, - [4913] = 4792, - [4914] = 4793, - [4915] = 4794, - [4916] = 4916, - [4917] = 4917, - [4918] = 4851, - [4919] = 4811, - [4920] = 4920, - [4921] = 4921, - [4922] = 4922, - [4923] = 4923, - [4924] = 4924, - [4925] = 4808, - [4926] = 4809, - [4927] = 4867, - [4928] = 4928, - [4929] = 4929, - [4930] = 4930, - [4931] = 4879, - [4932] = 4932, - [4933] = 4933, - [4934] = 4809, - [4935] = 2530, - [4936] = 498, - [4937] = 4937, - [4938] = 4827, - [4939] = 4792, - [4940] = 4793, - [4941] = 4929, - [4942] = 4806, - [4943] = 4943, - [4944] = 4870, - [4945] = 4794, - [4946] = 4851, - [4947] = 4929, - [4948] = 491, - [4949] = 4797, - [4950] = 4950, - [4951] = 4951, - [4952] = 4823, - [4953] = 4933, - [4954] = 4954, - [4955] = 4797, - [4956] = 4794, - [4957] = 4957, - [4958] = 4820, - [4959] = 4959, - [4960] = 4960, - [4961] = 4819, - [4962] = 4823, - [4963] = 930, - [4964] = 4803, - [4965] = 4965, - [4966] = 4966, - [4967] = 4967, - [4968] = 4798, - [4969] = 2570, - [4970] = 4802, - [4971] = 4971, - [4972] = 4770, - [4973] = 4921, - [4974] = 4820, - [4975] = 4797, - [4976] = 4803, - [4977] = 4977, - [4978] = 4791, - [4979] = 4802, - [4980] = 4809, - [4981] = 4922, - [4982] = 4982, - [4983] = 4827, - [4984] = 4806, - [4985] = 4920, - [4986] = 4932, - [4987] = 2517, - [4988] = 4801, + [4880] = 4856, + [4881] = 4853, + [4882] = 4854, + [4883] = 4866, + [4884] = 4853, + [4885] = 4854, + [4886] = 4832, + [4887] = 4838, + [4888] = 4875, + [4889] = 4889, + [4890] = 4832, + [4891] = 4844, + [4892] = 4892, + [4893] = 4893, + [4894] = 4853, + [4895] = 4838, + [4896] = 4853, + [4897] = 4854, + [4898] = 4832, + [4899] = 4899, + [4900] = 4854, + [4901] = 4844, + [4902] = 4832, + [4903] = 4903, + [4904] = 4844, + [4905] = 4905, + [4906] = 4853, + [4907] = 4854, + [4908] = 4832, + [4909] = 4835, + [4910] = 4910, + [4911] = 4844, + [4912] = 4864, + [4913] = 4913, + [4914] = 4914, + [4915] = 4853, + [4916] = 4854, + [4917] = 4832, + [4918] = 4918, + [4919] = 4919, + [4920] = 4844, + [4921] = 2423, + [4922] = 4853, + [4923] = 4854, + [4924] = 4832, + [4925] = 4835, + [4926] = 4926, + [4927] = 4844, + [4928] = 4837, + [4929] = 4853, + [4930] = 4854, + [4931] = 4832, + [4932] = 4889, + [4933] = 4910, + [4934] = 4844, + [4935] = 4893, + [4936] = 4853, + [4937] = 4854, + [4938] = 4832, + [4939] = 4838, + [4940] = 4853, + [4941] = 4844, + [4942] = 4876, + [4943] = 4853, + [4944] = 4854, + [4945] = 4832, + [4946] = 4839, + [4947] = 4914, + [4948] = 4844, + [4949] = 4949, + [4950] = 4853, + [4951] = 4854, + [4952] = 4832, + [4953] = 4953, + [4954] = 4844, + [4955] = 4839, + [4956] = 4853, + [4957] = 4854, + [4958] = 4832, + [4959] = 4953, + [4960] = 4844, + [4961] = 4853, + [4962] = 4854, + [4963] = 4832, + [4964] = 4847, + [4965] = 4844, + [4966] = 4853, + [4967] = 4854, + [4968] = 4832, + [4969] = 4969, + [4970] = 4854, + [4971] = 4892, + [4972] = 4972, + [4973] = 4973, + [4974] = 4974, + [4975] = 4975, + [4976] = 475, + [4977] = 4832, + [4978] = 4865, + [4979] = 4848, + [4980] = 4980, + [4981] = 4981, + [4982] = 4849, + [4983] = 4983, + [4984] = 4980, + [4985] = 4985, + [4986] = 4837, + [4987] = 4850, + [4988] = 4876, [4989] = 4989, - [4990] = 4801, - [4991] = 4991, - [4992] = 4851, - [4993] = 4797, - [4994] = 4810, - [4995] = 4929, + [4990] = 4990, + [4991] = 4834, + [4992] = 4992, + [4993] = 4993, + [4994] = 4866, + [4995] = 4849, [4996] = 4996, - [4997] = 4997, - [4998] = 4916, - [4999] = 2541, - [5000] = 4862, - [5001] = 4791, - [5002] = 5002, - [5003] = 4809, - [5004] = 4933, - [5005] = 5005, - [5006] = 4827, - [5007] = 5007, - [5008] = 4819, - [5009] = 4791, - [5010] = 4863, - [5011] = 4810, - [5012] = 4929, - [5013] = 4820, - [5014] = 4809, - [5015] = 4929, - [5016] = 4803, + [4997] = 4876, + [4998] = 4837, + [4999] = 4840, + [5000] = 5000, + [5001] = 4859, + [5002] = 485, + [5003] = 4837, + [5004] = 5004, + [5005] = 4862, + [5006] = 497, + [5007] = 4989, + [5008] = 2400, + [5009] = 4874, + [5010] = 5010, + [5011] = 480, + [5012] = 5012, + [5013] = 5012, + [5014] = 5014, + [5015] = 5004, + [5016] = 4953, [5017] = 5017, - [5018] = 4797, - [5019] = 4871, - [5020] = 4801, - [5021] = 5021, - [5022] = 4792, - [5023] = 4836, - [5024] = 5024, - [5025] = 4807, - [5026] = 2526, - [5027] = 4808, - [5028] = 4793, - [5029] = 4801, - [5030] = 5030, - [5031] = 4794, - [5032] = 4851, - [5033] = 4836, - [5034] = 4827, - [5035] = 5035, - [5036] = 4967, - [5037] = 4794, - [5038] = 4997, - [5039] = 4862, - [5040] = 4840, - [5041] = 4809, - [5042] = 4823, - [5043] = 4929, - [5044] = 4797, - [5045] = 936, - [5046] = 4827, - [5047] = 4809, - [5048] = 498, - [5049] = 4827, - [5050] = 4851, - [5051] = 4797, - [5052] = 4891, - [5053] = 4929, - [5054] = 4797, - [5055] = 4810, - [5056] = 4809, - [5057] = 4916, - [5058] = 4920, - [5059] = 4921, - [5060] = 4922, - [5061] = 4819, - [5062] = 886, - [5063] = 4959, - [5064] = 4943, - [5065] = 4803, - [5066] = 4929, - [5067] = 4798, - [5068] = 4928, - [5069] = 500, - [5070] = 4793, - [5071] = 4802, - [5072] = 4794, - [5073] = 503, - [5074] = 4820, - [5075] = 490, - [5076] = 4792, - [5077] = 4996, - [5078] = 4793, - [5079] = 4794, - [5080] = 4809, - [5081] = 4820, - [5082] = 4823, - [5083] = 4967, - [5084] = 4791, - [5085] = 4816, - [5086] = 5021, + [5018] = 5018, + [5019] = 4838, + [5020] = 5020, + [5021] = 4850, + [5022] = 4844, + [5023] = 937, + [5024] = 5010, + [5025] = 4859, + [5026] = 4795, + [5027] = 4889, + [5028] = 5010, + [5029] = 485, + [5030] = 4851, + [5031] = 4850, + [5032] = 5032, + [5033] = 5033, + [5034] = 4834, + [5035] = 4969, + [5036] = 5036, + [5037] = 4856, + [5038] = 4842, + [5039] = 5039, + [5040] = 5040, + [5041] = 4893, + [5042] = 4866, + [5043] = 5043, + [5044] = 4838, + [5045] = 4853, + [5046] = 4854, + [5047] = 4832, + [5048] = 5014, + [5049] = 4879, + [5050] = 4835, + [5051] = 485, + [5052] = 4910, + [5053] = 5053, + [5054] = 4837, + [5055] = 4889, + [5056] = 2411, + [5057] = 4893, + [5058] = 4838, + [5059] = 5000, + [5060] = 5060, + [5061] = 4839, + [5062] = 4850, + [5063] = 4892, + [5064] = 4839, + [5065] = 5010, + [5066] = 956, + [5067] = 4854, + [5068] = 4953, + [5069] = 497, + [5070] = 2430, + [5071] = 5071, + [5072] = 4856, + [5073] = 5073, + [5074] = 4844, + [5075] = 4913, + [5076] = 5076, + [5077] = 4859, + [5078] = 4992, + [5079] = 5079, + [5080] = 5080, + [5081] = 4856, + [5082] = 5032, + [5083] = 4859, + [5084] = 4850, + [5085] = 4866, + [5086] = 4834, [5087] = 5087, - [5088] = 5002, - [5089] = 4943, - [5090] = 4868, - [5091] = 4870, - [5092] = 4960, - [5093] = 5002, - [5094] = 4916, - [5095] = 4920, - [5096] = 4921, - [5097] = 4922, - [5098] = 4797, - [5099] = 4943, - [5100] = 4791, - [5101] = 4827, - [5102] = 5102, - [5103] = 5103, - [5104] = 4871, - [5105] = 4798, - [5106] = 4916, - [5107] = 4920, - [5108] = 4921, - [5109] = 4922, - [5110] = 4916, - [5111] = 4920, - [5112] = 4921, - [5113] = 4922, - [5114] = 4916, - [5115] = 4920, - [5116] = 4921, - [5117] = 4922, - [5118] = 4916, - [5119] = 4921, - [5120] = 4922, - [5121] = 4916, - [5122] = 4921, - [5123] = 4922, - [5124] = 4916, - [5125] = 4921, - [5126] = 4922, - [5127] = 4916, - [5128] = 4921, - [5129] = 4922, - [5130] = 4916, - [5131] = 4921, - [5132] = 4922, - [5133] = 4916, - [5134] = 4921, - [5135] = 4922, - [5136] = 4916, - [5137] = 4921, - [5138] = 4922, - [5139] = 4916, - [5140] = 4921, - [5141] = 4922, - [5142] = 4916, - [5143] = 4921, - [5144] = 4922, - [5145] = 4916, - [5146] = 4921, - [5147] = 4922, - [5148] = 4916, - [5149] = 4921, - [5150] = 4922, - [5151] = 4916, - [5152] = 4921, - [5153] = 4922, - [5154] = 4916, - [5155] = 4921, - [5156] = 4922, - [5157] = 4823, - [5158] = 4801, - [5159] = 5035, - [5160] = 4810, - [5161] = 5161, - [5162] = 5162, - [5163] = 4828, - [5164] = 4924, - [5165] = 5165, - [5166] = 5166, - [5167] = 4904, - [5168] = 4907, - [5169] = 5169, - [5170] = 5170, - [5171] = 5171, - [5172] = 4819, - [5173] = 5173, - [5174] = 4803, - [5175] = 4798, - [5176] = 4929, - [5177] = 4809, - [5178] = 4811, - [5179] = 4795, - [5180] = 4797, - [5181] = 4792, - [5182] = 4802, - [5183] = 4806, - [5184] = 4827, - [5185] = 4819, - [5186] = 5186, - [5187] = 4793, - [5188] = 4794, - [5189] = 4795, - [5190] = 4816, - [5191] = 4929, - [5192] = 4989, - [5193] = 4823, - [5194] = 4967, - [5195] = 4836, - [5196] = 4802, - [5197] = 4950, - [5198] = 4868, - [5199] = 4872, - [5200] = 5002, - [5201] = 2540, - [5202] = 4792, - [5203] = 5203, + [5088] = 4856, + [5089] = 5089, + [5090] = 4993, + [5091] = 4892, + [5092] = 4847, + [5093] = 4866, + [5094] = 4850, + [5095] = 5095, + [5096] = 4866, + [5097] = 4837, + [5098] = 5098, + [5099] = 4834, + [5100] = 4839, + [5101] = 4853, + [5102] = 4854, + [5103] = 4832, + [5104] = 4853, + [5105] = 4854, + [5106] = 4866, + [5107] = 4837, + [5108] = 4835, + [5109] = 4850, + [5110] = 4969, + [5111] = 4973, + [5112] = 4974, + [5113] = 4975, + [5114] = 5114, + [5115] = 4837, + [5116] = 4889, + [5117] = 4996, + [5118] = 4889, + [5119] = 2428, + [5120] = 5120, + [5121] = 4893, + [5122] = 4838, + [5123] = 4844, + [5124] = 4839, + [5125] = 4832, + [5126] = 4985, + [5127] = 4892, + [5128] = 4973, + [5129] = 5010, + [5130] = 4893, + [5131] = 4847, + [5132] = 5132, + [5133] = 4914, + [5134] = 5134, + [5135] = 4833, + [5136] = 4974, + [5137] = 4844, + [5138] = 4949, + [5139] = 4859, + [5140] = 4859, + [5141] = 4866, + [5142] = 4844, + [5143] = 4850, + [5144] = 5144, + [5145] = 4834, + [5146] = 4969, + [5147] = 4973, + [5148] = 4974, + [5149] = 4975, + [5150] = 5150, + [5151] = 4996, + [5152] = 4856, + [5153] = 4949, + [5154] = 4992, + [5155] = 768, + [5156] = 5156, + [5157] = 4866, + [5158] = 4990, + [5159] = 4969, + [5160] = 4973, + [5161] = 4974, + [5162] = 4975, + [5163] = 4969, + [5164] = 4973, + [5165] = 4974, + [5166] = 4975, + [5167] = 4969, + [5168] = 4973, + [5169] = 4974, + [5170] = 4975, + [5171] = 4969, + [5172] = 4974, + [5173] = 4975, + [5174] = 4969, + [5175] = 4974, + [5176] = 4975, + [5177] = 4969, + [5178] = 4974, + [5179] = 4975, + [5180] = 4969, + [5181] = 4974, + [5182] = 4975, + [5183] = 4969, + [5184] = 4974, + [5185] = 4975, + [5186] = 4969, + [5187] = 4974, + [5188] = 4975, + [5189] = 4969, + [5190] = 4974, + [5191] = 4975, + [5192] = 4969, + [5193] = 4974, + [5194] = 4975, + [5195] = 4969, + [5196] = 4974, + [5197] = 4975, + [5198] = 4969, + [5199] = 4974, + [5200] = 4975, + [5201] = 4969, + [5202] = 4974, + [5203] = 4975, + [5204] = 4969, + [5205] = 4974, + [5206] = 4975, + [5207] = 4969, + [5208] = 4974, + [5209] = 4975, + [5210] = 4969, + [5211] = 4974, + [5212] = 4975, + [5213] = 4969, + [5214] = 4974, + [5215] = 4975, + [5216] = 5216, + [5217] = 4853, + [5218] = 4852, + [5219] = 4854, + [5220] = 4832, + [5221] = 5036, + [5222] = 4848, + [5223] = 4845, + [5224] = 4835, + [5225] = 4992, + [5226] = 5226, + [5227] = 4865, + [5228] = 5228, + [5229] = 4837, + [5230] = 4889, + [5231] = 4993, + [5232] = 5232, + [5233] = 4893, + [5234] = 4838, + [5235] = 4834, + [5236] = 4839, + [5237] = 5226, + [5238] = 4831, + [5239] = 4975, + [5240] = 4892, + [5241] = 4996, + [5242] = 5010, + [5243] = 4993, + [5244] = 4835, + [5245] = 4910, + [5246] = 5010, + [5247] = 4831, + [5248] = 4879, + [5249] = 4844, + [5250] = 4892, + [5251] = 4972, + [5252] = 4914, + [5253] = 4850, + [5254] = 4835, + [5255] = 4834, + [5256] = 5010, + [5257] = 4866, + [5258] = 4850, + [5259] = 4853, + [5260] = 4834, + [5261] = 5261, }; static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -10679,1888 +10723,1971 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '$', 1510, - '&', 824, - '\'', 1688, - '(', 1561, - ')', 1616, - '*', 1112, - '+', 1117, - ',', 1469, - '-', 1118, - '.', 1721, - '/', 1114, - ':', 1713, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1144, - '?', 1717, - '@', 1481, - '[', 1665, - ']', 1466, - '^', 1731, - '_', 1502, - '`', 1692, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1483, + '\r', 9, + '!', 1722, + '"', 1689, + '#', 2193, + '$', 1514, + '&', 828, + '\'', 1692, + '(', 1565, + ')', 1620, + '*', 1116, + '+', 1121, + ',', 1473, + '-', 1122, + '.', 1725, + '/', 1118, + ':', 1717, + ';', 1455, + '<', 1145, + '=', 677, + '>', 1148, + '?', 1721, + '@', 1486, + '[', 1669, + ']', 1470, + '^', 1736, + '_', 1507, + '`', 1696, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); + lookahead == ' ') SKIP(573); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1373); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1377); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1448); + ADVANCE_MAP( + '\n', 1483, + '!', 1722, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 1726, + '>', 1484, + '?', 1721, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1724, - ':', 1463, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1479, - '?', 1717, - '@', 1481, - '[', 1465, - ']', 1466, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1483, + '!', 1722, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 1726, + '>', 1484, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(3); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`') ADVANCE(1373); + lookahead == ' ') SKIP(2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1725, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '?', 1717, - '[', 1465, - ']', 1466, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1483, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 1726, + '>', 1484, + '?', 1721, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`') ADVANCE(1373); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1720, - ':', 1713, - ';', 1451, - '=', 323, - '?', 1717, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1483, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 1726, + '>', 1484, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1722, - ':', 1713, - ';', 1451, - '=', 323, - '?', 1717, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1483, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 2142, + ':', 1467, + '>', 1484, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(4); + lookahead == ' ') SKIP(5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1483, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 2142, + '<', 1145, + '>', 1484, + '@', 1486, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(8); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1483, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 2142, + '>', 1484, + '@', 1486, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(8); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '\n', 1483, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 2142, + '>', 1484, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(8); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 9: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\n') ADVANCE(1452); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '!', 1722, + '#', 2193, + '$', 1474, + '(', 1471, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1729, + ':', 1467, + ';', 1455, + '<', 1145, + '=', 677, + '>', 1484, + '?', 1721, + '@', 1486, + '[', 1469, + ']', 1470, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(11); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`') ADVANCE(1377); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '!', 1722, + '#', 2193, + '$', 1474, + '(', 1471, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1730, + ':', 1467, + ';', 1455, + '=', 677, + '>', 1484, + '?', 1721, + '[', 1469, + ']', 1470, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(11); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`') ADVANCE(1377); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1808, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '!', 1722, + '#', 2193, + ')', 1472, + '.', 1724, + ':', 1717, + ';', 1455, + '=', 328, + '?', 1721, + 'a', 424, + 'e', 293, + 'i', 390, + 'o', 294, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(12); END_STATE(); case 13: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1452, + '\r', 9, + '!', 1722, + '#', 2193, + ')', 1472, + '.', 1727, + ':', 1717, + ';', 1455, + '=', 328, + '?', 1721, + 'a', 424, + 'e', 293, + 'i', 390, + 'o', 294, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(12); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1608, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1820, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 16: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1810, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1810, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(36); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1810, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 20: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - '{', 1498, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1813, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(20); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 21: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); + lookahead == ' ') SKIP(36); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 22: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 23: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 24: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1598, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 25: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); + lookahead == ' ') SKIP(36); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 26: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 27: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 28: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - '{', 1498, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '$', 1474, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 341, + '/', 1571, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 428, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 454, + 's', 488, + 'x', 434, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, '-', 1491, - '.', 697, - '0', 1623, - ':', 1713, - ';', 1451, - '=', 1729, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '}', 1499, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, '-', 1491, - '.', 697, - '0', 1623, - ':', 1713, - ';', 1451, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '}', 1499, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 292, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 294, + 's', 488, + 'x', 434, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 1580, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, '-', 1491, - '.', 698, - '0', 1623, - ':', 1463, - ';', 1451, - '<', 1141, - '=', 323, - '>', 1479, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '/', 1571, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead)) ADVANCE(824); + lookahead == ' ') SKIP(31); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 1580, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, '-', 1491, - '.', 698, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 323, - '>', 1479, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(824); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, '-', 1491, - '.', 697, - '0', 1623, - ';', 1451, - '=', 1729, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '\t', 1450, - ' ', 1450, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 292, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 294, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == '\t' || + lookahead == ' ') SKIP(33); END_STATE(); case 34: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, '-', 1491, - '.', 697, - '0', 1623, - '=', 673, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '/', 1571, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead == ' ') SKIP(34); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, '-', 1491, - '.', 697, - '0', 1623, - '=', 673, - '>', 1479, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '/', 1571, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 292, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 294, + 's', 488, + 'x', 434, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); END_STATE(); case 36: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, '-', 1491, - '.', 697, - '0', 1623, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 691, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 'o', 693, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, + '/', 1571, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 428, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 454, + 's', 488, + 'x', 434, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); END_STATE(); case 37: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 299, - '.', 718, - '=', 1729, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1474, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 303, + '.', 2003, + '0', 1628, + 'N', 2052, + '[', 1469, + '_', 1506, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(37); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); case 38: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 299, - '.', 718, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1474, + '\'', 1692, + '(', 1471, + '+', 2087, + ',', 1473, + '-', 2086, + '.', 2085, + '0', 1629, + 'N', 2105, + '[', 1469, + ']', 1470, + '_', 2092, + '`', 1696, + 'f', 2095, + 'n', 2104, + 't', 2101, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2111); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2133); END_STATE(); case 39: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 308, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1474, + '\'', 1692, + '(', 1471, '-', 1491, - '.', 309, - '0', 1626, - ':', 1713, - 'N', 533, - '[', 1465, - '_', 342, - '`', 1692, - 'f', 347, - 'n', 442, - 't', 457, - '{', 1498, + '`', 1696, + 'f', 1519, + 'n', 1523, + 't', 1524, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(542); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 40: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 1580, - '-', 1491, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1472, + '+', 706, + '-', 1496, '.', 701, - '0', 1628, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, + '0', 1627, + ':', 1717, + ';', 1455, + '=', 1734, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, 'w', 751, - '}', 1499, + '{', 1503, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(41); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 41: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1491, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2027, - 't', 2030, - '{', 1498, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1472, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + ':', 1717, + ';', 1455, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 751, + '{', 1503, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 42: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ':', 1713, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1989, - 'f', 2015, - 'n', 2043, - 'o', 1990, - 't', 2030, - '{', 1498, - '|', 1452, - '}', 1499, - '\t', 1449, - ' ', 1449, - 'I', 2051, - 'i', 2051, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + ';', 1455, + '=', 1734, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, + '\t', 1454, + ' ', 1454, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2070); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 43: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1993, - 'f', 2015, - 'n', 2043, - 'o', 1994, - 't', 2030, - '{', 1498, - '\t', 1450, - ' ', 1450, - 'I', 2051, - 'i', 2051, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + '=', 677, + '>', 1484, + '@', 1486, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '\t' || + lookahead == ' ') SKIP(44); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 44: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2082, - ',', 1469, - '-', 2081, - '.', 2083, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + '=', 677, + '>', 1484, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(44); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 45: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2139, - '-', 2138, - '.', 2137, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 1496, + '.', 701, '0', 1627, - 'N', 2154, - '[', 1465, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, - '{', 1498, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 695, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 'o', 697, + 't', 776, + 'u', 789, + 'w', 751, + '{', 1503, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2160); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2174); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 46: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 298, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 1501, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '}', 1499, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 304, + '.', 722, + '=', 1734, + 'I', 813, + 'N', 809, + '[', 1469, + ']', 1470, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); + END_STATE(); + case 47: + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 304, + '.', 722, + 'I', 813, + 'N', 809, + '[', 1469, + ']', 1470, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); + END_STATE(); + case 48: + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 313, + '-', 1496, + '.', 314, + '0', 1630, + ':', 1717, + 'N', 535, + '[', 1469, + '_', 346, + '`', 1696, + 'f', 351, + 'n', 445, + 't', 459, + '{', 1503, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(48); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(544); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1646); + END_STATE(); + case 49: + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 1584, + '-', 1496, + '.', 705, + '0', 1632, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '}', 1504, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(49); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); + END_STATE(); + case 50: + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 1496, + '.', 2003, + '0', 1628, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2032, + 't', 2035, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(46); + lookahead == ' ') SKIP(50); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); - case 47: + case 51: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2082, - ',', 1469, - '-', 2081, - '.', 2080, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 1493, + '.', 2004, + '0', 1628, + ':', 1717, + ';', 1455, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'e', 1994, + 'f', 2020, + 'n', 2048, + 'o', 1995, + 't', 2035, + '{', 1503, + '|', 1456, + '}', 1504, + '\t', 1453, + ' ', 1453, + 'I', 2056, + 'i', 2056, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(47); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + lookahead != ']') ADVANCE(2075); END_STATE(); - case 48: + case 52: + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 1493, + '.', 2004, + '0', 1628, + ';', 1455, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'e', 1998, + 'f', 2020, + 'n', 2048, + 'o', 1999, + 't', 2035, + '{', 1503, + '\t', 1454, + ' ', 1454, + 'I', 2056, + 'i', 2056, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); + END_STATE(); + case 53: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '-', 1486, - '`', 1692, - 'f', 1515, - 'n', 1519, - 't', 1520, - '{', 1498, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2087, + ',', 1473, + '-', 2086, + '.', 2088, + '0', 1629, + 'N', 2105, + '[', 1469, + ']', 1470, + '_', 2092, + '`', 1696, + 'f', 2095, + 'n', 2104, + 't', 2101, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(48); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + lookahead == ' ') SKIP(53); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2111); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2133); END_STATE(); - case 49: + case 54: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 2139, - '-', 2138, - '.', 2137, - '>', 1479, - 'N', 2154, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2144, + '-', 2143, + '.', 2142, + '0', 1631, + 'N', 2159, + '[', 1469, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(49); + lookahead == ' ') SKIP(54); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2174); + lookahead == 'i') ADVANCE(2165); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); - case 50: + case 55: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 1492, - '.', 849, - '0', 864, - ':', 1713, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 944, - 't', 959, - '{', 1498, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2196, + '$', 1476, + '\'', 1692, + '(', 1471, + '+', 852, + '-', 1497, + '.', 853, + '0', 868, + ':', 1717, + 'N', 1024, + '[', 1469, + '_', 870, + '`', 1696, + 'f', 878, + 'n', 948, + 't', 963, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); + lookahead == ' ') SKIP(48); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(869); + lookahead == 'i') ADVANCE(1029); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(873); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1050); END_STATE(); - case 51: + case 56: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '+', 1963, - ',', 1469, - '-', 1489, - '.', 1601, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '+', 1966, + ',', 1473, + '-', 1494, + '.', 1604, + ':', 1467, + '=', 677, + ']', 1470, + '_', 1349, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(78); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 52: + case 57: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '+', 1963, - ',', 1469, - '-', 1489, - '.', 1964, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '+', 1966, + ',', 1473, + '-', 1494, + '.', 1967, + ':', 1467, + '=', 677, + ']', 1470, + '_', 1349, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(78); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 53: + case 58: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1599, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1605, + ':', 1467, + '=', 677, + 'E', 1339, + 'G', 1347, + 'K', 1347, + 'M', 1347, + 'P', 1347, + 'T', 1347, + ']', 1470, + 'd', 1352, + 'e', 1338, + 'g', 1346, + 'h', 1370, + 'k', 1346, + 'm', 1348, + 'n', 1372, + 'p', 1346, + 's', 1357, + 't', 1346, + 'u', 1372, + 'w', 1358, + '|', 1456, + 0xb5, 1372, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1661); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12568,29 +12695,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 54: + case 59: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1599, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1605, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1340); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12598,49 +12725,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 55: + case 60: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - '_', 1345, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1970, + ':', 1467, + '=', 677, + 'E', 1339, + 'G', 1347, + 'K', 1347, + 'M', 1347, + 'P', 1347, + 'T', 1347, + ']', 1470, + '_', 1349, + 'd', 1352, + 'e', 1338, + 'g', 1346, + 'h', 1370, + 'k', 1346, + 'm', 1348, + 'n', 1372, + 'p', 1346, + 's', 1357, + 't', 1346, + 'u', 1372, + 'w', 1358, + '|', 1456, + 0xb5, 1372, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1661); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12648,49 +12775,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 56: + case 61: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1970, + ':', 1467, + '=', 677, + 'E', 1339, + 'G', 1347, + 'K', 1347, + 'M', 1347, + 'P', 1347, + 'T', 1347, + ']', 1470, + 'd', 1352, + 'e', 1338, + 'g', 1346, + 'h', 1370, + 'k', 1346, + 'm', 1348, + 'n', 1372, + 'p', 1346, + 's', 1357, + 't', 1346, + 'u', 1372, + 'w', 1358, + '|', 1456, + 0xb5, 1372, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1661); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12698,48 +12825,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 57: + case 62: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1343, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1342, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1970, + ':', 1467, + '=', 677, + 'E', 1347, + 'G', 1347, + 'K', 1347, + 'M', 1347, + 'P', 1347, + 'T', 1347, + ']', 1470, + 'd', 1352, + 'e', 1346, + 'g', 1346, + 'h', 1370, + 'k', 1346, + 'm', 1348, + 'n', 1372, + 'p', 1346, + 's', 1357, + 't', 1346, + 'u', 1372, + 'w', 1358, + '|', 1456, + 0xb5, 1372, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1661); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12747,30 +12874,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 58: + case 63: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1970, + ':', 1467, + '=', 677, + ']', 1470, + '_', 1349, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1340); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12778,30 +12905,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 59: + case 64: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1970, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1340); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12809,27 +12936,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 60: + case 65: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1970, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12837,29 +12964,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 61: + case 66: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1600, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1603, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1340); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12867,30 +12994,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 62: + case 67: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1968, + ':', 1467, + '=', 677, + ']', 1470, + '_', 1349, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1340); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12898,30 +13025,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 63: + case 68: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1968, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1340); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12929,27 +13056,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); - case 64: + case 69: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1968, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12957,3122 +13084,3088 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); - END_STATE(); - case 65: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); - END_STATE(); - case 66: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(75); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); - END_STATE(); - case 67: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - '=', 1796, - '_', 1813, - '|', 1452, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); - END_STATE(); - case 68: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); - END_STATE(); - case 69: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(75); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 70: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - '=', 1796, - '_', 1813, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1608, + ';', 1455, + '_', 1818, + '\t', 1454, + ' ', 1454, + '+', 1796, + '-', 1796, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - '?', 1483, - '[', 1665, - ']', 1466, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1608, + '=', 1801, + '_', 1818, + 'i', 1850, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(81); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 72: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - '[', 1465, - ']', 1466, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1608, + '=', 1801, + '_', 1818, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(82); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - '+', 314, - ',', 1469, - '-', 1490, - '.', 313, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1820, + ';', 1455, + '_', 1818, + '\t', 1454, + ' ', 1454, + '+', 1796, + '-', 1796, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(73); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 74: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1820, + '=', 1801, + '_', 1818, + 'i', 1850, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(81); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 75: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '.', 337, - '=', 323, - 'i', 386, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1820, + '=', 1801, + '_', 1818, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(75); + lookahead == ' ') SKIP(82); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1471, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 317, + ':', 1467, + '=', 677, + '[', 1469, + ']', 1470, + '|', 1456, + ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 77: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1471, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1968, + ':', 1467, + '=', 677, + '[', 1669, + ']', 1470, + '|', 1456, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(76); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(1991); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1377); END_STATE(); case 78: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1595, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + ')', 1472, + '+', 319, + ',', 1473, + '-', 1495, + '.', 318, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(78); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 79: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 317, + ':', 1467, + '=', 677, + '?', 1488, + ']', 1470, + '|', 1456, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(80); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 80: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 317, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(80); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '.', 341, + '=', 328, + 'i', 389, + '|', 1456, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(81); + if (lookahead == '+' || + lookahead == '-') ADVANCE(319); END_STATE(); case 82: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '.') ADVANCE(341); + if (lookahead == '=') ADVANCE(328); + if (lookahead == '|') ADVANCE(1456); + if (lookahead == '\t' || + lookahead == ' ') SKIP(82); + if (lookahead == '+' || + lookahead == '-') ADVANCE(319); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + '.', 1599, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '\t', 1450, - ' ', 1450, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + '.', 1599, + ';', 1455, + '\t', 1454, + ' ', 1454, + 'E', 1824, + 'e', 1824, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 85: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1594, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + '.', 1795, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + '.', 1795, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 87: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + '.', 1795, + ';', 1455, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1814, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 88: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ';') ADVANCE(1451); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + '.', 1795, + ';', 1455, + '_', 1818, + '\t', 1454, + ' ', 1454, + 'E', 1824, + 'e', 1824, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 89: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 297, - '.', 1723, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '@', 1481, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '{', 1498, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + '.', 1795, + ';', 1455, + '\t', 1454, + ' ', 1454, + 'E', 1824, + 'e', 1824, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 90: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 297, - '.', 1723, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '{', 1498, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + '.', 1795, + ';', 1455, + '\t', 1454, + ' ', 1454, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 310, - ':', 1463, - ';', 1451, - '=', 675, - '>', 1479, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + '.', 1598, + ';', 1455, + '\t', 1454, + ' ', 1454, + 'E', 1824, + 'e', 1824, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(92); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - ':', 1463, - ';', 1451, - '=', 675, - '>', 1479, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ';', 1455, + '_', 1818, + '\t', 1454, + ' ', 1454, + 'E', 1824, + 'e', 1824, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ',', 1469, - ':', 1463, - '=', 673, - ']', 1466, - 'i', 422, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ';', 1455, + '\t', 1454, + ' ', 1454, + 'E', 1824, + 'e', 1824, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(93); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1666); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 94: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1595, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, - ); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == ';') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1454); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 95: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1595, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1471, + ')', 1472, + ',', 1473, + '-', 302, + '.', 1728, + ':', 1467, + ';', 1455, + '=', 677, + '>', 1484, + '@', 1486, + '[', 1469, + ']', 1470, + 'c', 1355, + 'f', 1374, + 'i', 1363, + 'o', 1366, + 'v', 1351, + '{', 1503, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(96); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1471, + ')', 1472, + ',', 1473, + '-', 302, + '.', 1728, + ':', 1467, + ';', 1455, + '=', 677, + '>', 1484, + '[', 1469, + ']', 1470, + 'c', 1355, + 'f', 1374, + 'i', 1363, + 'o', 1366, + 'v', 1351, + '{', 1503, + '}', 1504, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(96); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1471, + ')', 1472, + '-', 302, + '.', 315, + ':', 1467, + ';', 1455, + '=', 679, + '>', 1484, + '[', 1469, + 'a', 424, + 'e', 293, + 'i', 390, + 'o', 294, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(98); END_STATE(); case 98: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1471, + ')', 1472, + '-', 302, + ':', 1467, + ';', 1455, + '=', 679, + '>', 1484, + '[', 1469, + 'a', 424, + 'e', 293, + 'i', 390, + 'o', 294, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(98); END_STATE(); case 99: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '#', 2193, + ',', 1473, + ':', 1467, + '=', 677, + ']', 1470, + 'i', 425, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(99); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1670); END_STATE(); case 100: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '#', 2193, + '.', 1599, + '=', 1801, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'i', 1850, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(121); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 101: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '#', 2193, + '.', 1599, + '=', 1801, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(122); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 102: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, - ); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1599); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(121); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 103: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, - ); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1599); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(122); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 104: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, + '\n', 1452, + '\r', 9, + '#', 2193, + '.', 1795, + '=', 1801, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'i', 1850, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(121); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + '.', 1795, + '=', 1801, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(122); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + '.', 1795, + '=', 1801, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'i', 1850, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(121); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + '.', 1795, + '=', 1801, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(122); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + '.', 1795, + '=', 1801, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1814, + 'g', 1814, + 'h', 1883, + 'i', 1850, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(121); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + '.', 1795, + '=', 1801, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1814, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(122); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 110: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + '.', 1795, + '=', 1801, + '_', 1818, + 'i', 1850, + '|', 1456, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(121); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(122); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 112: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ':', 1713, - ';', 1451, - '=', 1729, - 'e', 288, - 'o', 290, - '|', 1452, - '}', 1499, - '\t', 1449, - ' ', 1449, - ); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); + if (lookahead == '\t' || + lookahead == ' ') SKIP(121); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); + lookahead == ' ') SKIP(121); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ';') ADVANCE(1451); - if (lookahead == '=') ADVANCE(1729); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + lookahead == ' ') SKIP(122); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(323); - if (lookahead == 'i') ADVANCE(386); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(122); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1598); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(121); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1598); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(122); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '|') ADVANCE(1452); - if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + ':', 1717, + ';', 1455, + '=', 1734, + 'e', 293, + 'o', 295, + '|', 1456, + '}', 1504, + '\t', 1453, + ' ', 1453, + ); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == ':') ADVANCE(1717); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(119); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == ';') ADVANCE(1455); + if (lookahead == '=') ADVANCE(1734); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1454); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1451); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(328); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(121); END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(328); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(122); END_STATE(); case 123: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2191); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(121); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 124: - ADVANCE_MAP( - '\n', 1707, - '\r', 1707, - '!', 1719, - '#', 2188, - '(', 1561, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1722, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1481, - '[', 1465, - ']', 1466, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, - '\t', 1708, - ' ', 1708, - 0x0b, 1707, - '\f', 1707, - ',', 1707, - ); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == '|') ADVANCE(1456); + if (lookahead == '\t' || + lookahead == ' ') SKIP(122); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 125: - ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '$', 181, - '\'', 1688, - '.', 1720, - ';', 1716, - '?', 1717, - '`', 1692, - '\t', 125, - ' ', 125, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); + if (lookahead == '\t' || + lookahead == ' ') SKIP(121); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 126: - ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '$', 181, - '\'', 1688, - '.', 1720, - ';', 1716, - '?', 1717, - '`', 1692, - '\t', 125, - ' ', 125, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (lookahead != 0 && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '[' && - lookahead != ']' && - lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1730); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); + if (lookahead == '\t' || + lookahead == ' ') SKIP(121); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 127: - ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - '?', 1717, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - ); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') SKIP(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(122); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 128: - ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - ); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || - lookahead == ' ') SKIP(128); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(122); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 129: - ADVANCE_MAP( - '!', 1718, - '#', 2188, - ',', 1707, - '.', 1723, - ';', 1716, - '?', 1717, - ']', 1466, - '\t', 1710, - ' ', 1710, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); + if (lookahead == '\n') ADVANCE(1452); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2196); + if (lookahead == ':') ADVANCE(1717); + if (lookahead == '{') ADVANCE(1503); + if (lookahead == '\t' || + lookahead == ' ') SKIP(119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 130: ADVANCE_MAP( - '!', 1718, - '#', 2188, - '.', 1722, - ':', 1713, - '>', 1479, - '?', 1717, - 'E', 333, - 'G', 333, - 'K', 333, - 'M', 333, - 'P', 333, - 'T', 333, - ']', 1466, - 'd', 346, - 'e', 332, - 'g', 332, - 'h', 451, - 'k', 332, - 'm', 335, - 'n', 469, - 'p', 332, - 's', 376, - 't', 332, - 'u', 469, - 'w', 408, - '}', 1499, - 0xb5, 469, + '\n', 1711, + '\r', 1711, + '!', 1723, + '#', 2193, + '(', 1565, + '*', 1517, + '+', 1582, + '-', 1500, + '.', 1727, + '/', 1572, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 678, + '>', 1485, + '?', 1721, + '[', 1469, + ']', 1470, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, '\t', 1712, ' ', 1712, - 'B', 1653, - 'b', 1653, + 0x0b, 1711, + '\f', 1711, + ',', 1711, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); END_STATE(); case 131: ADVANCE_MAP( - '!', 1718, - '#', 2188, - '.', 1723, - ':', 1463, - '>', 1479, - '?', 1717, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, + '!', 1722, + '"', 1689, + '#', 2193, + '$', 186, + '\'', 1692, + '.', 1724, + ';', 1720, + '?', 1721, + '`', 1696, + '\t', 131, + ' ', 131, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(323); END_STATE(); case 132: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1722, + '"', 1689, + '#', 2193, + '$', 186, + '\'', 1692, + '.', 1724, + ';', 1720, + '?', 1721, + '`', 1696, + '\t', 131, + ' ', 131, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(323); + if (lookahead != 0 && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '[' && + lookahead != ']' && + lookahead != '^' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1735); END_STATE(); case 133: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1722, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 1731, + '?', 1721, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 134: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1722, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 1731, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(134); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 135: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1722, + '#', 2193, + ',', 1711, + '.', 1728, + ';', 1720, + '?', 1721, + ']', 1470, + '\t', 1714, + ' ', 1714, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1715); END_STATE(); case 136: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1722, + '#', 2193, + '.', 1727, + ':', 1717, + '?', 1721, + ']', 1470, + '}', 1504, + '\t', 1716, + ' ', 1716, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1711); END_STATE(); case 137: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1722, + '#', 2193, + '.', 1728, + ':', 1717, + '?', 1721, + ']', 1470, + '}', 1504, + '\t', 1716, + ' ', 1716, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1711); END_STATE(); case 138: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1808, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1608, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(152); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 139: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1820, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(152); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 140: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1810, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 141: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 142: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1810, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 143: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1810, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 144: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'B', 1657, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1813, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 145: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 146: ADVANCE_MAP( - '!', 320, - '#', 2188, - '$', 1470, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - '<', 1550, - '=', 321, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 147: ADVANCE_MAP( - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 321, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 148: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1561, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - ';', 1716, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '\t', 151, - ' ', 151, - 'I', 2051, - 'i', 2051, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1598, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + if (lookahead == '\t' || + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 149: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 1580, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, '-', 1491, - '.', 701, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); + END_STATE(); + case 150: + ADVANCE_MAP( + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); + END_STATE(); + case 151: + ADVANCE_MAP( + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); + END_STATE(); + case 152: + ADVANCE_MAP( + '!', 325, + '#', 2193, + '$', 1474, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 341, + '/', 1571, + '<', 1554, + '=', 326, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 428, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 454, + 's', 488, + 'x', 434, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(152); + END_STATE(); + case 153: + ADVANCE_MAP( + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 326, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 428, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 454, + 's', 488, + 'x', 434, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(153); + END_STATE(); + case 154: + ADVANCE_MAP( + '"', 1689, + '#', 2193, + '$', 1474, + '\'', 1692, + '(', 1471, + '+', 2005, + ',', 1711, + '-', 312, + '.', 2003, '0', 1628, - ':', 1463, - '<', 1141, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - '\t', 1712, - ' ', 1712, + 'N', 2052, + '[', 1469, + '_', 1506, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, + '}', 1504, + '\t', 1713, + ' ', 1713, + 'I', 2056, + 'i', 2056, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); - case 150: + case 155: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - ':', 1713, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '"', 1689, + '#', 2193, + '$', 1474, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 312, + '.', 2003, + '0', 1628, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(150); + lookahead == ' ') SKIP(155); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && + lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); - case 151: + case 156: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - ';', 1716, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '\t', 151, - ' ', 151, - 'I', 2051, - 'i', 2051, + '"', 1689, + '#', 2193, + '$', 1474, + '\'', 1692, + '(', 1471, + '+', 2087, + '-', 2086, + '.', 2085, + '0', 1629, + 'N', 2105, + '[', 1469, + ']', 1470, + '_', 2092, + '`', 1696, + 'f', 2095, + 'n', 2104, + 't', 2101, + '{', 1503, + '\t', 1716, + ' ', 1716, + 'I', 2111, + 'i', 2111, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1711); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1645); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2133); END_STATE(); - case 152: + case 157: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1565, + '+', 2005, + '-', 312, + '.', 2003, + '0', 1628, + ';', 1720, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, + '\t', 160, + ' ', 160, + 'I', 2056, + 'i', 2056, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(152); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(323); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); - case 153: + case 158: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - ':', 1713, - 'N', 2047, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 1584, + '-', 1496, + '.', 705, + '0', 1632, + '<', 1145, + '>', 1484, + 'I', 813, + 'N', 809, + ']', 1470, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '}', 1504, + '\t', 1716, + ' ', 1716, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(153); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1711); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '@' && lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); - case 154: + case 159: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - 'N', 2047, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 312, + '.', 2003, + '0', 1628, + ':', 1717, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(154); + lookahead == ' ') SKIP(159); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && + (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); - case 155: + case 160: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2082, - '-', 2081, - '.', 2083, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, - '\t', 1712, - ' ', 1712, - 'I', 2106, - 'i', 2106, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 312, + '.', 2003, + '0', 1628, + ';', 1720, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, + '\t', 160, + ' ', 160, + 'I', 2056, + 'i', 2056, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(323); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); - case 156: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1471); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '`') ADVANCE(1692); + case 161: + ADVANCE_MAP( + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 312, + '.', 2003, + '0', 1628, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(156); + lookahead == ' ') SKIP(161); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); - case 157: + case 162: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - ',', 1707, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 1501, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '}', 1499, - '\t', 1709, - ' ', 1709, - 'I', 2051, - 'i', 2051, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 312, + '.', 2003, + ':', 1717, + 'N', 2052, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '\t' || + lookahead == ' ') SKIP(162); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + (lookahead < '0' || ';' < lookahead) && + lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); - case 158: + case 163: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 312, + '.', 2003, + 'N', 2052, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(158); + lookahead == ' ') SKIP(163); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && + lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); - case 159: + case 164: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2082, - '-', 2081, - '.', 2080, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, - '\t', 1712, - ' ', 1712, - 'I', 2106, - 'i', 2106, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2087, + '-', 2086, + '.', 2088, + '0', 1629, + 'N', 2105, + '[', 1469, + ']', 1470, + '_', 2092, + '`', 1696, + 'f', 2095, + 'n', 2104, + 't', 2101, + '{', 1503, + '\t', 1716, + ' ', 1716, + 'I', 2111, + 'i', 2111, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == ',') ADVANCE(1711); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1645); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2133); END_STATE(); - case 160: + case 165: + if (lookahead == '"') ADVANCE(1689); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1475); + if (lookahead == '\'') ADVANCE(1692); + if (lookahead == '(') ADVANCE(1471); + if (lookahead == '`') ADVANCE(1696); + if (lookahead == '\t' || + lookahead == ' ') SKIP(165); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1992); + END_STATE(); + case 166: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1561, - '+', 702, - '-', 307, - '.', 718, - ':', 1463, - '>', 1479, - 'I', 809, - 'N', 805, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - '\t', 1712, - ' ', 1712, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 312, + '.', 722, + ':', 1717, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == '\t' || + lookahead == ' ') SKIP(166); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); - case 161: + case 167: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 307, - '.', 718, - ':', 1713, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 312, + '.', 722, + 'I', 813, + 'N', 809, + ']', 1470, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '\t', 1716, + ' ', 1716, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); - case 162: + case 168: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - '?', 1717, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 1731, + '?', 1721, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); - case 163: + case 169: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 1731, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(169); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); - case 164: + case 170: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 718, - ':', 1713, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 722, + ':', 1717, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); - case 165: + case 171: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 718, - '=', 1729, - 'I', 1443, - 'N', 1438, - '_', 1379, - '`', 1692, - 'a', 1403, - 'c', 1380, - 'd', 1387, - 'e', 1408, - 'f', 1381, - 'i', 1378, - 'l', 1394, - 'm', 1383, - 'n', 1434, - 't', 1417, - 'u', 1423, - 'w', 1400, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 722, + '=', 1734, + 'I', 1447, + 'N', 1442, + '_', 1383, + '`', 1696, + 'a', 1407, + 'c', 1384, + 'd', 1391, + 'e', 1412, + 'f', 1385, + 'i', 1382, + 'l', 1398, + 'm', 1387, + 'n', 1438, + 't', 1421, + 'u', 1427, + 'w', 1404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1379); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(172); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1383); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1451); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); - case 166: + case 172: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 718, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 722, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(172); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); - case 167: + case 173: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 1596, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 1787, + '.', 1600, + 'E', 713, + 'G', 718, + 'I', 813, + 'K', 718, + 'M', 718, + 'N', 809, + 'P', 718, + 'T', 718, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 726, + 'e', 712, + 'f', 727, + 'g', 717, + 'h', 778, + 'i', 719, + 'k', 717, + 'l', 743, + 'm', 714, + 'n', 786, + 'p', 717, + 's', 744, + 't', 716, + 'u', 788, + 'w', 754, + 0xb5, 787, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(172); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1657); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); - case 168: + case 174: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 718, - 'I', 809, - 'N', 805, - '[', 1665, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 1787, + '.', 722, + 'I', 813, + 'N', 809, + '[', 1669, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(172); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); - case 169: + case 175: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 1787, + '.', 704, + 'E', 713, + 'G', 718, + 'I', 813, + 'K', 718, + 'M', 718, + 'N', 809, + 'P', 718, + 'T', 718, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 726, + 'e', 712, + 'f', 727, + 'g', 717, + 'h', 778, + 'i', 719, + 'k', 717, + 'l', 743, + 'm', 714, + 'n', 786, + 'p', 717, + 's', 744, + 't', 716, + 'u', 788, + 'w', 754, + 0xb5, 787, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(172); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1657); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); - case 170: + case 176: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 720, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 1787, + '.', 704, + 'E', 713, + 'G', 718, + 'I', 813, + 'K', 718, + 'M', 718, + 'N', 809, + 'P', 718, + 'T', 718, + '_', 724, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 726, + 'e', 712, + 'f', 727, + 'g', 717, + 'h', 778, + 'i', 719, + 'k', 717, + 'l', 743, + 'm', 714, + 'n', 786, + 'p', 717, + 's', 744, + 't', 716, + 'u', 788, + 'w', 754, + 0xb5, 787, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(172); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1657); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == '^') ADVANCE(1939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); - case 171: + case 177: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 714, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 711, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 1787, + '.', 704, + 'E', 718, + 'G', 718, + 'I', 813, + 'K', 718, + 'M', 718, + 'N', 809, + 'P', 718, + 'T', 718, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 726, + 'e', 715, + 'f', 727, + 'g', 717, + 'h', 778, + 'i', 719, + 'k', 717, + 'l', 743, + 'm', 714, + 'n', 786, + 'p', 717, + 's', 744, + 't', 716, + 'u', 788, + 'w', 754, + 0xb5, 787, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(172); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1657); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); - END_STATE(); - case 172: - ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 2139, - '-', 2138, - '.', 2137, - '>', 1479, - 'N', 2154, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, - '\t', 1712, - ' ', 1712, - 'I', 2160, - 'i', 2160, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2174); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); - case 173: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '`') ADVANCE(1692); + case 178: + if (lookahead == '"') ADVANCE(1689); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '\'') ADVANCE(1692); + if (lookahead == '`') ADVANCE(1696); if (lookahead == '\t' || - lookahead == ' ') SKIP(173); + lookahead == ' ') SKIP(178); END_STATE(); - case 174: + case 179: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - '0', 865, - ':', 1713, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, - '{', 1498, + '"', 1689, + '#', 2196, + '$', 1476, + '\'', 1692, + '(', 1471, + '+', 852, + '-', 851, + '.', 853, + '0', 869, + ':', 1717, + 'N', 1024, + '[', 1469, + '_', 870, + '`', 1696, + 'f', 878, + 'n', 1014, + 't', 963, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(150); + lookahead == ' ') SKIP(159); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1029); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2075); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(876); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1050); END_STATE(); - case 175: + case 180: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - '0', 865, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, - '{', 1498, + '"', 1689, + '#', 2196, + '$', 1476, + '\'', 1692, + '(', 1471, + '+', 852, + '-', 851, + '.', 853, + '0', 869, + 'N', 1024, + '[', 1469, + '_', 870, + '`', 1696, + 'f', 878, + 'n', 1014, + 't', 963, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); + lookahead == ' ') SKIP(161); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1029); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2075); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(876); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1050); END_STATE(); - case 176: + case 181: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - ':', 1713, - 'N', 1020, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, + '"', 1689, + '#', 2196, + '$', 1476, + '\'', 1692, + '(', 1471, + '+', 852, + '-', 851, + '.', 853, + ':', 1717, + 'N', 1024, + '_', 870, + '`', 1696, + 'f', 878, + 'n', 1014, + 't', 963, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(153); + lookahead == ' ') SKIP(162); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1029); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1050); END_STATE(); - case 177: + case 182: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - 'N', 1020, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, + '"', 1689, + '#', 2196, + '$', 1476, + '\'', 1692, + '(', 1471, + '+', 852, + '-', 851, + '.', 853, + 'N', 1024, + '_', 870, + '`', 1696, + 'f', 878, + 'n', 1014, + 't', 963, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(154); + lookahead == ' ') SKIP(163); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1029); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1050); END_STATE(); - case 178: + case 183: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '\'', 1688, - '+', 848, - '-', 847, - '.', 866, - ':', 1713, - 'I', 1025, - 'N', 1020, - '_', 866, - '`', 1692, - 'a', 932, - 'c', 879, - 'd', 895, - 'e', 935, - 'f', 873, - 'i', 861, - 'l', 905, - 'm', 881, - 'n', 1010, - 't', 964, - 'u', 980, - 'w', 916, + '"', 1689, + '#', 2196, + '\'', 1692, + '+', 852, + '-', 851, + '.', 870, + ':', 1717, + 'I', 1029, + 'N', 1024, + '_', 870, + '`', 1696, + 'a', 936, + 'c', 883, + 'd', 899, + 'e', 939, + 'f', 877, + 'i', 865, + 'l', 909, + 'm', 885, + 'n', 1014, + 't', 968, + 'u', 984, + 'w', 920, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(161); + lookahead == ' ') SKIP(166); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '^') ADVANCE(1050); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); - case 179: + case 184: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '\'', 1688, - '+', 848, - '-', 840, - '.', 866, - ':', 1713, - 'I', 1025, - 'N', 1020, - '_', 866, - '`', 1692, - 'a', 932, - 'c', 879, - 'd', 895, - 'e', 935, - 'f', 873, - 'i', 861, - 'l', 905, - 'm', 881, - 'n', 1010, - 't', 964, - 'u', 980, - 'w', 916, + '"', 1689, + '#', 2196, + '\'', 1692, + '+', 852, + '-', 844, + '.', 870, + ':', 1717, + 'I', 1029, + 'N', 1024, + '_', 870, + '`', 1696, + 'a', 936, + 'c', 883, + 'd', 899, + 'e', 939, + 'f', 877, + 'i', 865, + 'l', 909, + 'm', 885, + 'n', 1014, + 't', 968, + 'u', 984, + 'w', 920, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(164); + lookahead == ' ') SKIP(170); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '^') ADVANCE(1050); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); - case 180: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(1687); - if (lookahead == '\\') ADVANCE(512); + case 185: + if (lookahead == '"') ADVANCE(1689); + if (lookahead == '#') ADVANCE(1691); + if (lookahead == '\\') ADVANCE(514); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1686); - if (lookahead != 0) ADVANCE(1687); + lookahead == ' ') ADVANCE(1690); + if (lookahead != 0) ADVANCE(1691); END_STATE(); - case 181: - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + case 186: + if (lookahead == '"') ADVANCE(1706); + if (lookahead == '\'') ADVANCE(1705); END_STATE(); - case 182: - if (lookahead == '"') ADVANCE(1703); - if (lookahead == '#') ADVANCE(1698); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '\\') ADVANCE(507); + case 187: + if (lookahead == '"') ADVANCE(1707); + if (lookahead == '#') ADVANCE(1702); + if (lookahead == '(') ADVANCE(1471); + if (lookahead == '\\') ADVANCE(509); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1697); - if (lookahead != 0) ADVANCE(1698); + lookahead == ' ') ADVANCE(1701); + if (lookahead != 0) ADVANCE(1702); END_STATE(); - case 183: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + case 188: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(1608); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(197); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); - case 184: + case 189: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1603, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1606, + ']', 1470, + '_', 1980, + '}', 1504, + '\t', 1716, + ' ', 1716, + '+', 1966, + '-', 1966, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1991); END_STATE(); - case 185: + case 190: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1972, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1963, - '-', 1963, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1977, + '_', 1980, + '}', 1504, + '\t', 1716, + ' ', 1716, + '+', 1966, + '-', 1966, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1991); END_STATE(); - case 186: + case 191: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1945, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1950, + ']', 1470, + '_', 1949, + '\t', 1716, + ' ', 1716, + '+', 1943, + '-', 1943, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16080,24 +16173,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 187: + case 192: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1936, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1941, + ']', 1470, + '_', 1949, + '\t', 1716, + ' ', 1716, + '+', 1943, + '-', 1943, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16105,136 +16198,143 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 188: + case 193: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1602, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1963, - '-', 1963, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1607, + ']', 1470, + '_', 1949, + '\t', 1716, + ' ', 1716, + '+', 1943, + '-', 1943, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 189: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + case 194: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(1820); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(197); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); - case 190: + case 195: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1598, - '[', 1665, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1602, + '[', 1669, + ']', 1470, + '_', 1949, + '}', 1504, + '\t', 1716, + ' ', 1716, + '+', 1943, + '-', 1943, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 191: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == ']') ADVANCE(1466); + case 196: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '.') ADVANCE(341); + if (lookahead == ']') ADVANCE(1470); if (lookahead == '\t' || - lookahead == ' ') SKIP(191); + lookahead == ' ') SKIP(196); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(319); END_STATE(); - case 192: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '{') ADVANCE(1498); + case 197: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '.') ADVANCE(341); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(197); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(319); END_STATE(); - case 193: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); + case 198: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '.') ADVANCE(341); if (lookahead == '\t' || - lookahead == ' ') SKIP(193); + lookahead == ' ') SKIP(198); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(319); END_STATE(); - case 194: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == ':') ADVANCE(1713); + case 199: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == ':') ADVANCE(1717); if (lookahead == '\t' || - lookahead == ' ') SKIP(194); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(199); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); - case 195: + case 200: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2193, + '(', 1565, + '.', 1599, + 'E', 1945, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + 'd', 1954, + 'e', 1944, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + '}', 1504, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16242,40 +16342,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 196: + case 201: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2193, + '(', 1565, + '.', 1599, + 'E', 1945, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + 'd', 1954, + 'e', 1944, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16283,56 +16383,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 197: + case 202: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2193, + '(', 1565, + '.', 1599, + 'E', 1972, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1981, + 'e', 1971, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + '}', 1504, + 0xb5, 1988, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 198: + case 203: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2193, + '(', 1565, + '.', 1599, + ']', 1470, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16340,21 +16440,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 199: + case 204: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2193, + '(', 1565, + '.', 1599, + ']', 1470, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16362,37 +16462,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 200: + case 205: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2193, + '(', 1565, + '.', 1599, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1978, + 'e', 1978, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 201: + case 206: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1594, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2193, + '(', 1565, + '.', 1598, + ']', 1470, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1978, + 'e', 1978, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); + END_STATE(); + case 207: + ADVANCE_MAP( + '#', 2193, + '(', 1565, + '.', 1598, + ']', 1470, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16400,58 +16515,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); - END_STATE(); - case 202: - ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1594, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 203: + case 208: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - '_', 1944, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2193, + '(', 1565, + '.', 1940, + 'E', 1945, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + '_', 1949, + 'd', 1954, + 'e', 1944, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + '}', 1504, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16460,42 +16560,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 204: + case 209: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - '_', 1944, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2193, + '(', 1565, + '.', 1940, + 'E', 1945, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + '_', 1949, + 'd', 1954, + 'e', 1944, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16504,41 +16604,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 205: + case 210: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2193, + '(', 1565, + '.', 1940, + 'E', 1945, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + 'd', 1954, + 'e', 1944, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + '}', 1504, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16546,40 +16646,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 206: + case 211: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2193, + '(', 1565, + '.', 1940, + 'E', 1945, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + 'd', 1954, + 'e', 1944, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16587,41 +16687,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 207: + case 212: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1942, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1941, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2193, + '(', 1565, + '.', 1940, + 'E', 1947, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + 'd', 1954, + 'e', 1946, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + '}', 1504, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16629,40 +16729,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 208: + case 213: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1942, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1941, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2193, + '(', 1565, + '.', 1940, + 'E', 1947, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + 'd', 1954, + 'e', 1946, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16670,24 +16770,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 209: + case 214: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2193, + '(', 1565, + '.', 1940, + ']', 1470, + '_', 1949, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16696,23 +16796,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 210: + case 215: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2193, + '(', 1565, + '.', 1940, + ']', 1470, + '_', 1949, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16721,22 +16821,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 211: + case 216: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2193, + '(', 1565, + '.', 1940, + ']', 1470, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16744,18 +16844,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 212: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1935); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '}') ADVANCE(1499); + case 217: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(1940); + if (lookahead == ']') ADVANCE(1470); + if (lookahead == '}') ADVANCE(1504); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1716); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16763,21 +16863,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 213: + case 218: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2193, + '(', 1565, + '.', 1940, + ']', 1470, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16785,17 +16885,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 214: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1935); - if (lookahead == ']') ADVANCE(1466); + case 219: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(1940); + if (lookahead == ']') ADVANCE(1470); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1716); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16803,23 +16903,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 215: + case 220: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1937, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2193, + '(', 1565, + '.', 1942, + ']', 1470, + '_', 1949, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16828,21 +16928,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 216: + case 221: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1937, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2193, + '(', 1565, + '.', 1942, + ']', 1470, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16850,17 +16950,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 217: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1937); - if (lookahead == ']') ADVANCE(1466); + case 222: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(1942); + if (lookahead == ']') ADVANCE(1470); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1716); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16868,21 +16968,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 218: + case 223: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1597, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2193, + '(', 1565, + '.', 1601, + ']', 1470, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16890,169 +16990,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 219: + case 224: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1975, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2193, + '(', 1565, + '.', 1965, + 'E', 1972, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + '_', 1980, + 'd', 1981, + 'e', 1971, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + '}', 1504, + 0xb5, 1988, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 220: + case 225: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2193, + '(', 1565, + '.', 1965, + 'E', 1972, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1981, + 'e', 1971, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + '}', 1504, + 0xb5, 1988, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 221: + case 226: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1968, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2193, + '(', 1565, + '.', 1965, + 'E', 1974, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1981, + 'e', 1973, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + '}', 1504, + 0xb5, 1988, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 222: + case 227: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2193, + '(', 1565, + '.', 1965, + '_', 1980, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1978, + 'e', 1978, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 223: + case 228: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2193, + '(', 1565, + '.', 1965, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1978, + 'e', 1978, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 224: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == '}') ADVANCE(1499); + case 229: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(1965); + if (lookahead == '}') ADVANCE(1504); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1716); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 225: + case 230: ADVANCE_MAP( - '#', 2188, - '(', 1561, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2193, + '(', 1565, + ']', 1470, + '_', 1949, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17061,17 +17161,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 226: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '}') ADVANCE(1499); + case 231: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == ']') ADVANCE(1470); + if (lookahead == '}') ADVANCE(1504); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1716); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17079,18 +17179,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 227: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ']') ADVANCE(1466); + case 232: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == ']') ADVANCE(1470); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1716); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1947); + lookahead == 'e') ADVANCE(1952); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17098,668 +17198,668 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 228: + case 233: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2193, + '(', 1565, + '_', 1980, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1978, + 'e', 1978, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 229: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '{') ADVANCE(1498); + case 234: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(275); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 230: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '}') ADVANCE(1499); + case 235: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '}') ADVANCE(1504); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1716); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); + lookahead == 'e') ADVANCE(1978); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 231: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '}') ADVANCE(1499); + case 236: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '}') ADVANCE(1504); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1716); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 232: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); + case 237: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 233: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); + case 238: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); - case 234: + case 239: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1595, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2193, + '(', 1471, + '-', 1788, + '.', 1599, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '[', 1469, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(245); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 235: + case 240: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2193, + '(', 1471, + '-', 1788, + '.', 1795, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '[', 1469, + '_', 1818, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(245); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 236: + case 241: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2193, + '(', 1471, + '-', 1788, + '.', 1795, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '[', 1469, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(245); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 237: + case 242: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2193, + '(', 1471, + '-', 1788, + '.', 1795, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '[', 1469, + 'd', 1829, + 'e', 1814, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(245); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 238: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(1783); - if (lookahead == '[') ADVANCE(1465); + case 243: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1471); + if (lookahead == '-') ADVANCE(1788); + if (lookahead == '[') ADVANCE(1469); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(245); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 239: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(297); - if (lookahead == '=') ADVANCE(1729); - if (lookahead == '[') ADVANCE(1465); + case 244: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1471); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '=') ADVANCE(1734); + if (lookahead == '[') ADVANCE(1469); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + lookahead == ' ') SKIP(245); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1451); END_STATE(); - case 240: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(297); - if (lookahead == '[') ADVANCE(1465); + case 245: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1471); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '[') ADVANCE(1469); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(245); END_STATE(); - case 241: + case 246: ADVANCE_MAP( - '#', 2188, - '.', 1595, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2193, + '.', 1599, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(275); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 242: + case 247: ADVANCE_MAP( - '#', 2188, - '.', 1595, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2193, + '.', 1599, + 'E', 1972, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1981, + 'e', 1971, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + 0xb5, 1988, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(277); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 243: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '{') ADVANCE(1498); + case 248: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1599); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(275); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 244: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); + case 249: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1599); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(277); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1978); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 245: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1720); - if (lookahead == 'i') ADVANCE(1361); + case 250: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1724); + if (lookahead == 'i') ADVANCE(1365); if (lookahead == '\t' || - lookahead == ' ') SKIP(245); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(250); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); - case 246: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1813); + case 251: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1608); + if (lookahead == '_') ADVANCE(1818); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(260); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 247: + case 252: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2193, + '.', 1795, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(275); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 248: + case 253: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2193, + '.', 1795, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(275); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 249: + case 254: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2193, + '.', 1795, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1814, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(275); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 250: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + case 255: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(275); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 251: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '{') ADVANCE(1498); + case 256: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(275); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 252: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '{') ADVANCE(1498); + case 257: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(275); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 253: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '{') ADVANCE(1498); + case 258: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1598); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(275); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 254: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); + case 259: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1598); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(277); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1978); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 255: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(337); + case 260: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(341); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(260); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(319); END_STATE(); - case 256: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1972); - if (lookahead == '_') ADVANCE(1975); + case 261: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1606); + if (lookahead == '_') ADVANCE(1980); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(260); if (lookahead == '+' || - lookahead == '-') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '-') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 257: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1602); - if (lookahead == '_') ADVANCE(1975); + case 262: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1977); + if (lookahead == '_') ADVANCE(1980); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(260); if (lookahead == '+' || - lookahead == '-') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '-') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 258: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1813); + case 263: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1820); + if (lookahead == '_') ADVANCE(1818); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(260); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 259: + case 264: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1975, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2193, + '.', 1965, + 'E', 1972, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + '_', 1980, + 'd', 1981, + 'e', 1971, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + 0xb5, 1988, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(277); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 260: + case 265: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2193, + '.', 1965, + 'E', 1972, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1981, + 'e', 1971, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + 0xb5, 1988, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(277); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 261: + case 266: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1968, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2193, + '.', 1965, + 'E', 1974, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1981, + 'e', 1973, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + 0xb5, 1988, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(277); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 262: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == '_') ADVANCE(1975); + case 267: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1965); + if (lookahead == '_') ADVANCE(1980); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(277); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1978); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 263: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); + case 268: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1965); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(277); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1978); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 264: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); + case 269: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1965); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 265: + case 270: ADVANCE_MAP( - '#', 2188, - ':', 1713, - 'a', 413, - 'c', 439, - 'd', 374, - 'e', 518, - 'm', 437, - 'u', 475, + '#', 2193, + ':', 1717, + 'a', 416, + 'c', 442, + 'd', 378, + 'e', 520, + 'm', 440, + 'u', 477, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); + lookahead == ' ') SKIP(270); END_STATE(); - case 266: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ':') ADVANCE(1713); + case 271: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == ':') ADVANCE(1717); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); + lookahead == ' ') SKIP(271); END_STATE(); - case 267: + case 272: ADVANCE_MAP( - '#', 2188, - '>', 1479, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '\t', 1712, - ' ', 1712, + '#', 2193, + '>', 1484, + '[', 1469, + ']', 1470, + 'c', 1355, + 'f', 1374, + 'i', 1363, + 'o', 1366, + 'v', 1351, + '\t', 1716, + ' ', 1716, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -17767,75 +17867,75 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1373); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1377); END_STATE(); - case 268: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + case 273: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(275); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 269: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '_') ADVANCE(1975); + case 274: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '_') ADVANCE(1980); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(277); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1978); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 270: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '{') ADVANCE(1498); + case 275: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(275); END_STATE(); - case 271: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '{') ADVANCE(1498); + case 276: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(275); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 272: - if (lookahead == '#') ADVANCE(2188); + case 277: + if (lookahead == '#') ADVANCE(2193); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(277); END_STATE(); - case 273: - if (lookahead == '#') ADVANCE(2188); + case 278: + if (lookahead == '#') ADVANCE(2193); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(277); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1978); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); - case 274: - if (lookahead == '#') ADVANCE(2188); + case 279: + if (lookahead == '#') ADVANCE(2193); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1461); + lookahead == ' ') SKIP(277); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1465); END_STATE(); - case 275: - if (lookahead == '#') ADVANCE(2188); + case 280: + if (lookahead == '#') ADVANCE(2193); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1497); + lookahead == ' ') SKIP(277); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1502); END_STATE(); - case 276: - if (lookahead == '#') ADVANCE(2191); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == ':') ADVANCE(1713); + case 281: + if (lookahead == '#') ADVANCE(2196); + if (lookahead == '$') ADVANCE(1477); + if (lookahead == ':') ADVANCE(1717); if (lookahead == '\t' || - lookahead == ' ') SKIP(194); + lookahead == ' ') SKIP(199); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -17844,964 +17944,943 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1030); - END_STATE(); - case 277: - ADVANCE_MAP( - '#', 2191, - ':', 1713, - 'a', 932, - 'c', 951, - 'd', 895, - 'e', 1019, - 'm', 952, - 'u', 980, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); - END_STATE(); - case 278: - if (lookahead == '#') ADVANCE(1700); - if (lookahead == '\'') ADVANCE(1691); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); - if (lookahead != 0) ADVANCE(1700); - END_STATE(); - case 279: - if (lookahead == '+') ADVANCE(378); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(488); - END_STATE(); - case 280: - if (lookahead == '+') ADVANCE(339); - if (lookahead == '-') ADVANCE(341); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == '_') ADVANCE(341); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - END_STATE(); - case 281: - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(1735); + lookahead == '^') ADVANCE(1050); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1034); END_STATE(); case 282: ADVANCE_MAP( - '+', 430, - '>', 1737, - 'I', 534, - 'i', 534, - 'n', 364, - 'r', 453, - 'B', 1653, - 'b', 1653, + '#', 2196, + ':', 1717, + 'a', 936, + 'c', 955, + 'd', 899, + 'e', 1023, + 'm', 956, + 'u', 984, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 283: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); + if (lookahead == '#') ADVANCE(1704); + if (lookahead == '\'') ADVANCE(1695); + if (lookahead == '(') ADVANCE(1471); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1703); + if (lookahead != 0) ADVANCE(1704); END_STATE(); case 284: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - if (lookahead == 'x') ADVANCE(445); + if (lookahead == '+') ADVANCE(381); + if (lookahead == '>') ADVANCE(1744); + if (lookahead == 'r') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(490); END_STATE(); case 285: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); + if (lookahead == '+') ADVANCE(343); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == '_') ADVANCE(345); + if (lookahead == 'l') ADVANCE(475); + if (lookahead == 'n') ADVANCE(368); + if (lookahead == 'r') ADVANCE(455); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); END_STATE(); case 286: - if (lookahead == '+') ADVANCE(429); - if (lookahead == '>') ADVANCE(1733); + if (lookahead == '+') ADVANCE(382); + if (lookahead == '>') ADVANCE(1740); END_STATE(); case 287: - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(458); + ADVANCE_MAP( + '+', 433, + '>', 1742, + 'I', 536, + 'i', 536, + 'n', 368, + 'r', 455, + 'B', 1657, + 'b', 1657, + ); END_STATE(); case 288: - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(458); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'l') ADVANCE(475); + if (lookahead == 'n') ADVANCE(368); + if (lookahead == 'r') ADVANCE(455); END_STATE(); case 289: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(493); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'l') ADVANCE(475); + if (lookahead == 'n') ADVANCE(368); + if (lookahead == 'r') ADVANCE(455); + if (lookahead == 'x') ADVANCE(448); END_STATE(); case 290: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(493); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'n') ADVANCE(368); + if (lookahead == 'r') ADVANCE(455); END_STATE(); case 291: - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '+') ADVANCE(432); + if (lookahead == '>') ADVANCE(1738); END_STATE(); case 292: - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '+') ADVANCE(441); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'n') ADVANCE(368); + if (lookahead == 'r') ADVANCE(460); END_STATE(); case 293: - if (lookahead == '-') ADVANCE(355); + if (lookahead == '+') ADVANCE(441); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'r') ADVANCE(460); END_STATE(); case 294: - if (lookahead == '-') ADVANCE(385); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'r') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(495); END_STATE(); case 295: - if (lookahead == '-') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'u') ADVANCE(495); END_STATE(); case 296: - if (lookahead == '-') ADVANCE(513); + if (lookahead == '+') ADVANCE(446); + if (lookahead == '>') ADVANCE(528); END_STATE(); case 297: - if (lookahead == '-') ADVANCE(1484); + if (lookahead == '+') ADVANCE(387); + if (lookahead == '>') ADVANCE(530); END_STATE(); case 298: - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '>') ADVANCE(1464); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(359); END_STATE(); case 299: - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(388); END_STATE(); case 300: - if (lookahead == '-') ADVANCE(433); + if (lookahead == '-') ADVANCE(388); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1564); END_STATE(); case 301: - if (lookahead == '-') ADVANCE(490); + if (lookahead == '-') ADVANCE(515); END_STATE(); case 302: - if (lookahead == '-') ADVANCE(560); + if (lookahead == '-') ADVANCE(1489); END_STATE(); case 303: - if (lookahead == '-') ADVANCE(514); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '>') ADVANCE(1468); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 304: - if (lookahead == '-') ADVANCE(515); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 305: - if (lookahead == '-') ADVANCE(450); + if (lookahead == '-') ADVANCE(436); END_STATE(); case 306: - if (lookahead == '-') ADVANCE(516); + if (lookahead == '-') ADVANCE(492); END_STATE(); case 307: - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(562); END_STATE(); case 308: - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(516); END_STATE(); case 309: - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '-') ADVANCE(517); END_STATE(); case 310: - if (lookahead == '.') ADVANCE(1593); + if (lookahead == '-') ADVANCE(453); END_STATE(); case 311: - if (lookahead == '.') ADVANCE(1482); + if (lookahead == '-') ADVANCE(518); END_STATE(); case 312: - if (lookahead == '.') ADVANCE(311); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 313: - if (lookahead == '.') ADVANCE(311); - if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '_') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 314: - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); case 315: - if (lookahead == '2') ADVANCE(548); - if (lookahead == '0' || - lookahead == '1') ADVANCE(554); + if (lookahead == '.') ADVANCE(1597); END_STATE(); case 316: - if (lookahead == ':') ADVANCE(555); + if (lookahead == '.') ADVANCE(1487); END_STATE(); case 317: - if (lookahead == ':') ADVANCE(556); + if (lookahead == '.') ADVANCE(316); END_STATE(); case 318: - if (lookahead == ';') ADVANCE(1716); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(318); + if (lookahead == '.') ADVANCE(316); + if (lookahead == '_') ADVANCE(341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 319: - if (lookahead == '=') ADVANCE(1139); - if (lookahead == '~') ADVANCE(1121); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '_') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 320: - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); + if (lookahead == '2') ADVANCE(550); + if (lookahead == '0' || + lookahead == '1') ADVANCE(556); END_STATE(); case 321: - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '>') ADVANCE(1500); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == ':') ADVANCE(557); END_STATE(); case 322: - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == ':') ADVANCE(558); END_STATE(); case 323: - if (lookahead == '>') ADVANCE(1500); + if (lookahead == ';') ADVANCE(1720); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(323); END_STATE(); case 324: - if (lookahead == '>') ADVANCE(1747); + if (lookahead == '=') ADVANCE(1143); + if (lookahead == '~') ADVANCE(1125); END_STATE(); case 325: - if (lookahead == '>') ADVANCE(1745); + if (lookahead == '=') ADVANCE(1552); + if (lookahead == '~') ADVANCE(1558); END_STATE(); case 326: - if (lookahead == '>') ADVANCE(1741); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '>') ADVANCE(1505); + if (lookahead == '~') ADVANCE(1557); END_STATE(); case 327: - if (lookahead == '>') ADVANCE(1743); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '~') ADVANCE(1557); END_STATE(); case 328: - if (lookahead == '>') ADVANCE(525); + if (lookahead == '>') ADVANCE(1505); END_STATE(); case 329: - if (lookahead == '>') ADVANCE(527); + if (lookahead == '>') ADVANCE(1752); END_STATE(); case 330: - if (lookahead == '>') ADVANCE(529); + if (lookahead == '>') ADVANCE(1750); END_STATE(); case 331: - if (lookahead == '>') ADVANCE(530); + if (lookahead == '>') ADVANCE(1746); END_STATE(); case 332: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(534); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '>') ADVANCE(1748); END_STATE(); case 333: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(357); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '>') ADVANCE(527); END_STATE(); case 334: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(420); - if (lookahead == 'o') ADVANCE(362); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '>') ADVANCE(529); END_STATE(); case 335: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(420); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '>') ADVANCE(531); END_STATE(); case 336: - if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == '>') ADVANCE(532); END_STATE(); case 337: - if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == 'I') ADVANCE(536); + if (lookahead == 'i') ADVANCE(536); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); END_STATE(); case 338: - if (lookahead == '_') ADVANCE(338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (lookahead == 'I') ADVANCE(536); + if (lookahead == 'i') ADVANCE(361); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); END_STATE(); case 339: - if (lookahead == '_') ADVANCE(341); - if (lookahead == 'o') ADVANCE(324); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == 'I') ADVANCE(536); + if (lookahead == 'i') ADVANCE(423); + if (lookahead == 'o') ADVANCE(366); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); END_STATE(); case 340: - if (lookahead == '_') ADVANCE(341); - if (lookahead == '+' || - lookahead == '-') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '_') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); END_STATE(); case 341: if (lookahead == '_') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 342: if (lookahead == '_') ADVANCE(342); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 343: - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '_') ADVANCE(345); + if (lookahead == 'o') ADVANCE(329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); END_STATE(); case 344: - if (lookahead == 'a') ADVANCE(470); + if (lookahead == '_') ADVANCE(345); + if (lookahead == '+' || + lookahead == '-') ADVANCE(345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); END_STATE(); case 345: - if (lookahead == 'a') ADVANCE(470); - if (lookahead == 'r') ADVANCE(1658); + if (lookahead == '_') ADVANCE(345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); END_STATE(); case 346: - if (lookahead == 'a') ADVANCE(519); + if (lookahead == '_') ADVANCE(346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 347: - if (lookahead == 'a') ADVANCE(418); + if (lookahead == '_') ADVANCE(347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); case 348: - if (lookahead == 'a') ADVANCE(462); + if (lookahead == 'a') ADVANCE(472); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(471); + if (lookahead == 'a') ADVANCE(472); + if (lookahead == 'r') ADVANCE(1662); END_STATE(); case 350: - if (lookahead == 'a') ADVANCE(468); + if (lookahead == 'a') ADVANCE(521); END_STATE(); case 351: - if (lookahead == 'a') ADVANCE(482); + if (lookahead == 'a') ADVANCE(421); END_STATE(); case 352: - if (lookahead == 'a') ADVANCE(499); + if (lookahead == 'a') ADVANCE(464); END_STATE(); case 353: - if (lookahead == 'a') ADVANCE(501); + if (lookahead == 'a') ADVANCE(473); END_STATE(); case 354: - if (lookahead == 'a') ADVANCE(500); + if (lookahead == 'a') ADVANCE(470); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(426); - if (lookahead == 'o') ADVANCE(455); - if (lookahead == 's') ADVANCE(391); - if (lookahead == 'x') ADVANCE(440); + if (lookahead == 'a') ADVANCE(484); END_STATE(); case 356: - if (lookahead == 'a') ADVANCE(467); + if (lookahead == 'a') ADVANCE(501); END_STATE(); case 357: - if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'a') ADVANCE(503); END_STATE(); case 358: - if (lookahead == 'c') ADVANCE(1658); + if (lookahead == 'a') ADVANCE(502); END_STATE(); case 359: - if (lookahead == 'c') ADVANCE(390); + if (lookahead == 'a') ADVANCE(429); + if (lookahead == 'o') ADVANCE(457); + if (lookahead == 's') ADVANCE(394); + if (lookahead == 'x') ADVANCE(443); END_STATE(); case 360: - if (lookahead == 'c') ADVANCE(383); + if (lookahead == 'a') ADVANCE(469); END_STATE(); case 361: - if (lookahead == 'd') ADVANCE(1527); + if (lookahead == 'b') ADVANCE(1657); END_STATE(); case 362: - if (lookahead == 'd') ADVANCE(1571); + if (lookahead == 'c') ADVANCE(1662); END_STATE(); case 363: - if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'c') ADVANCE(393); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(472); + if (lookahead == 'c') ADVANCE(386); END_STATE(); case 365: - if (lookahead == 'd') ADVANCE(509); + if (lookahead == 'd') ADVANCE(1531); END_STATE(); case 366: - if (lookahead == 'd') ADVANCE(478); + if (lookahead == 'd') ADVANCE(1575); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(1047); + if (lookahead == 'd') ADVANCE(1589); END_STATE(); case 368: - if (lookahead == 'e') ADVANCE(1071); + if (lookahead == 'd') ADVANCE(474); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(1089); + if (lookahead == 'd') ADVANCE(511); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(1092); + if (lookahead == 'd') ADVANCE(480); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(1056); + if (lookahead == 'e') ADVANCE(1051); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(1556); + if (lookahead == 'e') ADVANCE(1075); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1093); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(388); + if (lookahead == 'e') ADVANCE(1096); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(1478); + if (lookahead == 'e') ADVANCE(1060); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(358); + if (lookahead == 'e') ADVANCE(1560); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(358); - if (lookahead == 't') ADVANCE(348); + if (lookahead == 'e') ADVANCE(1562); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(325); + if (lookahead == 'e') ADVANCE(391); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(463); + if (lookahead == 'e') ADVANCE(1482); END_STATE(); case 380: - if (lookahead == 'e') ADVANCE(329); + if (lookahead == 'e') ADVANCE(362); + if (lookahead == 't') ADVANCE(352); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(459); + if (lookahead == 'e') ADVANCE(330); END_STATE(); case 382: - if (lookahead == 'e') ADVANCE(461); + if (lookahead == 'e') ADVANCE(465); END_STATE(); case 383: - if (lookahead == 'e') ADVANCE(415); + if (lookahead == 'e') ADVANCE(334); END_STATE(); case 384: - if (lookahead == 'e') ADVANCE(464); + if (lookahead == 'e') ADVANCE(461); END_STATE(); case 385: - if (lookahead == 'e') ADVANCE(428); - if (lookahead == 'h') ADVANCE(349); - if (lookahead == 'i') ADVANCE(423); - if (lookahead == 'l') ADVANCE(406); - if (lookahead == 's') ADVANCE(506); + if (lookahead == 'e') ADVANCE(463); END_STATE(); case 386: - if (lookahead == 'f') ADVANCE(1068); + if (lookahead == 'e') ADVANCE(418); END_STATE(); case 387: - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1083); + if (lookahead == 'e') ADVANCE(466); END_STATE(); case 388: - if (lookahead == 'f') ADVANCE(825); + if (lookahead == 'e') ADVANCE(431); + if (lookahead == 'h') ADVANCE(353); + if (lookahead == 'i') ADVANCE(426); + if (lookahead == 'l') ADVANCE(409); + if (lookahead == 's') ADVANCE(508); END_STATE(); case 389: - if (lookahead == 'f') ADVANCE(1477); + if (lookahead == 'f') ADVANCE(1072); END_STATE(); case 390: - if (lookahead == 'h') ADVANCE(1077); + if (lookahead == 'f') ADVANCE(1072); + if (lookahead == 'n') ADVANCE(1087); END_STATE(); case 391: - if (lookahead == 'h') ADVANCE(412); + if (lookahead == 'f') ADVANCE(829); END_STATE(); case 392: - if (lookahead == 'h') ADVANCE(1543); + if (lookahead == 'f') ADVANCE(1481); END_STATE(); case 393: - if (lookahead == 'h') ADVANCE(1539); + if (lookahead == 'h') ADVANCE(1081); END_STATE(); case 394: - if (lookahead == 'h') ADVANCE(1545); + if (lookahead == 'h') ADVANCE(415); END_STATE(); case 395: - if (lookahead == 'h') ADVANCE(1541); + if (lookahead == 'h') ADVANCE(1547); END_STATE(); case 396: - if (lookahead == 'h') ADVANCE(1474); + if (lookahead == 'h') ADVANCE(1543); END_STATE(); case 397: - if (lookahead == 'h') ADVANCE(1475); + if (lookahead == 'h') ADVANCE(1549); END_STATE(); case 398: - if (lookahead == 'h') ADVANCE(300); + if (lookahead == 'h') ADVANCE(1545); END_STATE(); case 399: - if (lookahead == 'i') ADVANCE(409); + if (lookahead == 'h') ADVANCE(1478); END_STATE(); case 400: - if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'h') ADVANCE(1479); END_STATE(); case 401: - if (lookahead == 'i') ADVANCE(489); + if (lookahead == 'h') ADVANCE(305); END_STATE(); case 402: - if (lookahead == 'i') ADVANCE(491); + if (lookahead == 'i') ADVANCE(412); END_STATE(); case 403: - if (lookahead == 'i') ADVANCE(494); + if (lookahead == 'i') ADVANCE(483); END_STATE(); case 404: - if (lookahead == 'i') ADVANCE(495); + if (lookahead == 'i') ADVANCE(491); END_STATE(); case 405: - if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'i') ADVANCE(493); END_STATE(); case 406: - if (lookahead == 'i') ADVANCE(410); + if (lookahead == 'i') ADVANCE(496); END_STATE(); case 407: - if (lookahead == 'i') ADVANCE(350); + if (lookahead == 'i') ADVANCE(497); END_STATE(); case 408: - if (lookahead == 'k') ADVANCE(1658); + if (lookahead == 'i') ADVANCE(498); END_STATE(); case 409: - if (lookahead == 'k') ADVANCE(372); + if (lookahead == 'i') ADVANCE(413); END_STATE(); case 410: - if (lookahead == 'k') ADVANCE(373); + if (lookahead == 'i') ADVANCE(354); END_STATE(); case 411: - if (lookahead == 'l') ADVANCE(1095); + if (lookahead == 'k') ADVANCE(1662); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(1581); - if (lookahead == 'r') ADVANCE(1583); + if (lookahead == 'k') ADVANCE(376); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(407); + if (lookahead == 'k') ADVANCE(377); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(411); + if (lookahead == 'l') ADVANCE(1099); END_STATE(); case 415: - if (lookahead == 'l') ADVANCE(416); + if (lookahead == 'l') ADVANCE(1585); + if (lookahead == 'r') ADVANCE(1587); END_STATE(); case 416: - if (lookahead == 'l') ADVANCE(305); + if (lookahead == 'l') ADVANCE(410); END_STATE(); case 417: - if (lookahead == 'l') ADVANCE(371); + if (lookahead == 'l') ADVANCE(414); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(474); + if (lookahead == 'l') ADVANCE(419); END_STATE(); case 419: - if (lookahead == 'n') ADVANCE(1053); + if (lookahead == 'l') ADVANCE(310); END_STATE(); case 420: - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == 'l') ADVANCE(375); END_STATE(); case 421: - if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'l') ADVANCE(476); END_STATE(); case 422: - if (lookahead == 'n') ADVANCE(1083); + if (lookahead == 'n') ADVANCE(1057); END_STATE(); case 423: - if (lookahead == 'n') ADVANCE(1533); + if (lookahead == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(1476); + if (lookahead == 'n') ADVANCE(365); END_STATE(); case 425: - if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'n') ADVANCE(1087); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'n') ADVANCE(1537); END_STATE(); case 427: - if (lookahead == 'n') ADVANCE(476); + if (lookahead == 'n') ADVANCE(1480); END_STATE(); case 428: - if (lookahead == 'n') ADVANCE(366); + if (lookahead == 'n') ADVANCE(368); END_STATE(); case 429: - if (lookahead == 'o') ADVANCE(508); + if (lookahead == 'n') ADVANCE(367); END_STATE(); case 430: - if (lookahead == 'o') ADVANCE(324); + if (lookahead == 'n') ADVANCE(478); END_STATE(); case 431: - if (lookahead == 'o') ADVANCE(454); + if (lookahead == 'n') ADVANCE(370); END_STATE(); case 432: - if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'o') ADVANCE(510); END_STATE(); case 433: - if (lookahead == 'o') ADVANCE(447); + if (lookahead == 'o') ADVANCE(329); END_STATE(); case 434: - if (lookahead == 'o') ADVANCE(487); + if (lookahead == 'o') ADVANCE(456); END_STATE(); case 435: - if (lookahead == 'o') ADVANCE(487); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'o') ADVANCE(392); END_STATE(); case 436: - if (lookahead == 'o') ADVANCE(362); + if (lookahead == 'o') ADVANCE(450); END_STATE(); case 437: - if (lookahead == 'o') ADVANCE(365); + if (lookahead == 'o') ADVANCE(489); END_STATE(); case 438: - if (lookahead == 'o') ADVANCE(328); + if (lookahead == 'o') ADVANCE(489); + if (lookahead == 's') ADVANCE(1662); END_STATE(); case 439: - if (lookahead == 'o') ADVANCE(427); + if (lookahead == 'o') ADVANCE(366); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(456); + if (lookahead == 'o') ADVANCE(369); END_STATE(); case 441: - if (lookahead == 'o') ADVANCE(484); + if (lookahead == 'o') ADVANCE(333); END_STATE(); case 442: - if (lookahead == 'o') ADVANCE(485); - if (lookahead == 'u') ADVANCE(414); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == 'o') ADVANCE(430); END_STATE(); case 443: - if (lookahead == 'o') ADVANCE(511); + if (lookahead == 'o') ADVANCE(458); END_STATE(); case 444: - if (lookahead == 'o') ADVANCE(466); + if (lookahead == 'o') ADVANCE(486); END_STATE(); case 445: - if (lookahead == 'p') ADVANCE(444); - if (lookahead == 't') ADVANCE(381); + if (lookahead == 'o') ADVANCE(487); + if (lookahead == 'u') ADVANCE(417); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(542); END_STATE(); case 446: - if (lookahead == 'p') ADVANCE(375); + if (lookahead == 'o') ADVANCE(513); END_STATE(); case 447: - if (lookahead == 'p') ADVANCE(498); + if (lookahead == 'o') ADVANCE(468); END_STATE(); case 448: - if (lookahead == 'p') ADVANCE(352); + if (lookahead == 'p') ADVANCE(447); + if (lookahead == 't') ADVANCE(384); END_STATE(); case 449: - if (lookahead == 'p') ADVANCE(353); + if (lookahead == 'p') ADVANCE(379); END_STATE(); case 450: - if (lookahead == 'p') ADVANCE(354); + if (lookahead == 'p') ADVANCE(500); END_STATE(); case 451: - if (lookahead == 'r') ADVANCE(1658); + if (lookahead == 'p') ADVANCE(356); END_STATE(); case 452: - if (lookahead == 'r') ADVANCE(1531); + if (lookahead == 'p') ADVANCE(357); END_STATE(); case 453: - if (lookahead == 'r') ADVANCE(286); + if (lookahead == 'p') ADVANCE(358); END_STATE(); case 454: - if (lookahead == 'r') ADVANCE(1529); + if (lookahead == 'r') ADVANCE(1535); END_STATE(); case 455: - if (lookahead == 'r') ADVANCE(1589); + if (lookahead == 'r') ADVANCE(291); END_STATE(); case 456: - if (lookahead == 'r') ADVANCE(1587); + if (lookahead == 'r') ADVANCE(1533); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(510); + if (lookahead == 'r') ADVANCE(1593); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(291); + if (lookahead == 'r') ADVANCE(1591); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(419); + if (lookahead == 'r') ADVANCE(512); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(327); + if (lookahead == 'r') ADVANCE(296); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(424); + if (lookahead == 'r') ADVANCE(422); END_STATE(); case 462: - if (lookahead == 'r') ADVANCE(504); + if (lookahead == 'r') ADVANCE(332); END_STATE(); case 463: - if (lookahead == 'r') ADVANCE(460); + if (lookahead == 'r') ADVANCE(427); END_STATE(); case 464: - if (lookahead == 'r') ADVANCE(465); + if (lookahead == 'r') ADVANCE(506); END_STATE(); case 465: - if (lookahead == 'r') ADVANCE(331); + if (lookahead == 'r') ADVANCE(462); END_STATE(); case 466: - if (lookahead == 'r') ADVANCE(483); + if (lookahead == 'r') ADVANCE(467); END_STATE(); case 467: - if (lookahead == 'r') ADVANCE(505); + if (lookahead == 'r') ADVANCE(336); END_STATE(); case 468: - if (lookahead == 's') ADVANCE(670); + if (lookahead == 'r') ADVANCE(485); END_STATE(); case 469: - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'r') ADVANCE(507); END_STATE(); case 470: - if (lookahead == 's') ADVANCE(1535); + if (lookahead == 's') ADVANCE(674); END_STATE(); case 471: - if (lookahead == 's') ADVANCE(1537); + if (lookahead == 's') ADVANCE(1662); END_STATE(); case 472: - if (lookahead == 's') ADVANCE(296); + if (lookahead == 's') ADVANCE(1539); END_STATE(); case 473: - if (lookahead == 's') ADVANCE(368); + if (lookahead == 's') ADVANCE(1541); END_STATE(); case 474: - if (lookahead == 's') ADVANCE(370); + if (lookahead == 's') ADVANCE(301); END_STATE(); case 475: - if (lookahead == 's') ADVANCE(367); + if (lookahead == 's') ADVANCE(372); END_STATE(); case 476: - if (lookahead == 's') ADVANCE(480); + if (lookahead == 's') ADVANCE(374); END_STATE(); case 477: - if (lookahead == 's') ADVANCE(303); + if (lookahead == 's') ADVANCE(371); END_STATE(); case 478: - if (lookahead == 's') ADVANCE(304); + if (lookahead == 's') ADVANCE(482); END_STATE(); case 479: - if (lookahead == 's') ADVANCE(306); + if (lookahead == 's') ADVANCE(308); END_STATE(); case 480: - if (lookahead == 't') ADVANCE(682); + if (lookahead == 's') ADVANCE(309); END_STATE(); case 481: - if (lookahead == 't') ADVANCE(293); + if (lookahead == 's') ADVANCE(311); END_STATE(); case 482: - if (lookahead == 't') ADVANCE(359); + if (lookahead == 't') ADVANCE(686); END_STATE(); case 483: - if (lookahead == 't') ADVANCE(666); + if (lookahead == 't') ADVANCE(298); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(295); + if (lookahead == 't') ADVANCE(363); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(549); + if (lookahead == 't') ADVANCE(670); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(348); + if (lookahead == 't') ADVANCE(300); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 't') ADVANCE(551); END_STATE(); case 488: - if (lookahead == 't') ADVANCE(281); + if (lookahead == 't') ADVANCE(352); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(392); + if (lookahead == 't') ADVANCE(299); END_STATE(); case 490: - if (lookahead == 't') ADVANCE(520); + if (lookahead == 't') ADVANCE(286); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(393); + if (lookahead == 't') ADVANCE(395); END_STATE(); case 492: - if (lookahead == 't') ADVANCE(326); + if (lookahead == 't') ADVANCE(522); END_STATE(); case 493: - if (lookahead == 't') ADVANCE(292); + if (lookahead == 't') ADVANCE(396); END_STATE(); case 494: - if (lookahead == 't') ADVANCE(394); + if (lookahead == 't') ADVANCE(331); END_STATE(); case 495: - if (lookahead == 't') ADVANCE(395); + if (lookahead == 't') ADVANCE(297); END_STATE(); case 496: - if (lookahead == 't') ADVANCE(398); + if (lookahead == 't') ADVANCE(397); END_STATE(); case 497: - if (lookahead == 't') ADVANCE(330); + if (lookahead == 't') ADVANCE(398); END_STATE(); case 498: - if (lookahead == 't') ADVANCE(301); + if (lookahead == 't') ADVANCE(401); END_STATE(); case 499: - if (lookahead == 't') ADVANCE(396); + if (lookahead == 't') ADVANCE(335); END_STATE(); case 500: - if (lookahead == 't') ADVANCE(397); + if (lookahead == 't') ADVANCE(306); END_STATE(); case 501: - if (lookahead == 't') ADVANCE(503); + if (lookahead == 't') ADVANCE(399); END_STATE(); case 502: - if (lookahead == 't') ADVANCE(381); + if (lookahead == 't') ADVANCE(400); END_STATE(); case 503: - if (lookahead == 't') ADVANCE(382); + if (lookahead == 't') ADVANCE(505); END_STATE(); case 504: - if (lookahead == 't') ADVANCE(477); + if (lookahead == 't') ADVANCE(384); END_STATE(); case 505: - if (lookahead == 't') ADVANCE(479); + if (lookahead == 't') ADVANCE(385); END_STATE(); case 506: - if (lookahead == 't') ADVANCE(356); + if (lookahead == 't') ADVANCE(479); END_STATE(); case 507: - if (lookahead == 'u') ADVANCE(521); - if (lookahead == 'x') ADVANCE(568); - if (lookahead != 0) ADVANCE(1704); + if (lookahead == 't') ADVANCE(481); END_STATE(); case 508: - if (lookahead == 'u') ADVANCE(492); + if (lookahead == 't') ADVANCE(360); END_STATE(); case 509: - if (lookahead == 'u') ADVANCE(417); + if (lookahead == 'u') ADVANCE(523); + if (lookahead == 'x') ADVANCE(570); + if (lookahead != 0) ADVANCE(1708); END_STATE(); case 510: - if (lookahead == 'u') ADVANCE(369); + if (lookahead == 'u') ADVANCE(494); END_STATE(); case 511: - if (lookahead == 'u') ADVANCE(497); + if (lookahead == 'u') ADVANCE(420); END_STATE(); case 512: - if (lookahead == 'u') ADVANCE(522); - if (lookahead == 'x') ADVANCE(569); - if (lookahead != 0) ADVANCE(1696); + if (lookahead == 'u') ADVANCE(373); END_STATE(); case 513: - if (lookahead == 'w') ADVANCE(401); + if (lookahead == 'u') ADVANCE(499); END_STATE(); case 514: - if (lookahead == 'w') ADVANCE(402); + if (lookahead == 'u') ADVANCE(524); + if (lookahead == 'x') ADVANCE(571); + if (lookahead != 0) ADVANCE(1700); END_STATE(); case 515: - if (lookahead == 'w') ADVANCE(403); + if (lookahead == 'w') ADVANCE(404); END_STATE(); case 516: - if (lookahead == 'w') ADVANCE(404); + if (lookahead == 'w') ADVANCE(405); END_STATE(); case 517: - if (lookahead == 'w') ADVANCE(405); + if (lookahead == 'w') ADVANCE(406); END_STATE(); case 518: - if (lookahead == 'x') ADVANCE(502); + if (lookahead == 'w') ADVANCE(407); END_STATE(); case 519: - if (lookahead == 'y') ADVANCE(1658); + if (lookahead == 'w') ADVANCE(408); END_STATE(); case 520: - if (lookahead == 'y') ADVANCE(446); + if (lookahead == 'x') ADVANCE(504); END_STATE(); case 521: - if (lookahead == '{') ADVANCE(565); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); + if (lookahead == 'y') ADVANCE(1662); END_STATE(); case 522: + if (lookahead == 'y') ADVANCE(449); + END_STATE(); + case 523: if (lookahead == '{') ADVANCE(567); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); - END_STATE(); - case 523: - if (lookahead == '|') ADVANCE(1455); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(565); END_STATE(); case 524: - if (lookahead == '|') ADVANCE(1456); + if (lookahead == '{') ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(572); END_STATE(); case 525: - if (lookahead == '|') ADVANCE(1460); + if (lookahead == '|') ADVANCE(1459); END_STATE(); case 526: - if (lookahead == '|') ADVANCE(1453); + if (lookahead == '|') ADVANCE(1460); END_STATE(); case 527: - if (lookahead == '|') ADVANCE(1459); + if (lookahead == '|') ADVANCE(1464); END_STATE(); case 528: - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '|') ADVANCE(1457); END_STATE(); case 529: - if (lookahead == '|') ADVANCE(1457); + if (lookahead == '|') ADVANCE(1463); END_STATE(); case 530: if (lookahead == '|') ADVANCE(1458); END_STATE(); case 531: - if (lookahead == '}') ADVANCE(1704); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + if (lookahead == '|') ADVANCE(1461); END_STATE(); case 532: - if (lookahead == '}') ADVANCE(1696); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + if (lookahead == '|') ADVANCE(1462); END_STATE(); case 533: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == '}') ADVANCE(1708); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(533); END_STATE(); case 534: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '}') ADVANCE(1700); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(534); END_STATE(); case 535: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1105); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(542); END_STATE(); case 536: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1103); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); END_STATE(); case 537: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(544); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1109); END_STATE(); case 538: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(545); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1107); END_STATE(); case 539: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(535); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(546); END_STATE(); case 540: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(547); END_STATE(); case 541: if (lookahead == 'N' || @@ -18809,13564 +18888,13678 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 542: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(536); + lookahead == 'n') ADVANCE(1113); END_STATE(); case 543: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(538); + lookahead == 'n') ADVANCE(539); END_STATE(); case 544: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(547); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(538); END_STATE(); case 545: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(546); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(540); END_STATE(); case 546: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(549); END_STATE(); case 547: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(548); END_STATE(); case 548: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1671); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1102); END_STATE(); case 549: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1108); END_STATE(); case 550: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1675); END_STATE(); case 551: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1564); END_STATE(); case 552: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(322); END_STATE(); case 553: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); case 554: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); END_STATE(); case 555: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1683); END_STATE(); case 556: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); END_STATE(); case 557: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); END_STATE(); case 558: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(553); END_STATE(); case 559: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1682); END_STATE(); case 560: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); END_STATE(); case 561: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); END_STATE(); case 562: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(559); END_STATE(); case 563: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); END_STATE(); case 564: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(563); END_STATE(); case 565: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); END_STATE(); case 566: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1696); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1708); END_STATE(); case 567: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(533); END_STATE(); case 568: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(564); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1700); END_STATE(); case 569: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(566); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(534); END_STATE(); case 570: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(566); END_STATE(); case 571: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '$', 1471, - '&', 824, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - ',', 1469, - '-', 1486, - '.', 1721, - '/', 1570, - ':', 1713, - ';', 1451, - '<', 1549, - '=', 673, - '>', 1480, - '?', 1717, - '@', 1462, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 1502, - '`', 1692, - '{', 1498, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(571); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1373); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); END_STATE(); case 572: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - '?', 1717, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(572); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(571); END_STATE(); case 573: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '\n', 1483, + '\r', 9, + '!', 1722, + '"', 1689, + '#', 2193, + '$', 1474, + '&', 828, + '\'', 1692, + '(', 1471, + ')', 1472, + '*', 1516, + '+', 1579, + ',', 1473, + '-', 1491, + '.', 1725, + '/', 1574, + ':', 1717, + ';', 1455, + '<', 1553, + '=', 677, + '>', 1485, + '?', 1721, + '@', 1466, + '[', 1469, + ']', 1470, + '^', 1736, + '_', 1507, + '`', 1696, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1377); END_STATE(); case 574: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 1720, - ':', 1713, - ';', 1451, - '=', 675, - '>', 1479, - '?', 1717, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1722, + '"', 1689, + '#', 2193, + '\'', 1692, + ')', 1472, + '*', 1515, + '+', 706, + '-', 312, + '.', 1731, + ';', 1455, + '?', 1721, + 'I', 813, + 'N', 809, + '[', 1469, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '\'' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 575: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 1722, - ':', 1713, - ';', 1451, - '=', 675, - '>', 1479, - '?', 1717, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1722, + '"', 1689, + '#', 2193, + '\'', 1692, + ')', 1472, + '*', 1515, + '+', 706, + '-', 312, + '.', 1731, + ';', 1455, + 'I', 813, + 'N', 809, + '[', 1469, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + lookahead == ' ') SKIP(575); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 576: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1722, - ';', 1451, - '=', 1729, - '?', 1717, - 'e', 1374, - 'o', 1375, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1452, + '\r', 9, + '!', 1722, + '#', 2193, + '(', 1471, + ')', 1472, + '-', 302, + '.', 1724, + ':', 1717, + ';', 1455, + '=', 679, + '>', 1484, + '?', 1721, + '[', 1469, + 'a', 424, + 'e', 293, + 'i', 390, + 'o', 294, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + if (lookahead == '\t' || + lookahead == ' ') SKIP(576); END_STATE(); case 577: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1719, - '#', 2188, - '$', 1509, - '\'', 1691, - '(', 1561, - ')', 1468, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1722, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1462, - ']', 1466, - '`', 1695, - 'a', 421, - 'b', 400, - 'c', 351, - 'd', 374, - 'e', 284, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1722, + '#', 2193, + '(', 1471, + ')', 1472, + '-', 302, + '.', 1727, + ':', 1717, + ';', 1455, + '=', 679, + '>', 1484, + '?', 1721, + '[', 1469, + 'a', 424, + 'e', 293, + 'i', 390, + 'o', 294, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + lookahead == ' ') SKIP(576); END_STATE(); case 578: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1719, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1722, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '?', 1717, - 'B', 1653, - 'E', 333, - 'G', 333, - 'K', 333, - 'M', 333, - 'P', 333, - 'T', 333, - '[', 1665, - 'a', 421, - 'b', 1655, - 'd', 346, - 'e', 282, - 'g', 332, - 'h', 345, - 'i', 387, - 'k', 332, - 'l', 399, - 'm', 334, - 'n', 435, - 'o', 279, - 'p', 332, - 's', 377, - 't', 332, - 'u', 469, - 'w', 408, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - 0xb5, 469, + '\n', 1452, + '\r', 9, + '!', 1722, + '#', 2193, + ')', 1472, + '.', 1727, + ';', 1455, + '=', 1734, + '?', 1721, + 'e', 1378, + 'o', 1379, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1451); END_STATE(); case 579: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1719, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1720, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '?', 1717, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1723, + '#', 2193, + '$', 1514, + '\'', 1695, + '(', 1565, + ')', 1472, + '*', 1517, + '+', 1582, + '-', 1500, + '.', 1727, + '/', 1572, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 678, + '>', 1485, + '?', 1721, + '@', 1466, + ']', 1470, + '`', 1699, + 'a', 424, + 'b', 403, + 'c', 355, + 'd', 378, + 'e', 289, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + lookahead == ' ') SKIP(582); END_STATE(); case 580: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1719, - '#', 2188, - ')', 1468, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1720, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1462, - ']', 1466, - 'a', 421, - 'b', 400, - 'c', 351, - 'd', 374, - 'e', 284, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1723, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1727, + '/', 1571, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 326, + '>', 1485, + '?', 1721, + 'B', 1657, + 'E', 338, + 'G', 338, + 'K', 338, + 'M', 338, + 'P', 338, + 'T', 338, + '[', 1669, + 'a', 424, + 'b', 1659, + 'd', 350, + 'e', 287, + 'g', 337, + 'h', 349, + 'i', 390, + 'k', 337, + 'l', 402, + 'm', 339, + 'n', 438, + 'o', 284, + 'p', 337, + 's', 380, + 't', 337, + 'u', 471, + 'w', 411, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, + 0xb5, 471, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + lookahead == ' ') SKIP(581); END_STATE(); case 581: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1723, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1724, + '/', 1571, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 326, + '>', 1485, + '?', 1721, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 390, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') SKIP(581); END_STATE(); case 582: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1723, + '#', 2193, + ')', 1472, + '*', 1517, + '+', 1582, + '-', 1500, + '.', 1724, + '/', 1572, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 678, + '>', 1485, + '?', 1721, + '@', 1466, + ']', 1470, + 'a', 424, + 'b', 403, + 'c', 355, + 'd', 378, + 'e', 289, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(582); END_STATE(); case 583: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1608, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1777, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1939); END_STATE(); case 584: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1608, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1781, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 585: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1820, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1777, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 586: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1820, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1781, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 587: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1769, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1768, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 588: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1771, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1783, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 589: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1770, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(619); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1939); END_STATE(); case 590: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1773, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 591: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1769, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1768, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 592: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1771, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1783, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 593: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1771, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1769, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1768, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 594: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1774, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1771, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1783, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 595: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1776, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1768, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 596: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1779, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1783, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 597: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1770, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1939); END_STATE(); case 598: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1773, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 599: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1770, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(619); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1939); END_STATE(); case 600: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1773, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 601: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1777, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(619); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1939); END_STATE(); case 602: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1781, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 603: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1598, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1770, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 604: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1598, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1773, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 605: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1770, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 606: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1773, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 607: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1770, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 608: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1773, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 609: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 852, - '#', 2191, - ')', 1468, - '*', 1514, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, '+', 1579, - '-', 1496, - '/', 1569, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 936, - 'b', 918, - 'e', 829, - 'h', 875, - 'i', 937, - 'l', 917, - 'm', 949, - 'n', 950, - 'o', 828, - 's', 995, - 'x', 948, - '|', 1452, - '}', 1499, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1777, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(619); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1939); END_STATE(); case 610: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 852, - '#', 2191, - ')', 1468, - '*', 1514, + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, '+', 1579, - '-', 1496, - '/', 1569, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 936, - 'b', 918, - 'e', 833, - 'h', 875, - 'i', 937, - 'l', 917, - 'm', 949, - 'n', 950, - 'o', 832, - 's', 995, - 'x', 948, - '|', 1452, - '}', 1499, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1781, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 611: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ':', 1463, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - 'E', 340, - '[', 1465, - 'a', 421, - 'b', 400, - 'c', 351, - 'e', 280, - 'f', 347, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 441, - 'o', 279, - 's', 486, - 't', 457, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 856, + '#', 2196, + ')', 1472, + '*', 1518, + '+', 1583, + '-', 1501, + '/', 1573, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 940, + 'b', 922, + 'e', 833, + 'h', 879, + 'i', 941, + 'l', 921, + 'm', 953, + 'n', 954, + 'o', 832, + 's', 999, + 'x', 952, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); + lookahead == ' ') SKIP(618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1050); END_STATE(); case 612: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1463, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '[', 1465, - 'a', 421, - 'b', 400, - 'c', 351, - 'e', 283, - 'f', 347, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 441, - 'o', 279, - 's', 486, - 't', 457, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 856, + '#', 2196, + ')', 1472, + '*', 1518, + '+', 1583, + '-', 1501, + '/', 1573, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 940, + 'b', 922, + 'e', 837, + 'h', 879, + 'i', 941, + 'l', 921, + 'm', 953, + 'n', 954, + 'o', 836, + 's', 999, + 'x', 952, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1050); END_STATE(); case 613: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '$', 1474, + '(', 1471, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1598, + '/', 1571, + ':', 1467, + ';', 1455, + '<', 1554, + '=', 326, + '>', 1485, + 'E', 344, + '[', 1469, + 'a', 424, + 'b', 403, + 'c', 355, 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'f', 351, + 'h', 348, + 'i', 390, + 'l', 402, + 'm', 439, + 'n', 444, + 'o', 284, + 's', 488, + 't', 459, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(614); END_STATE(); case 614: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '$', 1474, + '(', 1471, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ':', 1467, + ';', 1455, + '<', 1554, + '=', 326, + '>', 1485, + '[', 1469, + 'a', 424, + 'b', 403, + 'c', 355, + 'e', 288, + 'f', 351, + 'h', 348, + 'i', 390, + 'l', 402, + 'm', 439, + 'n', 444, + 'o', 284, + 's', 488, + 't', 459, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(614); END_STATE(); case 615: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '$', 1474, + ')', 1472, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 341, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(615); END_STATE(); case 616: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '$', 1474, + ')', 1472, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 341, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(616); END_STATE(); case 617: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '$', 1474, + ')', 1472, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 341, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 292, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 294, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(617); END_STATE(); case 618: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(618); END_STATE(); case 619: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); END_STATE(); case 620: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); END_STATE(); case 621: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 292, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 294, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(621); END_STATE(); case 622: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1616, - '+', 702, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, '-', 1491, - '.', 697, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 673, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(824); + lookahead == ' ') SKIP(622); END_STATE(); case 623: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, + '\n', 1452, + '\r', 9, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, '-', 1491, - '.', 697, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 673, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 292, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 294, + 's', 488, + 'x', 434, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(824); END_STATE(); case 624: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1989, - 'f', 2015, - 'n', 2043, - 'o', 1990, - 't', 2030, - '{', 1498, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - 'I', 2051, - 'i', 2051, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1620, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + ':', 1467, + ';', 1455, + '=', 677, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 751, + '{', 1503, + '|', 1456, + '}', 1504, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '\t' || + lookahead == ' ') SKIP(625); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2070); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(828); END_STATE(); case 625: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1511, - '+', 702, - '-', 298, - '.', 718, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1472, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + ':', 1467, + ';', 1455, + '=', 677, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, 'w', 751, - '{', 1498, - '}', 1499, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ' ') SKIP(625); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && + (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(828); END_STATE(); case 626: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1511, - '+', 702, - '-', 298, - '.', 718, - ';', 1451, - '=', 673, - '>', 1479, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1472, + '+', 1584, + ',', 1473, + '-', 1496, + '.', 702, + '0', 1627, + ':', 1467, + ';', 1455, + '<', 1145, + '=', 328, + '>', 1484, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + ']', 1470, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, 'w', 751, - '{', 1498, - '}', 1499, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(627); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(828); END_STATE(); case 627: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - '?', 1717, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1472, + '+', 1584, + ',', 1473, + '-', 1496, + '.', 702, + '0', 1627, + ':', 1467, + ';', 1455, + '=', 328, + '>', 1484, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + ']', 1470, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, 'w', 751, - '}', 1499, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '0' || '>' < lookahead)) ADVANCE(828); END_STATE(); case 628: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1472, + '+', 2005, + '-', 1493, + '.', 2004, + '0', 1628, + ';', 1455, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'e', 1994, + 'f', 2020, + 'n', 2048, + 'o', 1995, + 't', 2035, + '{', 1503, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, + 'I', 2056, + 'i', 2056, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(628); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(2075); END_STATE(); case 629: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2190, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ';', 1451, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '\'', 1692, + '(', 1471, + ')', 1472, + '*', 1515, + '+', 706, + '-', 303, + '.', 722, + ';', 1455, + '<', 1145, + '=', 677, + '>', 1484, + '@', 1486, + 'I', 813, + 'N', 809, + '[', 1469, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == ' ') SKIP(630); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 630: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1604, - ';', 1451, - '[', 1665, - '_', 1813, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '\'', 1692, + '(', 1471, + ')', 1472, + '*', 1515, + '+', 706, + '-', 303, + '.', 722, + ';', 1455, + '=', 677, + '>', 1484, + 'I', 813, + 'N', 809, + '[', 1469, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, + '}', 1504, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ']' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(630); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 631: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1604, - ';', 1451, - '_', 1813, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '\'', 1692, + ')', 1472, + '*', 1515, + '+', 706, + '-', 312, + '.', 1731, + ';', 1455, + '?', 1721, + 'I', 813, + 'N', 809, + '[', 1469, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 632: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1815, - ';', 1451, - '_', 1813, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '\'', 1692, + ')', 1472, + '*', 1515, + '+', 706, + '-', 312, + '.', 1731, + ';', 1455, + 'I', 813, + 'N', 809, + '[', 1469, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(632); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 633: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1815, - ';', 1451, - '_', 1813, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2195, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + ';', 1455, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 751, + '{', 1503, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 634: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - '.', 337, - ';', 1451, - 'a', 421, - 'e', 288, - 'o', 289, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '.', 1608, + ';', 1455, + '[', 1669, + '_', 1818, + 'e', 1782, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, + '+', 1796, + '-', 1796, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(634); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1939); END_STATE(); case 635: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '.', 1608, + ';', 1455, + '_', 1818, + 'a', 1870, + 'e', 1782, + 'o', 1783, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(638); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 636: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '.', 1820, + ';', 1455, + '_', 1818, + 'a', 1870, + 'e', 1782, + 'o', 1783, + 'x', 1876, + '|', 1456, + '}', 1504, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(638); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 637: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '.', 1820, + ';', 1455, + '_', 1818, + 'e', 1782, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, + '+', 1796, + '-', 1796, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 638: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1452, + '\r', 9, + '#', 2193, + '$', 1474, + ')', 1472, + '.', 341, + ';', 1455, + 'a', 424, + 'e', 293, + 'o', 294, + 'x', 434, + '|', 1456, + '}', 1504, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(638); + if (lookahead == '+' || + lookahead == '-') ADVANCE(319); END_STATE(); case 639: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1599, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'd', 1829, + 'e', 1772, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'o', 1783, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); + lookahead == ' ') SKIP(664); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 640: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1599, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1772, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'o', 1784, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + '}', 1504, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 641: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1599, + ';', 1455, + 'E', 1824, + 'a', 1870, + 'e', 1774, + 'o', 1783, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 642: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1599, + ';', 1455, + 'E', 1824, + 'e', 1774, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 643: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1775, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'a', 1870, + 'd', 1829, + 'e', 1772, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'o', 1783, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); + lookahead == ' ') SKIP(664); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 644: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1775, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'd', 1829, + 'e', 1772, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'o', 1784, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + '}', 1504, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 645: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'd', 1829, + 'e', 1772, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'o', 1783, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 646: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - '_', 1813, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1772, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'o', 1784, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + '}', 1504, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 647: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'd', 1829, + 'e', 1780, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'o', 1783, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 648: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1780, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'o', 1784, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + '}', 1504, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 649: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'e', 1774, + 'o', 1783, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 650: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1824, + '_', 1818, + 'e', 1774, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 651: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1594, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1824, + 'a', 1870, + 'e', 1774, + 'o', 1783, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 652: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1594, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1824, + 'e', 1774, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 653: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'a', 1870, + 'e', 1782, + 'o', 1783, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 654: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - '_', 1813, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'e', 1782, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 655: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1598, + ';', 1455, + 'E', 1824, + 'a', 1870, + 'e', 1774, + 'o', 1783, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 656: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1598, + ';', 1455, + 'E', 1824, + 'e', 1774, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 657: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + ';', 1455, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'e', 1774, + 'o', 1783, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 658: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + ';', 1455, + 'E', 1824, + '_', 1818, + 'e', 1774, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 659: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ')', 1468, - ';', 1451, - '=', 1729, - 'e', 1756, - 'o', 1757, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + ';', 1455, + 'E', 1824, + 'a', 1870, + 'e', 1774, + 'o', 1783, + 'x', 1876, + '|', 1456, + '}', 1504, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 660: - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ')', 1468, - ';', 1451, - 'a', 421, - 'e', 288, - 'o', 289, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + ';', 1455, + 'E', 1824, + 'e', 1774, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 661: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + ';', 1455, + 'a', 1870, + 'e', 1782, + 'o', 1783, + 'x', 1876, + '|', 1456, + '}', 1504, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 662: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + '(', 1565, + ')', 1472, + ';', 1455, + 'e', 1782, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 663: - ACCEPT_TOKEN(aux_sym_shebang_token1); + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + ')', 1472, + ';', 1455, + '=', 1734, + 'e', 1761, + 'o', 1762, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, + ); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 664: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead == '#') ADVANCE(2189); + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + ')', 1472, + ';', 1455, + 'a', 424, + 'e', 293, + 'o', 294, + 'x', 434, + '|', 1456, + '}', 1504, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(664); - if (lookahead != 0) ADVANCE(665); + lookahead == ' ') SKIP(664); END_STATE(); case 665: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead != 0) ADVANCE(665); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 666: - ACCEPT_TOKEN(anon_sym_export); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 667: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1395); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); case 668: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(742); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(667); + if (lookahead == '\r') ADVANCE(669); + if (lookahead == '#') ADVANCE(2194); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(668); + if (lookahead != 0) ADVANCE(669); END_STATE(); case 669: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(667); + if (lookahead == '\r') ADVANCE(669); + if (lookahead != 0) ADVANCE(669); END_STATE(); case 670: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 671: - ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(1399); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 672: - ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(746); END_STATE(); case 673: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 674: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 675: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(1500); + ACCEPT_TOKEN(anon_sym_alias); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 676: - ACCEPT_TOKEN(anon_sym_let); + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 677: - ACCEPT_TOKEN(anon_sym_let); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 678: - ACCEPT_TOKEN(anon_sym_let); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '~') ADVANCE(1557); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_mut); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(1505); END_STATE(); case 680: - ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 681: - ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_let); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_let); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 683: - ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 684: - ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_mut); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_mut); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_const); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 690: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '{') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 691: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(766); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'r') ADVANCE(775); - if (lookahead == 'x') ADVANCE(771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 692: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(767); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 693: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(745); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(744); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '$') ADVANCE(1621); + if (lookahead == '(') ADVANCE(1595); + if (lookahead == '{') ADVANCE(1710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(770); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'l') ADVANCE(790); + if (lookahead == 'r') ADVANCE(779); + if (lookahead == 'x') ADVANCE(775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(749); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'u') ADVANCE(799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1504); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(748); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '-') ADVANCE(825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(808); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(699); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(717); - if (lookahead == '_') ADVANCE(702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1509); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1597); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(721); + if (lookahead == '_') ADVANCE(706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == ':') ADVANCE(557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 806, - '_', 719, - 'i', 806, - 'l', 786, - 'x', 771, - '+', 719, - '-', 719, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == '_') ADVANCE(719); - if (lookahead == 'i') ADVANCE(726); - if (lookahead == '+' || - lookahead == '-') ADVANCE(719); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 806, - 'a', 796, - 'i', 763, - 'o', 730, - 's', 1658, - 'u', 791, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'x') ADVANCE(771); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'r') ADVANCE(799); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ADVANCE_MAP( + 'I', 810, + '_', 723, + 'i', 810, + 'l', 790, + 'x', 775, + '+', 723, + '-', 723, + 'B', 1657, + 'b', 1657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); + if (lookahead == 'I') ADVANCE(810); + if (lookahead == '_') ADVANCE(723); + if (lookahead == 'i') ADVANCE(730); + if (lookahead == '+' || + lookahead == '-') ADVANCE(723); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(726); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ADVANCE_MAP( + 'I', 810, + 'a', 800, + 'i', 767, + 'o', 734, + 's', 1662, + 'u', 795, + 'B', 1657, + 'b', 1657, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(807); - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(810); + if (lookahead == 'i') ADVANCE(810); + if (lookahead == 'l') ADVANCE(790); + if (lookahead == 'x') ADVANCE(775); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(716); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(810); + if (lookahead == 'i') ADVANCE(810); + if (lookahead == 'r') ADVANCE(803); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(810); + if (lookahead == 'i') ADVANCE(810); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(810); + if (lookahead == 'i') ADVANCE(730); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(719); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N') ADVANCE(811); + if (lookahead == 'f') ADVANCE(1072); + if (lookahead == 'n') ADVANCE(1088); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'o') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(803); - if (lookahead == 'e') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'o') ADVANCE(773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(724); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(796); - if (lookahead == 'o') ADVANCE(730); - if (lookahead == 'u') ADVANCE(791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'o') ADVANCE(768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(807); + if (lookahead == 'e') ADVANCE(750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(764); + if (lookahead == 'o') ADVANCE(777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(800); + if (lookahead == 'o') ADVANCE(734); + if (lookahead == 'u') ADVANCE(795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'd') ADVANCE(805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(790); - if (lookahead == 'o') ADVANCE(765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(778); - if (lookahead == 'i') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(794); + if (lookahead == 'o') ADVANCE(769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(782); + if (lookahead == 'i') ADVANCE(761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(780); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(753); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'f') ADVANCE(829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(1081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(1084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(757); + if (lookahead == 'k') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'i') ADVANCE(728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'i') ADVANCE(761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'x') ADVANCE(771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(1099); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(790); + if (lookahead == 'x') ADVANCE(775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(1057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(806); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(791); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(792); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(768); - if (lookahead == 't') ADVANCE(743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(796); + if (lookahead == 'u') ADVANCE(760); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'p') ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'p') ADVANCE(772); + if (lookahead == 't') ADVANCE(747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(1063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(711); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'u') ADVANCE(760); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(793); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(736); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(694); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(734); - if (lookahead == 'y') ADVANCE(1074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(760); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(738); + if (lookahead == 'y') ADVANCE(1078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '{') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'v') ADVANCE(1054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1099); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'y') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '{') ADVANCE(1710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(808); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 825: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 826: - ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(823); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 827: - ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 828: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(900); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1532); - if (lookahead == 'u') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 829: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(945); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(889); - if (lookahead == 'r') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 830: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(901); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_def); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 831: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(947); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(903); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1532); - if (lookahead == 'u') ADVANCE(999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(904); + if (lookahead == '>') ADVANCE(1744); + if (lookahead == 'r') ADVANCE(1536); + if (lookahead == 'u') ADVANCE(997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(953); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(889); - if (lookahead == 'r') ADVANCE(966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(949); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'n') ADVANCE(893); + if (lookahead == 'r') ADVANCE(964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(955); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(905); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(906); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(951); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1036); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(907); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'r') ADVANCE(1536); + if (lookahead == 'u') ADVANCE(1003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(957); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'n') ADVANCE(893); + if (lookahead == 'r') ADVANCE(970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(959); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(910); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1485); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1040); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1490); + if (lookahead == '.') ADVANCE(870); + if (lookahead == '_') ADVANCE(852); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1029); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1044); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(1508); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1048); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(2069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(870); + if (lookahead == '_') ADVANCE(852); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1029); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(870); + if (lookahead == '_') ADVANCE(852); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(1513); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == ':') ADVANCE(557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == ':') ADVANCE(2074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '=') ADVANCE(1552); + if (lookahead == '~') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N') ADVANCE(1021); - if (lookahead == 'f') ADVANCE(1070); - if (lookahead == 'n') ADVANCE(1085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'o') ADVANCE(1662); - if (lookahead == 'x') ADVANCE(1664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'o') ADVANCE(1662); - if (lookahead == 'x') ADVANCE(1664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N') ADVANCE(1025); + if (lookahead == 'f') ADVANCE(1074); + if (lookahead == 'n') ADVANCE(1089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'T') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'T') ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(870); + if (lookahead == 'b') ADVANCE(1656); + if (lookahead == 'o') ADVANCE(1666); + if (lookahead == 'x') ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(870); + if (lookahead == 'b') ADVANCE(1656); + if (lookahead == 'o') ADVANCE(1666); + if (lookahead == 'x') ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); + if (lookahead == '_') ADVANCE(870); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(928); - if (lookahead == 'o') ADVANCE(965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(874); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(932); + if (lookahead == 'o') ADVANCE(969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(987); - if (lookahead == 'o') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(941); - if (lookahead == 'o') ADVANCE(962); - if (lookahead == 's') ADVANCE(909); - if (lookahead == 'x') ADVANCE(954); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1003); - if (lookahead == 'o') ADVANCE(888); - if (lookahead == 'u') ADVANCE(989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(991); + if (lookahead == 'o') ADVANCE(946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(945); + if (lookahead == 'o') ADVANCE(966); + if (lookahead == 's') ADVANCE(913); + if (lookahead == 'x') ADVANCE(958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(1007); + if (lookahead == 'o') ADVANCE(892); + if (lookahead == 'u') ADVANCE(993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'c') ADVANCE(918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'c') ADVANCE(919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1576); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1590); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1563); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(988); - if (lookahead == 'o') ADVANCE(946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(943); - if (lookahead == 'h') ADVANCE(877); - if (lookahead == 'i') ADVANCE(938); - if (lookahead == 'l') ADVANCE(924); - if (lookahead == 's') ADVANCE(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'f') ADVANCE(827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(992); + if (lookahead == 'o') ADVANCE(950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(947); + if (lookahead == 'h') ADVANCE(881); + if (lookahead == 'i') ADVANCE(942); + if (lookahead == 'l') ADVANCE(928); + if (lookahead == 's') ADVANCE(1011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'f') ADVANCE(831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(934); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(1005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1582); - if (lookahead == 'r') ADVANCE(1584); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'k') ADVANCE(897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'k') ADVANCE(898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1586); + if (lookahead == 'r') ADVANCE(1588); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(981); - if (lookahead == 'x') ADVANCE(958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(985); + if (lookahead == 'x') ADVANCE(962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1538); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(986); - if (lookahead == 'u') ADVANCE(931); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(990); + if (lookahead == 'u') ADVANCE(935); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(956); - if (lookahead == 't') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'p') ADVANCE(1068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1590); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'p') ADVANCE(960); + if (lookahead == 't') ADVANCE(908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1592); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(967); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'r') ADVANCE(860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(1540); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(1542); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(1035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(891); - if (lookahead == 'y') ADVANCE(1076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(931); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(895); + if (lookahead == 'y') ADVANCE(1080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'v') ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(935); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'v') ADVANCE(1056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'x') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'x') ADVANCE(1008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1030); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1050); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1034); END_STATE(); case 1035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1047: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1048: - ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1049: - ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1050: - ACCEPT_TOKEN(anon_sym_export_DASHenv); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1051: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 1052: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_use); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1053: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_use); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1054: - ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_export_DASHenv); END_STATE(); case 1055: - ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1056: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1057: - ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 1058: - ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_extern); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1059: - ACCEPT_TOKEN(anon_sym_for); + ACCEPT_TOKEN(anon_sym_extern); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1060: - ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 1061: - ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_module); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1062: - ACCEPT_TOKEN(anon_sym_loop); + ACCEPT_TOKEN(anon_sym_module); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1063: - ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 1064: - ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_for); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1065: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_for); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1066: - ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 1067: - ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_loop); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1068: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_loop); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1069: - ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 1070: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_while); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1071: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_while); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1072: - ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 1073: - ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_if); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1074: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1075: - ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 1076: - ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_else); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1077: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1078: - ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 1079: - ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_try); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1080: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_try); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1081: - ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 1082: - ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_catch); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1083: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_catch); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1084: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1099); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 1085: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_match); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1086: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_match); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1087: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); END_STATE(); case 1088: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1103); END_STATE(); case 1089: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1090: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1445); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1091: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1092: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1093: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 1094: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1095: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1096: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 1097: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1098: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1099: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(811); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 1100: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2052); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1101: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2107); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2161); END_STATE(); case 1103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); + lookahead == 'i') ADVANCE(815); END_STATE(); case 1104: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2057); END_STATE(); case 1105: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(541); + lookahead == 'i') ADVANCE(2112); END_STATE(); case 1106: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1931); + lookahead == 'i') ADVANCE(2166); END_STATE(); case 1107: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2109); + lookahead == 'i') ADVANCE(545); END_STATE(); case 1108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2163); END_STATE(); case 1109: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(543); END_STATE(); case 1110: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1936); END_STATE(); case 1111: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2114); END_STATE(); case 1112: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1110); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2168); END_STATE(); case 1113: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1116); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 1115: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 1116: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(1114); END_STATE(); case 1117: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1111); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(1120); END_STATE(); case 1118: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_SLASH); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1119: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 1120: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 1121: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1115); END_STATE(); case 1122: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 1123: - ACCEPT_TOKEN(anon_sym_like); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 1124: - ACCEPT_TOKEN(anon_sym_not_DASHlike); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 1125: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 1126: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 1127: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_like); END_STATE(); case 1128: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_not_DASHlike); END_STATE(); case 1129: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 1130: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 1131: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 1132: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 1133: - ACCEPT_TOKEN(anon_sym_has); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 1134: - ACCEPT_TOKEN(anon_sym_not_DASHhas); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 1135: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_in2); END_STATE(); case 1136: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 1137: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_has); END_STATE(); case 1138: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); case 1139: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 1140: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); END_STATE(); case 1141: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 1142: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1143); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); END_STATE(); case 1143: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 1144: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1145); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1145: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 1146: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1147); END_STATE(); case 1147: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1148: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1149); END_STATE(); case 1149: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1197, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1200, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1195, + 's', 1306, + 'x', 1279, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1201, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1203, + 's', 1306, + 'x', 1279, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ':', 1717, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ':', 1717, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ':', 1717, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ':', 1717, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1197, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1197, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1200, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(34); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(35); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, - '}', 1499, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, - '}', 1499, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1197, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1200, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1594, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1198, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1195, + 's', 1306, + 'x', 1279, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1594, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1201, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1203, + 's', 1306, + 'x', 1279, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1198, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1195, + 's', 1306, + 'x', 1279, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1201, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1203, + 's', 1306, + 'x', 1279, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1220, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1598, + '/', 1117, + ':', 1717, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1222, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1598, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1222, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ':', 1717, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1222, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(271); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1220, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ':', 1717, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1222, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1270, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1282, - 's', 1302, - 'x', 1275, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ':', 1717, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1224, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '#') ADVANCE(2188); + ADVANCE_MAP( + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1222, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1224, - '-', 1226, - '>', 1737, - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - 'r', 1283, - 'B', 1653, - 'b', 1653, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1222, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '\t' || + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1245); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1130); - if (lookahead == 'u') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1224, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1274); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1274, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1286, + 's', 1306, + 'x', 1279, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1273, - '>', 1737, - 'I', 1322, - 'i', 1322, - 'n', 1240, - 'r', 1283, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '\t' || + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1273); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1228, + '-', 1230, + '>', 1742, + 'I', 1326, + '_', 1230, + 'i', 1326, + 'n', 1244, + 'r', 1287, + 'B', 1657, + 'b', 1657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1246); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1249); + if (lookahead == '>') ADVANCE(1744); + if (lookahead == 'r') ADVANCE(1134); + if (lookahead == 'u') ADVANCE(1308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1277, - '>', 523, - 'I', 1322, - 'i', 1322, - 'n', 1240, - 'r', 1288, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1278); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1277); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1277, + '>', 1742, + 'I', 1326, + 'i', 1326, + 'n', 1244, + 'r', 1287, + 'B', 1657, + 'b', 1657, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1225, - '-', 1226, - '>', 523, - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - 'r', 1288, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1277); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'n') ADVANCE(1244); + if (lookahead == 'r') ADVANCE(1287); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1247); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1130); - if (lookahead == 'u') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1250); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1281); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1281, + '>', 525, + 'I', 1326, + 'i', 1326, + 'n', 1244, + 'r', 1292, + 'B', 1657, + 'b', 1657, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1248); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1281); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'n') ADVANCE(1244); + if (lookahead == 'r') ADVANCE(1292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1229, + '-', 1230, + '>', 525, + 'I', 1326, + '_', 1230, + 'i', 1326, + 'n', 1244, + 'r', 1292, + 'B', 1657, + 'b', 1657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1251); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'r') ADVANCE(1134); + if (lookahead == 'u') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1285); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1252); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '=') ADVANCE(1140); - if (lookahead == '~') ADVANCE(1122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1322); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '.') ADVANCE(1597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '=') ADVANCE(1144); + if (lookahead == '~') ADVANCE(1126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - '+', 1226, - '-', 1226, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'i') ADVANCE(1235); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1226); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1235); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + 'I', 1326, + '_', 1230, + 'i', 1326, + 'n', 1244, + '+', 1230, + '-', 1230, + 'B', 1657, + 'b', 1657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1267); - if (lookahead == 'o') ADVANCE(1238); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1326); + if (lookahead == '_') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1239); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1230); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1210); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1326); + if (lookahead == 'n') ADVANCE(1244); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1214); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1326); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1239); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1271); + if (lookahead == 'o') ADVANCE(1242); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1230); + if (lookahead == 'o') ADVANCE(1214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1295); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1230); + if (lookahead == 'o') ADVANCE(1218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1295); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1230); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1287); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1296); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1271); - if (lookahead == 'o') ADVANCE(1285); - if (lookahead == 's') ADVANCE(1250); - if (lookahead == 'x') ADVANCE(1278); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1299); + if (lookahead == 'r') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1291); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1275); + if (lookahead == 'o') ADVANCE(1289); + if (lookahead == 's') ADVANCE(1254); + if (lookahead == 'x') ADVANCE(1282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'c') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1236); - if (lookahead == 't') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1124); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1240); + if (lookahead == 't') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1272); - if (lookahead == 'h') ADVANCE(1232); - if (lookahead == 'i') ADVANCE(1269); - if (lookahead == 'l') ADVANCE(1261); - if (lookahead == 's') ADVANCE(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1215); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1219); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1135); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1276); + if (lookahead == 'h') ADVANCE(1236); + if (lookahead == 'i') ADVANCE(1273); + if (lookahead == 'l') ADVANCE(1265); + if (lookahead == 's') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1142); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'l') ADVANCE(1119); - if (lookahead == 'r') ADVANCE(1120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1268); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'l') ADVANCE(1123); + if (lookahead == 'r') ADVANCE(1124); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1135); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1136); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1244); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1284); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1243); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'o') ADVANCE(1214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1303); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1288); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1192); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1307); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1196); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1200); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1133); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1131); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1289); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1130); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1204); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1217); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1133); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1221); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1205); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1206); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1202); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1208); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1209); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1203); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1210); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1211); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1206); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1199); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1216); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1205); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1220); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'u') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'u') ADVANCE(1315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1261); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1264); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 'y') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(622); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1334: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == '_') ADVANCE(1346); - if (lookahead == 'i') ADVANCE(1372); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1197, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1335: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == '_') ADVANCE(1346); - if (lookahead == 'i') ADVANCE(1349); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1200, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1336: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1198, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1195, + 's', 1306, + 'x', 1279, + '|', 1456, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1337: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(448); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1201, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1203, + 's', 1306, + 'x', 1279, + '|', 1456, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '+') ADVANCE(1350); + if (lookahead == '-') ADVANCE(1979); + if (lookahead == 'I') ADVANCE(1376); + if (lookahead == '_') ADVANCE(1350); + if (lookahead == 'i') ADVANCE(1376); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1339: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(432); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '+') ADVANCE(1350); + if (lookahead == '-') ADVANCE(1979); + if (lookahead == 'I') ADVANCE(1376); + if (lookahead == '_') ADVANCE(1350); + if (lookahead == 'i') ADVANCE(1353); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1340: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(449); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '+') ADVANCE(1350); + if (lookahead == '-') ADVANCE(1979); + if (lookahead == '_') ADVANCE(1350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1341: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(517); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(451); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1342: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1372); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(364); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1343: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1349); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(435); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1344: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1360); - if (lookahead == 's') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(452); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1345: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(519); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1346: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'I') ADVANCE(1376); + if (lookahead == 'i') ADVANCE(1376); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1347: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1367); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'I') ADVANCE(1376); + if (lookahead == 'i') ADVANCE(1353); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1348: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1371); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'I') ADVANCE(1376); + if (lookahead == 'i') ADVANCE(1364); + if (lookahead == 's') ADVANCE(1664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1349: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '_') ADVANCE(1349); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1350: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '_') ADVANCE(1350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1351: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1355); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'a') ADVANCE(1371); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'a') ADVANCE(1375); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1353: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1350); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'b') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1354: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'c') ADVANCE(1664); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1356); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1356: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1337); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1338); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1354); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1357); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'k') ADVANCE(1664); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1364); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1360); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1341); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1087); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1342); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1352); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1361); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1365); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'm') ADVANCE(1368); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1363); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1369); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1091); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1356); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'o') ADVANCE(1369); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'p') ADVANCE(1367); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1358); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1664); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1345); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 's') ADVANCE(1664); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 't') ADVANCE(1344); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1374: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1419); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(1362); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1375: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1432); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(1664); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1376: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1377: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1378: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(1439); - if (lookahead == 'f') ADVANCE(1069); - if (lookahead == 'n') ADVANCE(1086); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(441); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'r') ADVANCE(1423); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1379: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1379); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'u') ADVANCE(1436); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1380: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1427); - if (lookahead == 'o') ADVANCE(1412); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(446); + if (lookahead == '>') ADVANCE(528); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1381: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1409); - if (lookahead == 'o') ADVANCE(1418); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(387); + if (lookahead == '>') ADVANCE(530); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1382: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1422); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N') ADVANCE(1443); + if (lookahead == 'f') ADVANCE(1073); + if (lookahead == 'n') ADVANCE(1090); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1383: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1433); - if (lookahead == 'o') ADVANCE(1386); - if (lookahead == 'u') ADVANCE(1429); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '_') ADVANCE(1383); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1383); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1384: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1398); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1431); + if (lookahead == 'o') ADVANCE(1416); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1385: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1399); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1413); + if (lookahead == 'o') ADVANCE(1422); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1386: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1436); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1426); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1387: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1397); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1437); + if (lookahead == 'o') ADVANCE(1390); + if (lookahead == 'u') ADVANCE(1433); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1388: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1048); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'c') ADVANCE(1402); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1389: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1072); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'c') ADVANCE(1403); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1390: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1090); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'd') ADVANCE(1440); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1391: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1093); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1401); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1392: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1066); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1052); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1393: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1057); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1076); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1394: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1428); - if (lookahead == 'o') ADVANCE(1413); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1094); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1395: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1411); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1097); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1396: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1420); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1070); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(826); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1061); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1078); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1432); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1399: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1081); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1415); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1400: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1402); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1424); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1401: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1382); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'f') ADVANCE(830); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1402: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1406); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1082); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1403: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1401); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1085); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1404: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1096); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1406); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1405: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1404); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1386); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1406: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1392); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1410); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1393); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1405); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1408: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1424); - if (lookahead == 'x') ADVANCE(1416); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1100); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1426); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1408); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1054); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1396); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1437); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1397); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1425); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1428); + if (lookahead == 'x') ADVANCE(1420); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1415); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1430); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1421); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1058); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1063); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1441); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1414); - if (lookahead == 't') ADVANCE(1396); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1429); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1435); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'o') ADVANCE(1419); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1060); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'o') ADVANCE(1425); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1376); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'p') ADVANCE(1067); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1410); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'p') ADVANCE(1418); + if (lookahead == 't') ADVANCE(1400); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1431); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1439); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(671); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1064); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1423: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1388); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1380); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1389); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1414); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1430); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1435); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1426: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1391); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(675); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1384); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1392); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(677); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1393); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(680); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1434); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(683); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1395); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(667); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1388); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1377); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(681); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1385); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(684); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1405); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(687); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1390); - if (lookahead == 'y') ADVANCE(1075); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(671); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1407); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1381); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1051); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1389); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1438: ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(1409); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + lookahead == 'a') ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'u') ADVANCE(1394); + if (lookahead == 'y') ADVANCE(1079); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1445); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'u') ADVANCE(1411); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1444); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'v') ADVANCE(1055); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1439); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1445); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1440); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1449); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1446); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1448); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1451); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1447: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1443); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1448: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1444); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1449: - ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1449); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1450); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1450: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1451); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1451: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1452: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 1453: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(1717); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1453); END_STATE(); case 1454: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1454); END_STATE(); case 1455: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 1456: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 1457: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 1458: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 1459: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 1460: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 1461: - ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1461); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 1462: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 1463: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 1464: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 1465: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(sym_attribute_identifier); + if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1465); END_STATE(); case 1466: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 1467: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 1468: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 1469: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1470: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1471: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 1472: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 1473: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 1474: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 1475: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1706); + if (lookahead == '\'') ADVANCE(1705); END_STATE(); case 1476: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1706); + if (lookahead == '\'') ADVANCE(1705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1477: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1478: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 1479: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 1480: - ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1552); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_AT2); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 1482: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 1483: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_LF); END_STATE(); case 1484: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 1485: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(1556); END_STATE(); case 1486: - ACCEPT_TOKEN(anon_sym_DASH2); + ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); case 1487: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 1488: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 1489: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(1971); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 1490: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1491: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); END_STATE(); case 1492: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1489); END_STATE(); case 1493: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 1494: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(1976); + if (lookahead == '_') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1495: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(686); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '_') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1496: ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 1497: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(870); + if (lookahead == '_') ADVANCE(852); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1029); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1498: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(1819); + if (lookahead == '_') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1499: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '_') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1500: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '=') ADVANCE(690); END_STATE(); case 1501: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_DASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1502: - ACCEPT_TOKEN(anon_sym__); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 1503: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 1504: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(690); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 1505: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1988); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 1506: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2078); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1507: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(anon_sym__); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1508: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); END_STATE(); case 1509: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(694); + if (lookahead == '<') ADVANCE(1610); + if (lookahead == '=') ADVANCE(1609); END_STATE(); case 1510: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(1993); + if (lookahead == '<') ADVANCE(1610); + if (lookahead == '=') ADVANCE(1609); END_STATE(); case 1511: - ACCEPT_TOKEN(anon_sym_STAR2); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(2083); + if (lookahead == '<') ADVANCE(1610); + if (lookahead == '=') ADVANCE(1609); END_STATE(); case 1512: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1562); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(1610); + if (lookahead == '=') ADVANCE(1609); END_STATE(); case 1513: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1562); - if (lookahead == '=') ADVANCE(687); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(1610); + if (lookahead == '=') ADVANCE(1609); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1050); END_STATE(); case 1514: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 1515: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'a') ADVANCE(1518); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); case 1516: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1566); END_STATE(); case 1517: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1566); + if (lookahead == '=') ADVANCE(691); END_STATE(); case 1518: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'l') ADVANCE(1521); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1519: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'o') ADVANCE(1522); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'a') ADVANCE(1522); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1520: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'r') ADVANCE(1523); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1521: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 's') ADVANCE(1517); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'e') ADVANCE(1096); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1522: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 't') ADVANCE(1524); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'l') ADVANCE(1525); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1523: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'u') ADVANCE(1516); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'o') ADVANCE(1526); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1524: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'r') ADVANCE(1527); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1525: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 's') ADVANCE(1521); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1526: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 't') ADVANCE(1528); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1527: - ACCEPT_TOKEN(anon_sym_and2); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'u') ADVANCE(1520); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1528: - ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1564); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1529: - ACCEPT_TOKEN(anon_sym_xor2); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1530: - ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 1531: - ACCEPT_TOKEN(anon_sym_or2); + ACCEPT_TOKEN(anon_sym_and2); END_STATE(); case 1532: - ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1533: - ACCEPT_TOKEN(anon_sym_not_DASHin2); + ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); case 1534: - ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1535: - ACCEPT_TOKEN(anon_sym_has2); + ACCEPT_TOKEN(anon_sym_or2); END_STATE(); case 1536: - ACCEPT_TOKEN(anon_sym_has2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1537: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); + ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); case 1538: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1539: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + ACCEPT_TOKEN(anon_sym_has2); END_STATE(); case 1540: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_has2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1541: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); END_STATE(); case 1542: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1543: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); case 1544: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1545: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); END_STATE(); case 1546: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1547: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); case 1548: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1549: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); END_STATE(); case 1550: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1551); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1551: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); case 1552: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); case 1553: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 1554: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(1555); END_STATE(); case 1555: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); case 1556: - ACCEPT_TOKEN(anon_sym_like2); + ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); case 1557: - ACCEPT_TOKEN(anon_sym_like2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); case 1558: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); case 1559: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1560: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(anon_sym_like2); END_STATE(); case 1561: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_like2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1562: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); END_STATE(); case 1563: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1564: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 1565: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(689); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 1566: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); case 1567: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1573); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1568: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1573); - if (lookahead == '=') ADVANCE(688); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 1569: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if (lookahead == '=') ADVANCE(693); END_STATE(); case 1570: - ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1571: - ACCEPT_TOKEN(anon_sym_mod2); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1577); END_STATE(); case 1572: - ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1577); + if (lookahead == '=') ADVANCE(692); END_STATE(); case 1573: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1574: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_SLASH2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1575: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); + ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); case 1576: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1577: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); case 1578: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1565); - if (lookahead == '=') ADVANCE(685); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1579: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(1568); END_STATE(); case 1580: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(717); - if (lookahead == '_') ADVANCE(702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '+') ADVANCE(1568); + if (lookahead == '.') ADVANCE(1819); + if (lookahead == '_') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1581: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1568); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '_') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1582: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1569); + if (lookahead == '=') ADVANCE(689); END_STATE(); case 1583: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1584: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(721); + if (lookahead == '_') ADVANCE(706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 1585: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); case 1586: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1587: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); case 1588: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1589: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); case 1590: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1591: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); case 1592: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1482); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1593: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); case 1594: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1595: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1593); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 1596: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1487); + if (lookahead == '<') ADVANCE(1612); + if (lookahead == '=') ADVANCE(1611); END_STATE(); case 1597: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1503); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(1612); + if (lookahead == '=') ADVANCE(1611); END_STATE(); case 1598: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1503); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); END_STATE(); case 1599: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1592); + if (lookahead == '.') ADVANCE(1597); END_STATE(); case 1600: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1962); + if (lookahead == '.') ADVANCE(1597); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); case 1601: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1508); END_STATE(); case 1602: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1508); + if (lookahead == '_') ADVANCE(1950); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1603: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1969); END_STATE(); case 1604: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1969); + if (lookahead == '_') ADVANCE(1977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1605: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1596); END_STATE(); case 1606: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(1977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1607: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(1950); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1608: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(1820); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1609: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1609); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 1610: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 1611: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(1611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 1612: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(1612); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 1613: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1613); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); END_STATE(); case 1614: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1614); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1615: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(1615); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); END_STATE(); case 1616: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + if (lookahead == '_') ADVANCE(1616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1617: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(1617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 1618: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(820); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(1618); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); END_STATE(); case 1619: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2064); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(1619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1620: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2118); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 1621: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2170); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 1622: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(559); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '-') ADVANCE(824); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1623: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); + if (lookahead == '-') ADVANCE(2069); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1624: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if (lookahead == '-') ADVANCE(2123); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1625: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '-') ADVANCE(2175); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1626: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (lookahead == '-') ADVANCE(561); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1627: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead == '_') ADVANCE(1648); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'x') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1628: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(814); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'x') ADVANCE(823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1648); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'x') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); END_STATE(); case 1629: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if (lookahead == '_') ADVANCE(1648); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'x') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 1630: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1629); + if (lookahead == '_') ADVANCE(1648); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'x') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); case 1631: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if (lookahead == '_') ADVANCE(1648); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'x') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if (lookahead == '_') ADVANCE(1648); + if (lookahead == 'b') ADVANCE(818); + if (lookahead == 'o') ADVANCE(820); + if (lookahead == 'x') ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1633: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1620); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1622); END_STATE(); case 1634: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); + if (lookahead == '_') ADVANCE(1648); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1635: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1622); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1623); END_STATE(); case 1636: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); + if (lookahead == '_') ADVANCE(1648); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1624); END_STATE(); case 1638: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); + if (lookahead == '_') ADVANCE(1648); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); END_STATE(); case 1639: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1626); END_STATE(); case 1640: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1625); END_STATE(); case 1642: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1643: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1644: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); END_STATE(); case 1645: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(1645); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 1646: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); case 1647: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 1648: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + END_STATE(); + case 1649: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + if (lookahead == '_') ADVANCE(1649); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + END_STATE(); + case 1650: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + END_STATE(); + case 1651: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + if (lookahead == '_') ADVANCE(1651); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); + END_STATE(); + case 1652: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1652); END_STATE(); - case 1649: + case 1653: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1649); + lookahead == '_') ADVANCE(1653); END_STATE(); - case 1650: + case 1654: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); + lookahead == '_') ADVANCE(1654); END_STATE(); - case 1651: + case 1655: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1649); + lookahead == '_') ADVANCE(1653); END_STATE(); - case 1652: + case 1656: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '_') ADVANCE(1033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); - case 1653: + case 1657: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 1654: + case 1658: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1301); + if (lookahead == 'i') ADVANCE(1305); END_STATE(); - case 1655: + case 1659: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'i') ADVANCE(483); END_STATE(); - case 1656: + case 1660: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1898); + if (lookahead == 'i') ADVANCE(1903); END_STATE(); - case 1657: + case 1661: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); - case 1658: + case 1662: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 1659: + case 1663: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1047); + if (lookahead == 'e') ADVANCE(1051); END_STATE(); - case 1660: + case 1664: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); - case 1661: + case 1665: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); + lookahead == '_') ADVANCE(1654); END_STATE(); - case 1662: + case 1666: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '_') ADVANCE(1036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); - case 1663: + case 1667: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1652); END_STATE(); - case 1664: + case 1668: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); - case 1665: + case 1669: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1666: + case 1670: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1666); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1670); END_STATE(); - case 1667: + case 1671: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 1668: + case 1672: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(553); + if (lookahead == '.') ADVANCE(555); if (lookahead == '+' || - lookahead == '-') ADVANCE(315); + lookahead == '-') ADVANCE(320); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1671); END_STATE(); - case 1669: + case 1673: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2062); + if (lookahead == '.') ADVANCE(2067); if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); + lookahead == '-') ADVANCE(2006); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1671); END_STATE(); - case 1670: + case 1674: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2121); + if (lookahead == '.') ADVANCE(2126); if (lookahead == '+' || - lookahead == '-') ADVANCE(2084); + lookahead == '-') ADVANCE(2089); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1671); END_STATE(); - case 1671: + case 1675: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1682); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + if (lookahead == ':') ADVANCE(1686); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(554); END_STATE(); - case 1672: + case 1676: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1683); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2057); + if (lookahead == ':') ADVANCE(1687); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2062); END_STATE(); - case 1673: + case 1677: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1684); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2115); + if (lookahead == ':') ADVANCE(1688); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2120); END_STATE(); - case 1674: + case 1678: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(822); + if (lookahead == 'T') ADVANCE(826); END_STATE(); - case 1675: + case 1679: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2066); + if (lookahead == 'T') ADVANCE(2071); END_STATE(); - case 1676: + case 1680: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2124); + if (lookahead == 'T') ADVANCE(2129); END_STATE(); - case 1677: + case 1681: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2172); + if (lookahead == 'T') ADVANCE(2177); END_STATE(); - case 1678: + case 1682: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(562); + if (lookahead == 'T') ADVANCE(564); END_STATE(); - case 1679: + case 1683: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(315); + lookahead == '-') ADVANCE(320); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + lookahead == 'z') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1683); END_STATE(); - case 1680: + case 1684: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); + lookahead == '-') ADVANCE(2006); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); + lookahead == 'z') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1684); END_STATE(); - case 1681: + case 1685: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2084); + lookahead == '-') ADVANCE(2089); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); + lookahead == 'z') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); END_STATE(); - case 1682: + case 1686: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(554); END_STATE(); - case 1683: + case 1687: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2062); END_STATE(); - case 1684: + case 1688: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2115); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2120); END_STATE(); - case 1685: + case 1689: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1686: + case 1690: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1687); + if (lookahead == '#') ADVANCE(1691); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1686); + lookahead == ' ') ADVANCE(1690); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(1687); + lookahead != '\\') ADVANCE(1691); END_STATE(); - case 1687: + case 1691: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1687); + lookahead != '\\') ADVANCE(1691); END_STATE(); - case 1688: + case 1692: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1689: + case 1693: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead == '#') ADVANCE(1690); + if (lookahead == '#') ADVANCE(1694); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1689); + lookahead == ' ') ADVANCE(1693); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1690); + lookahead != '\'') ADVANCE(1694); END_STATE(); - case 1690: + case 1694: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1690); + lookahead != '\'') ADVANCE(1694); END_STATE(); - case 1691: + case 1695: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 1692: + case 1696: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 1693: + case 1697: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead == '#') ADVANCE(1694); + if (lookahead == '#') ADVANCE(1698); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1693); + lookahead == ' ') ADVANCE(1697); if (lookahead != 0 && - lookahead != '`') ADVANCE(1694); + lookahead != '`') ADVANCE(1698); END_STATE(); - case 1694: + case 1698: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); if (lookahead != 0 && - lookahead != '`') ADVANCE(1694); + lookahead != '`') ADVANCE(1698); END_STATE(); - case 1695: + case 1699: ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); - case 1696: + case 1700: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 1697: + case 1701: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1698); + if (lookahead == '#') ADVANCE(1702); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1697); + lookahead == ' ') ADVANCE(1701); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(1698); + lookahead != '\\') ADVANCE(1702); END_STATE(); - case 1698: + case 1702: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1698); + lookahead != '\\') ADVANCE(1702); END_STATE(); - case 1699: + case 1703: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1700); + if (lookahead == '#') ADVANCE(1704); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); + lookahead == ' ') ADVANCE(1703); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1700); + lookahead != '(') ADVANCE(1704); END_STATE(); - case 1700: + case 1704: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1700); + lookahead != '(') ADVANCE(1704); END_STATE(); - case 1701: + case 1705: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 1702: + case 1706: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 1703: + case 1707: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 1704: + case 1708: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 1705: + case 1709: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 1706: + case 1710: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 1707: + case 1711: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 1708: + case 1712: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\n') ADVANCE(1707); - if (lookahead == '\r') ADVANCE(1707); + if (lookahead == '\n') ADVANCE(1711); + if (lookahead == '\r') ADVANCE(1711); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1708); + lookahead == ' ') ADVANCE(1712); if (lookahead == 0x0b || lookahead == '\f' || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1711); END_STATE(); - case 1709: + case 1713: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1707); + if (lookahead == ',') ADVANCE(1711); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1709); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1707); + lookahead == ' ') ADVANCE(1713); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); END_STATE(); - case 1710: + case 1714: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1707); + if (lookahead == ',') ADVANCE(1711); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1710); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); + lookahead == ' ') ADVANCE(1714); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1715); END_STATE(); - case 1711: + case 1715: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(1716); + if (lookahead == ';') ADVANCE(1720); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(318); + lookahead == ' ') ADVANCE(323); END_STATE(); - case 1712: + case 1716: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1716); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - END_STATE(); - case 1713: - ACCEPT_TOKEN(anon_sym_COLON2); - END_STATE(); - case 1714: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(2192); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); - END_STATE(); - case 1715: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); - END_STATE(); - case 1716: - ACCEPT_TOKEN(sym__table_head_separator); + lookahead == ',') ADVANCE(1711); END_STATE(); case 1717: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); case 1718: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if (lookahead == '#') ADVANCE(2197); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1719); END_STATE(); case 1719: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1719); END_STATE(); case 1720: - ACCEPT_TOKEN(anon_sym_DOT2); + ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); case 1721: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(696); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 1722: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1593); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 1723: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1503); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(1552); + if (lookahead == '~') ADVANCE(1558); END_STATE(); case 1724: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1592); END_STATE(); case 1725: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(311); + if (lookahead == '.') ADVANCE(700); END_STATE(); case 1726: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(2148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); case 1727: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '`') ADVANCE(1692); - if (lookahead == '\t' || - lookahead == ' ') SKIP(173); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1728); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1597); END_STATE(); case 1728: - ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1728); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1508); END_STATE(); case 1729: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1596); END_STATE(); case 1730: - ACCEPT_TOKEN(aux_sym_env_var_token1); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1730); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(316); END_STATE(); case 1731: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); case 1732: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1748); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '"') ADVANCE(1689); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '\'') ADVANCE(1692); + if (lookahead == '`') ADVANCE(1696); + if (lookahead == '\t' || + lookahead == ' ') SKIP(178); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1733); END_STATE(); case 1733: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1748); - if (lookahead == '|') ADVANCE(1453); + ACCEPT_TOKEN(aux_sym_path_token1); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1733); END_STATE(); case 1734: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1749); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 1735: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1749); - if (lookahead == '|') ADVANCE(1454); + ACCEPT_TOKEN(aux_sym_env_var_token1); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1735); END_STATE(); case 1736: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1750); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 1737: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1750); - if (lookahead == '|') ADVANCE(1455); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1753); END_STATE(); case 1738: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1751); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1753); + if (lookahead == '|') ADVANCE(1457); END_STATE(); case 1739: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1751); - if (lookahead == '|') ADVANCE(1456); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(1754); END_STATE(); case 1740: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1752); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(1754); + if (lookahead == '|') ADVANCE(1458); END_STATE(); case 1741: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1752); - if (lookahead == '|') ADVANCE(1457); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(1755); END_STATE(); case 1742: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1753); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(1755); + if (lookahead == '|') ADVANCE(1459); END_STATE(); case 1743: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1753); - if (lookahead == '|') ADVANCE(1458); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(1756); END_STATE(); case 1744: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1754); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(1756); + if (lookahead == '|') ADVANCE(1460); END_STATE(); case 1745: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1754); - if (lookahead == '|') ADVANCE(1459); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(1757); END_STATE(); case 1746: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1755); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(1757); + if (lookahead == '|') ADVANCE(1461); END_STATE(); case 1747: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1755); - if (lookahead == '|') ADVANCE(1460); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(1758); END_STATE(); case 1748: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(1758); + if (lookahead == '|') ADVANCE(1462); END_STATE(); case 1749: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(1759); END_STATE(); case 1750: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(1759); + if (lookahead == '|') ADVANCE(1463); END_STATE(); case 1751: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1760); END_STATE(); case 1752: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '|') ADVANCE(1464); END_STATE(); case 1753: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); case 1754: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); case 1755: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); case 1756: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1760); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); case 1757: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1761); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); case 1758: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); case 1759: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); case 1760: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(1758); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); case 1761: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(1759); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '+') ADVANCE(441); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'r') ADVANCE(1765); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1762: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'u') ADVANCE(1766); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1763: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1840); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(1901); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(446); + if (lookahead == '>') ADVANCE(528); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1764: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1817, - '-', 1820, - '>', 1737, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - 'r', 1883, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(387); + if (lookahead == '>') ADVANCE(530); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1765: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1817); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'r') ADVANCE(1763); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1766: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1818, - '-', 1820, - '>', 1919, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 't') ADVANCE(1764); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1767: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1818, - '-', 1820, - '>', 1919, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1768: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1818); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1845); + if (lookahead == '>') ADVANCE(1744); + if (lookahead == 'r') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(1906); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1769: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1818); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'r') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1822, + '-', 1825, + '>', 1742, + 'I', 1932, + '_', 1825, + 'i', 1932, + 'n', 1839, + 'r', 1888, + 'B', 1657, + 'b', 1657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1770: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1841); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1822); + if (lookahead == '-') ADVANCE(1825); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'n') ADVANCE(1839); + if (lookahead == 'r') ADVANCE(1888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1771: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( - '+', 1869, - '>', 1737, - 'I', 1927, - 'i', 1927, - 'n', 1834, - 'r', 1883, - 'B', 1653, - 'b', 1653, + '+', 1823, + '-', 1825, + '>', 1924, + 'I', 1932, + '_', 1825, + 'i', 1932, + 'n', 1839, + 'r', 1889, + 'B', 1657, + 'b', 1657, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1772: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1869); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1883); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1823, + '-', 1825, + '>', 1924, + 'I', 1932, + '_', 1825, + 'i', 1932, + 'r', 1889, + 'B', 1657, + 'b', 1657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1773: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1870); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1823); + if (lookahead == '-') ADVANCE(1825); + if (lookahead == '>') ADVANCE(1924); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'n') ADVANCE(1839); + if (lookahead == 'r') ADVANCE(1889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1774: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1875, - '>', 1919, - 'I', 1927, - 'i', 1927, - 'n', 1834, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1823); + if (lookahead == '-') ADVANCE(1825); + if (lookahead == '>') ADVANCE(1924); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'r') ADVANCE(1889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1775: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'r') ADVANCE(1884); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1846); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1776: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1874, + '>', 1742, + 'I', 1932, + 'i', 1932, + 'n', 1839, + 'r', 1888, + 'B', 1657, + 'b', 1657, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1777: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1874); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'n') ADVANCE(1839); + if (lookahead == 'r') ADVANCE(1888); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1778: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '>') ADVANCE(1920); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1875); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1779: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '>') ADVANCE(1920); - if (lookahead == 'u') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1880, + '>', 1924, + 'I', 1932, + 'i', 1932, + 'n', 1839, + 'r', 1889, + 'B', 1657, + 'b', 1657, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1780: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1877); - if (lookahead == '>') ADVANCE(1922); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1880); + if (lookahead == '>') ADVANCE(1924); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(1932); + if (lookahead == 'r') ADVANCE(1889); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1781: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1843); + if (lookahead == '+') ADVANCE(1880); if (lookahead == '>') ADVANCE(1924); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1839); + if (lookahead == 'r') ADVANCE(1889); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1782: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1792); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1930); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1880); + if (lookahead == '>') ADVANCE(1924); + if (lookahead == 'r') ADVANCE(1889); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1783: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1484); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1847); + if (lookahead == '>') ADVANCE(1925); + if (lookahead == 'r') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(1910); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1784: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1827); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1847); + if (lookahead == '>') ADVANCE(1925); + if (lookahead == 'u') ADVANCE(1910); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1785: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1882); + if (lookahead == '>') ADVANCE(1927); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1786: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1914); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1848); + if (lookahead == '>') ADVANCE(1929); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1787: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1915); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(1826); + if (lookahead == '_') ADVANCE(1797); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1788: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1916); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1489); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1789: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1917); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1832); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1790: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1849); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1791: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1919); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1792: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1792); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1920); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1793: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1921); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1794: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '>') ADVANCE(1500); - if (lookahead == '~') ADVANCE(1553); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1922); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1795: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '.') ADVANCE(1597); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1796: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1500); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '.') ADVANCE(1819); + if (lookahead == '_') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1797: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '.') ADVANCE(1826); + if (lookahead == '_') ADVANCE(1797); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1798: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '=') ADVANCE(1552); + if (lookahead == '~') ADVANCE(1558); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1799: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '>') ADVANCE(1505); + if (lookahead == '~') ADVANCE(1557); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1800: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '~') ADVANCE(1557); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1801: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1921); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1505); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1802: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1923); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1752); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1803: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1925); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1750); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1804: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1926); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1805: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - '+', 1820, - '-', 1820, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1748); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1806: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1926); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1807: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'i') ADVANCE(1829); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1928); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1808: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1930); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1809: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1931); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1810: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1829); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + 'I', 1932, + '_', 1825, + 'i', 1932, + 'n', 1839, + '+', 1825, + '-', 1825, + 'B', 1657, + 'b', 1657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1811: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 'o') ADVANCE(1832); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'i') ADVANCE(1932); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1825); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1812: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'i') ADVANCE(1834); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1825); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1813: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(1932); + if (lookahead == 'n') ADVANCE(1839); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1814: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(1932); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1815: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(1834); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1816: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(1867); + if (lookahead == 'o') ADVANCE(1837); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1817: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'o') ADVANCE(1797); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(1867); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1818: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'o') ADVANCE(1801); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1819: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1820: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1821: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'n') ADVANCE(1839); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1825); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1822: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'o') ADVANCE(1802); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1823: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'o') ADVANCE(1806); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1824: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1918); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1825); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1825: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1886); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1825); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1826: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1893); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1826); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1827: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1867); - if (lookahead == 'o') ADVANCE(1881); - if (lookahead == 's') ADVANCE(1850); - if (lookahead == 'x') ADVANCE(1876); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1897); + if (lookahead == 'r') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1828: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1890); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1897); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1829: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1923); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1830: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1891); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1831: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1527); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1898); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1832: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1571); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1872); + if (lookahead == 'o') ADVANCE(1886); + if (lookahead == 's') ADVANCE(1855); + if (lookahead == 'x') ADVANCE(1881); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1833: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1585); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1895); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1834: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1894); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1835: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1896); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'c') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1836: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1556); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1531); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1837: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1558); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1575); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1838: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1830); - if (lookahead == 't') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1589); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1839: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1830); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1899); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1840: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1798); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1901); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1841: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1887); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1560); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1842: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1802); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1562); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1843: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1888); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1835); + if (lookahead == 't') ADVANCE(1830); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1844: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1868); - if (lookahead == 'h') ADVANCE(1826); - if (lookahead == 'i') ADVANCE(1864); - if (lookahead == 'l') ADVANCE(1857); - if (lookahead == 's') ADVANCE(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1835); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1845: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'f') ADVANCE(1068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1803); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1846: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1543); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1892); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1847: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1539); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1807); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1848: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1545); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1893); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1849: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1541); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1873); + if (lookahead == 'h') ADVANCE(1831); + if (lookahead == 'i') ADVANCE(1869); + if (lookahead == 'l') ADVANCE(1862); + if (lookahead == 's') ADVANCE(1916); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1850: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1861); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'f') ADVANCE(1072); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1851: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1859); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1547); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1852: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1898); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1543); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1853: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1902); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1549); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1854: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1904); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1545); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1855: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1906); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1866); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1856: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1907); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1864); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1857: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1860); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1903); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1858: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1907); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1859: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1836); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1909); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1860: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1837); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1911); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1861: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'l') ADVANCE(1581); - if (lookahead == 'r') ADVANCE(1583); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1912); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1862: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1865); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1863: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1083); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'k') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1864: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1533); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'k') ADVANCE(1841); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1865: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1831); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'k') ADVANCE(1842); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1866: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1834); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'l') ADVANCE(1585); + if (lookahead == 'r') ADVANCE(1587); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1867: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1833); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1868: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1835); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1087); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1869: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1797); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1537); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1870: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1836); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1871: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1880); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1839); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1872: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1900); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1838); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1873: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1900); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1840); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1874: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1832); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1802); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1875: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1801); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1917); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1876: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1882); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1885); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1877: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1913); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1905); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1878: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1905); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1879: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1531); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1837); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1880: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1529); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1806); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1881: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1589); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1887); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1882: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1587); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1918); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1883: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1773); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1884: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1780); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1535); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1885: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1800); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1533); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1886: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1909); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1593); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1887: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1885); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1591); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1888: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1889); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1778); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1889: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1804); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1785); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1890: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1910); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1891: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1914); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1892: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1535); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1890); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1893: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1537); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1894); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1894: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1786); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1809); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1895: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1787); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1915); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1896: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1788); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1897: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1789); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1539); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1898: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1784); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1541); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1899: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1791); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1900: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1785); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1792); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1901: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1770); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1793); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1902: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1794); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1903: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1799); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1789); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1904: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1830); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1905: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1781); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1790); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1906: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1848); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1775); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1907: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1849); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1851); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1908: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1803); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1804); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1909: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1895); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1852); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1910: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1897); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1786); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1911: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1828); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1853); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1912: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1903); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1854); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1913: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1908); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1808); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1914: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1853); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1900); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1915: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1854); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1902); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1916: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1855); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1833); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1917: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1856); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'u') ADVANCE(1908); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1918: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'u') ADVANCE(1913); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1919: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1455); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1858); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1920: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1456); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1859); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1921: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1460); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1860); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1922: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1453); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1861); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1923: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1459); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'y') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1924: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1454); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1459); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1925: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1457); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1460); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1926: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1458); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1464); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1927: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1457); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1928: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1106); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1463); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1929: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1932); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1458); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1930: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1928); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1461); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1931: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1929); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1462); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1932: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1933); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1933: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1110); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1934: ACCEPT_TOKEN(sym__unquoted_pattern); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1937); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1935: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1936: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1503); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1937: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1503); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1938: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1946); - if (lookahead == '_') ADVANCE(1938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1108); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1939: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == 'i') ADVANCE(1958); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1940: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == 'i') ADVANCE(1950); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1597); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1941: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1958); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1508); + if (lookahead == '_') ADVANCE(1950); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1942: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1950); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1508); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1943: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1954); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1951); + if (lookahead == '_') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1944: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1963); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'i') ADVANCE(1963); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1953); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1945: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1963); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'i') ADVANCE(1955); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1953); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1946: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1963); + if (lookahead == 'i') ADVANCE(1963); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1947: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1963); + if (lookahead == 'i') ADVANCE(1955); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1948: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1948); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1963); + if (lookahead == 'i') ADVANCE(1959); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1949: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'a') ADVANCE(1957); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1949); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1950: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1950); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1951: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1951); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1952: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'e') ADVANCE(1951); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1953: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1954: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'a') ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1955: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1956: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'c') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1957: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1956); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1958: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'k') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1959: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1960: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'r') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1961: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1592); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1962: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1482); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'y') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1963: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1971); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1964: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1965: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1962); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1597); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1966: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1985); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1976); + if (lookahead == '_') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1967: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1977); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1969); + if (lookahead == '_') ADVANCE(1977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1968: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1985); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1969); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1969: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1977); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1487); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1970: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1981); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1596); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1971: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1971); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1990); + if (lookahead == '_') ADVANCE(1979); + if (lookahead == 'i') ADVANCE(1990); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1979); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1972: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1990); + if (lookahead == '_') ADVANCE(1979); + if (lookahead == 'i') ADVANCE(1982); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1979); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1973: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1990); + if (lookahead == 'i') ADVANCE(1990); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1974: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1990); + if (lookahead == 'i') ADVANCE(1982); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1975: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1975); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1990); + if (lookahead == 'i') ADVANCE(1986); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1976: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'a') ADVANCE(1984); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1977: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1978: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1979); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1979); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1979: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'e') ADVANCE(1978); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1979); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1980: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1981: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'a') ADVANCE(1989); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1982: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1983: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'c') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1984: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'e') ADVANCE(1983); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1985: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'k') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1986: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1987: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'r') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1988: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '[') ADVANCE(1705); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1989: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2025); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'r') ADVANCE(2031); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'y') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1990: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2018); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'u') ADVANCE(2039); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1991: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2026); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1992: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2019); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1992); END_STATE(); case 1993: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2028); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'r') ADVANCE(2032); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '$') ADVANCE(1621); + if (lookahead == '(') ADVANCE(1595); + if (lookahead == '[') ADVANCE(1709); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 1994: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2020); - if (lookahead == '>') ADVANCE(1738); - if (lookahead == 'u') ADVANCE(2041); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2030); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'r') ADVANCE(2036); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 1995: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2029); - if (lookahead == '>') ADVANCE(1732); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2023); + if (lookahead == '>') ADVANCE(1744); + if (lookahead == 'u') ADVANCE(2044); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 1996: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2021); - if (lookahead == '>') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2031); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 1997: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2065); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2024); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 1998: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2033); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'r') ADVANCE(2037); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 1999: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1505); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2025); + if (lookahead == '>') ADVANCE(1743); + if (lookahead == 'u') ADVANCE(2046); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2000: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2013); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2034); + if (lookahead == '>') ADVANCE(1737); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2001: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2055); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2063); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2026); + if (lookahead == '>') ADVANCE(1739); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2002: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2067); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '-') ADVANCE(2070); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2003: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2069); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(2019); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2004: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(1510); + if (lookahead == '_') ADVANCE(2019); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2005: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(2018); + if (lookahead == '_') ADVANCE(2005); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2006: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '2') ADVANCE(2060); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2068); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2007: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == ':') ADVANCE(2072); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2008: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1746); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == ':') ADVANCE(2074); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2009: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1744); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1752); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2010: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1740); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1750); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2011: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1742); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2012: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1748); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1751); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2014: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1749); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2023); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1745); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '_') ADVANCE(2017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2005); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '_') ADVANCE(2018); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2033); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '_') ADVANCE(2019); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2009); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'a') ADVANCE(2028); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2036); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(1096); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2037); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2010); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2022); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2038); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2004); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2014); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2045); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2041); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2038); - if (lookahead == 'u') ADVANCE(2024); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'l') ADVANCE(1099); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2008); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'l') ADVANCE(2042); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2046); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'l') ADVANCE(2027); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2044); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2009); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1991); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2050); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1995); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2043); + if (lookahead == 'u') ADVANCE(2029); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2055); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2034); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2013); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2007); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2051); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2011); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2049); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2035); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(1996); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2017); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2000); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2056); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2039); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1992); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2012); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2006); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2016); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1996); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2040); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2010); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 's') ADVANCE(2022); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2024); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2061); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2016); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(1997); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2040); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2011); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2042); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2001); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2015); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1100); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2029); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2055); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2053); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2021); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2045); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2048); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2047); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2049); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2055); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2054); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1104); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2058); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1113); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2053); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2054); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1997); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2059); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2003); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1102); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1564); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2002); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2064: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2058); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2008); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2065: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2060); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2066: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2059); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2061); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1684); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2068: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2002); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2063); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2070: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2065); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2071: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2074); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2064); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2072: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(2074); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == '\t' || - lookahead == ' ') SKIP(255); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2066); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2073: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2076); - if (lookahead == '_') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2007); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2074: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2074); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2073); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2075: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2075); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2076: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2076); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(2079); + if (lookahead == '_') ADVANCE(2080); + if (lookahead == '\t' || + lookahead == ' ') SKIP(198); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2078); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2082); END_STATE(); case 2077: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(2079); + if (lookahead == '_') ADVANCE(2080); + if (lookahead == '\t' || + lookahead == ' ') SKIP(260); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2078: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '[') ADVANCE(1705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(2081); + if (lookahead == '_') ADVANCE(2078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2079: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(2123); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2080: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2081: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2088); - if (lookahead == '_') ADVANCE(2082); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2108); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2081); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2082: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2088); - if (lookahead == '_') ADVANCE(2082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1506); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '$') ADVANCE(1621); + if (lookahead == '(') ADVANCE(1595); + if (lookahead == '[') ADVANCE(1709); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2133); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(2114); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2122); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '-') ADVANCE(2128); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2125); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(2094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2086: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2127); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(2093); + if (lookahead == '_') ADVANCE(2087); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(2093); if (lookahead == '_') ADVANCE(2087); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(1511); + if (lookahead == '_') ADVANCE(2094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '2') ADVANCE(2119); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2127); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(2094); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == ':') ADVANCE(2130); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == ':') ADVANCE(2132); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2092: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '_') ADVANCE(2092); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2093: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '_') ADVANCE(2093); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2097); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '_') ADVANCE(2094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2095: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2093); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'a') ADVANCE(2099); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2096: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2097: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(2092); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'e') ADVANCE(1096); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2098: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2091); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'l') ADVANCE(1099); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2095); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'l') ADVANCE(2102); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'l') ADVANCE(2098); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'r') ADVANCE(2103); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1101); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 's') ADVANCE(2097); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2110); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'u') ADVANCE(2096); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2111); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'u') ADVANCE(2100); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2110); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2110); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2102); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1111); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2103); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1105); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2101); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2115); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2116); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2112); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1113); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2113); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2107); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2108); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2106); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2109); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2117); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2079); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2118); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2086); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1102); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2116); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1108); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1677); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2084); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2091); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2119); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2121); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2117); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2120); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2085); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2126); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2124); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2129: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1509); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2132); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '_') ADVANCE(2133); - if (lookahead == '\t' || - lookahead == ' ') SKIP(191); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2122); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2130: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2132); - if (lookahead == '_') ADVANCE(2133); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2125); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2131: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2134); - if (lookahead == '_') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2090); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2132: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2132); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2131); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2133: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2134: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2134); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1514); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(2137); + if (lookahead == ']') ADVANCE(1470); + if (lookahead == '_') ADVANCE(2138); + if (lookahead == '\t' || + lookahead == ' ') SKIP(196); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2136); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2140); END_STATE(); case 2135: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(2137); + if (lookahead == '_') ADVANCE(2138); + if (lookahead == '\t' || + lookahead == ' ') SKIP(198); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2140); END_STATE(); case 2136: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(2171); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(2139); + if (lookahead == '_') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2140); END_STATE(); case 2137: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(2137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2140); END_STATE(); case 2138: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2142); - if (lookahead == '_') ADVANCE(2139); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(2138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2140); END_STATE(); case 2139: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2142); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(2139); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2140); END_STATE(); case 2140: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2140); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '-') ADVANCE(2176); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2142); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(2148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '.') ADVANCE(2147); + if (lookahead == '_') ADVANCE(2144); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(2148); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '.') ADVANCE(2147); + if (lookahead == '_') ADVANCE(2144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == ':') ADVANCE(557); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '_') ADVANCE(2146); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '_') ADVANCE(2147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2151); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '_') ADVANCE(2148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2147); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'a') ADVANCE(2153); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2150: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(2152); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(2146); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'e') ADVANCE(1096); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2145); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'l') ADVANCE(1099); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2149); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'l') ADVANCE(2156); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2154: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'l') ADVANCE(2152); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2155: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1108); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'r') ADVANCE(2157); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2156: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1102); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 's') ADVANCE(2151); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'u') ADVANCE(2150); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2165); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'u') ADVANCE(2154); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2164); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2164); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2156); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1112); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2157); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2155); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2169); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2158); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2170); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2166); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1113); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2167); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2161); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2162); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2160); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2136); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2163); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2140); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2171); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2168); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2172); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2173); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1102); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2169); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1108); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2141); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2145); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2175: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2173); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); + END_STATE(); + case 2176: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2178); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); + END_STATE(); + case 2177: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2174); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); + END_STATE(); + case 2178: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); + END_STATE(); + case 2179: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); + END_STATE(); + case 2180: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2178); - if (lookahead == '_') ADVANCE(2179); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(2183); + if (lookahead == '_') ADVANCE(2184); if (lookahead == '\t' || - lookahead == ' ') SKIP(193); + lookahead == ' ') SKIP(198); if (lookahead == '+' || - lookahead == '-') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2181); + lookahead == '-') ADVANCE(2182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2186); END_STATE(); - case 2176: + case 2181: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(2178); - if (lookahead == '_') ADVANCE(2179); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(2183); + if (lookahead == '_') ADVANCE(2184); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(260); if (lookahead == '+' || - lookahead == '-') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + lookahead == '-') ADVANCE(2182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2186); END_STATE(); - case 2177: + case 2182: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2180); - if (lookahead == '_') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '.') ADVANCE(2185); + if (lookahead == '_') ADVANCE(2182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2186); END_STATE(); - case 2178: + case 2183: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2178); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '_') ADVANCE(2183); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2186); END_STATE(); - case 2179: + case 2184: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2179); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '_') ADVANCE(2184); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2186); END_STATE(); - case 2180: + case 2185: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '_') ADVANCE(2185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2186); END_STATE(); - case 2181: + case 2186: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2186); END_STATE(); - case 2182: + case 2187: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(2195); + if (lookahead == '#') ADVANCE(2200); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2188); END_STATE(); - case 2183: + case 2188: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32374,20 +32567,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2188); END_STATE(); - case 2184: + case 2189: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(2194); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if (lookahead == '#') ADVANCE(2199); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2190); END_STATE(); - case 2185: + case 2190: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2190); END_STATE(); - case 2186: + case 2191: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(2193); + if (lookahead == '#') ADVANCE(2198); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -32396,9 +32589,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2192); END_STATE(); - case 2187: + case 2192: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32408,30 +32601,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2192); END_STATE(); - case 2188: + case 2193: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 2189: + case 2194: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead != 0) ADVANCE(665); + if (lookahead == '\n') ADVANCE(667); + if (lookahead == '\r') ADVANCE(669); + if (lookahead != 0) ADVANCE(669); END_STATE(); - case 2190: + case 2195: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(662); + if (lookahead == '!') ADVANCE(666); END_STATE(); - case 2191: + case 2196: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); - case 2192: + case 2197: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1719); END_STATE(); - case 2193: + case 2198: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32441,13 +32634,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2192); END_STATE(); - case 2194: + case 2199: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2190); END_STATE(); - case 2195: + case 2200: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32455,26 +32648,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2188); END_STATE(); - case 2196: + case 2201: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2203); END_STATE(); - case 2197: + case 2202: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(2196); + if (lookahead == '#') ADVANCE(2201); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2197); + lookahead == ' ') ADVANCE(2202); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2203); END_STATE(); - case 2198: + case 2203: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2203); END_STATE(); default: return false; @@ -33022,5209 +33215,5267 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 629, .external_lex_state = 2}, - [2] = {.lex_state = 31, .external_lex_state = 2}, - [3] = {.lex_state = 31, .external_lex_state = 2}, - [4] = {.lex_state = 31, .external_lex_state = 2}, - [5] = {.lex_state = 31, .external_lex_state = 2}, - [6] = {.lex_state = 31, .external_lex_state = 2}, - [7] = {.lex_state = 31, .external_lex_state = 2}, - [8] = {.lex_state = 31, .external_lex_state = 2}, - [9] = {.lex_state = 31, .external_lex_state = 2}, - [10] = {.lex_state = 31, .external_lex_state = 2}, - [11] = {.lex_state = 31, .external_lex_state = 2}, - [12] = {.lex_state = 31, .external_lex_state = 2}, - [13] = {.lex_state = 31, .external_lex_state = 2}, - [14] = {.lex_state = 31, .external_lex_state = 2}, - [15] = {.lex_state = 31, .external_lex_state = 2}, - [16] = {.lex_state = 622, .external_lex_state = 2}, - [17] = {.lex_state = 622, .external_lex_state = 2}, - [18] = {.lex_state = 622, .external_lex_state = 2}, - [19] = {.lex_state = 622, .external_lex_state = 2}, - [20] = {.lex_state = 622, .external_lex_state = 2}, - [21] = {.lex_state = 622, .external_lex_state = 2}, - [22] = {.lex_state = 622, .external_lex_state = 2}, - [23] = {.lex_state = 622, .external_lex_state = 2}, - [24] = {.lex_state = 622, .external_lex_state = 2}, - [25] = {.lex_state = 622, .external_lex_state = 2}, - [26] = {.lex_state = 622, .external_lex_state = 2}, - [27] = {.lex_state = 622, .external_lex_state = 2}, - [28] = {.lex_state = 622, .external_lex_state = 2}, - [29] = {.lex_state = 622, .external_lex_state = 2}, - [30] = {.lex_state = 622, .external_lex_state = 2}, - [31] = {.lex_state = 622, .external_lex_state = 2}, - [32] = {.lex_state = 622, .external_lex_state = 2}, - [33] = {.lex_state = 622, .external_lex_state = 2}, - [34] = {.lex_state = 622, .external_lex_state = 2}, - [35] = {.lex_state = 29, .external_lex_state = 2}, - [36] = {.lex_state = 29, .external_lex_state = 2}, - [37] = {.lex_state = 622, .external_lex_state = 2}, - [38] = {.lex_state = 29, .external_lex_state = 2}, - [39] = {.lex_state = 29, .external_lex_state = 2}, - [40] = {.lex_state = 622, .external_lex_state = 2}, - [41] = {.lex_state = 29, .external_lex_state = 2}, - [42] = {.lex_state = 622, .external_lex_state = 2}, - [43] = {.lex_state = 29, .external_lex_state = 2}, - [44] = {.lex_state = 622, .external_lex_state = 2}, - [45] = {.lex_state = 622, .external_lex_state = 2}, - [46] = {.lex_state = 29, .external_lex_state = 2}, - [47] = {.lex_state = 29, .external_lex_state = 2}, - [48] = {.lex_state = 29, .external_lex_state = 2}, - [49] = {.lex_state = 622, .external_lex_state = 2}, - [50] = {.lex_state = 29, .external_lex_state = 2}, - [51] = {.lex_state = 29, .external_lex_state = 2}, - [52] = {.lex_state = 29, .external_lex_state = 2}, - [53] = {.lex_state = 622, .external_lex_state = 2}, - [54] = {.lex_state = 29, .external_lex_state = 2}, - [55] = {.lex_state = 622, .external_lex_state = 2}, - [56] = {.lex_state = 29, .external_lex_state = 2}, - [57] = {.lex_state = 622, .external_lex_state = 2}, - [58] = {.lex_state = 29, .external_lex_state = 2}, - [59] = {.lex_state = 622, .external_lex_state = 2}, - [60] = {.lex_state = 29, .external_lex_state = 2}, - [61] = {.lex_state = 622, .external_lex_state = 2}, - [62] = {.lex_state = 29, .external_lex_state = 2}, - [63] = {.lex_state = 622, .external_lex_state = 2}, - [64] = {.lex_state = 622, .external_lex_state = 2}, - [65] = {.lex_state = 29, .external_lex_state = 2}, - [66] = {.lex_state = 622, .external_lex_state = 2}, - [67] = {.lex_state = 29, .external_lex_state = 2}, - [68] = {.lex_state = 29, .external_lex_state = 2}, - [69] = {.lex_state = 622, .external_lex_state = 2}, - [70] = {.lex_state = 29, .external_lex_state = 2}, - [71] = {.lex_state = 622, .external_lex_state = 2}, - [72] = {.lex_state = 29, .external_lex_state = 2}, - [73] = {.lex_state = 622, .external_lex_state = 2}, - [74] = {.lex_state = 29, .external_lex_state = 2}, - [75] = {.lex_state = 622, .external_lex_state = 2}, - [76] = {.lex_state = 622, .external_lex_state = 2}, - [77] = {.lex_state = 29, .external_lex_state = 2}, - [78] = {.lex_state = 622, .external_lex_state = 2}, - [79] = {.lex_state = 622, .external_lex_state = 2}, - [80] = {.lex_state = 622, .external_lex_state = 2}, - [81] = {.lex_state = 622, .external_lex_state = 2}, - [82] = {.lex_state = 622, .external_lex_state = 2}, - [83] = {.lex_state = 622, .external_lex_state = 2}, - [84] = {.lex_state = 622, .external_lex_state = 2}, - [85] = {.lex_state = 622, .external_lex_state = 2}, - [86] = {.lex_state = 622, .external_lex_state = 2}, - [87] = {.lex_state = 622, .external_lex_state = 2}, - [88] = {.lex_state = 622, .external_lex_state = 2}, - [89] = {.lex_state = 622, .external_lex_state = 2}, - [90] = {.lex_state = 622, .external_lex_state = 2}, - [91] = {.lex_state = 622, .external_lex_state = 2}, - [92] = {.lex_state = 1156}, - [93] = {.lex_state = 1161}, - [94] = {.lex_state = 1324}, - [95] = {.lex_state = 1146}, - [96] = {.lex_state = 1148}, - [97] = {.lex_state = 1326}, - [98] = {.lex_state = 1162}, - [99] = {.lex_state = 1162}, - [100] = {.lex_state = 1157}, - [101] = {.lex_state = 1164}, - [102] = {.lex_state = 1166}, - [103] = {.lex_state = 624, .external_lex_state = 2}, - [104] = {.lex_state = 1326}, - [105] = {.lex_state = 1163}, - [106] = {.lex_state = 1163}, - [107] = {.lex_state = 1150}, - [108] = {.lex_state = 1163}, - [109] = {.lex_state = 42, .external_lex_state = 2}, - [110] = {.lex_state = 1324}, - [111] = {.lex_state = 1328}, - [112] = {.lex_state = 1166}, - [113] = {.lex_state = 1150}, - [114] = {.lex_state = 1328}, - [115] = {.lex_state = 1163}, - [116] = {.lex_state = 1152}, - [117] = {.lex_state = 1152}, - [118] = {.lex_state = 1152}, - [119] = {.lex_state = 1328}, - [120] = {.lex_state = 624, .external_lex_state = 2}, - [121] = {.lex_state = 1168}, - [122] = {.lex_state = 1328}, - [123] = {.lex_state = 1168}, - [124] = {.lex_state = 1330}, - [125] = {.lex_state = 1168}, - [126] = {.lex_state = 1168}, - [127] = {.lex_state = 1152}, - [128] = {.lex_state = 624, .external_lex_state = 2}, - [129] = {.lex_state = 1330}, - [130] = {.lex_state = 1159}, - [131] = {.lex_state = 1170}, - [132] = {.lex_state = 1330}, - [133] = {.lex_state = 1330}, - [134] = {.lex_state = 1330}, - [135] = {.lex_state = 1172}, - [136] = {.lex_state = 1330}, - [137] = {.lex_state = 1330}, - [138] = {.lex_state = 1330}, - [139] = {.lex_state = 1172}, - [140] = {.lex_state = 1174}, - [141] = {.lex_state = 1174}, - [142] = {.lex_state = 1174}, - [143] = {.lex_state = 1174}, - [144] = {.lex_state = 1332}, - [145] = {.lex_state = 1176}, - [146] = {.lex_state = 1154}, - [147] = {.lex_state = 1154}, - [148] = {.lex_state = 1176}, - [149] = {.lex_state = 1176}, - [150] = {.lex_state = 1332}, - [151] = {.lex_state = 1176}, - [152] = {.lex_state = 622, .external_lex_state = 2}, - [153] = {.lex_state = 622, .external_lex_state = 2}, - [154] = {.lex_state = 622, .external_lex_state = 2}, - [155] = {.lex_state = 622, .external_lex_state = 2}, - [156] = {.lex_state = 622, .external_lex_state = 2}, - [157] = {.lex_state = 622, .external_lex_state = 2}, - [158] = {.lex_state = 622, .external_lex_state = 2}, - [159] = {.lex_state = 622, .external_lex_state = 2}, - [160] = {.lex_state = 622, .external_lex_state = 2}, - [161] = {.lex_state = 622, .external_lex_state = 2}, - [162] = {.lex_state = 622, .external_lex_state = 2}, - [163] = {.lex_state = 622, .external_lex_state = 2}, - [164] = {.lex_state = 622, .external_lex_state = 2}, - [165] = {.lex_state = 622, .external_lex_state = 2}, - [166] = {.lex_state = 622, .external_lex_state = 2}, - [167] = {.lex_state = 622, .external_lex_state = 2}, - [168] = {.lex_state = 622, .external_lex_state = 2}, - [169] = {.lex_state = 622, .external_lex_state = 2}, - [170] = {.lex_state = 622, .external_lex_state = 2}, - [171] = {.lex_state = 622, .external_lex_state = 2}, - [172] = {.lex_state = 1332}, - [173] = {.lex_state = 1332}, - [174] = {.lex_state = 622, .external_lex_state = 2}, - [175] = {.lex_state = 622, .external_lex_state = 2}, - [176] = {.lex_state = 622, .external_lex_state = 2}, - [177] = {.lex_state = 622, .external_lex_state = 2}, - [178] = {.lex_state = 622, .external_lex_state = 2}, - [179] = {.lex_state = 622, .external_lex_state = 2}, - [180] = {.lex_state = 622, .external_lex_state = 2}, - [181] = {.lex_state = 622, .external_lex_state = 2}, - [182] = {.lex_state = 622, .external_lex_state = 2}, - [183] = {.lex_state = 622, .external_lex_state = 2}, - [184] = {.lex_state = 622, .external_lex_state = 2}, - [185] = {.lex_state = 622, .external_lex_state = 2}, - [186] = {.lex_state = 622, .external_lex_state = 2}, - [187] = {.lex_state = 622, .external_lex_state = 2}, - [188] = {.lex_state = 622, .external_lex_state = 2}, - [189] = {.lex_state = 1178}, - [190] = {.lex_state = 1178}, - [191] = {.lex_state = 622, .external_lex_state = 2}, - [192] = {.lex_state = 622, .external_lex_state = 2}, - [193] = {.lex_state = 622, .external_lex_state = 2}, - [194] = {.lex_state = 43, .external_lex_state = 2}, - [195] = {.lex_state = 34, .external_lex_state = 2}, - [196] = {.lex_state = 34, .external_lex_state = 2}, - [197] = {.lex_state = 34, .external_lex_state = 2}, - [198] = {.lex_state = 34, .external_lex_state = 2}, - [199] = {.lex_state = 34, .external_lex_state = 2}, - [200] = {.lex_state = 34, .external_lex_state = 2}, - [201] = {.lex_state = 34, .external_lex_state = 2}, - [202] = {.lex_state = 34, .external_lex_state = 2}, - [203] = {.lex_state = 34, .external_lex_state = 2}, - [204] = {.lex_state = 34, .external_lex_state = 2}, - [205] = {.lex_state = 34, .external_lex_state = 2}, - [206] = {.lex_state = 34, .external_lex_state = 2}, - [207] = {.lex_state = 34, .external_lex_state = 2}, - [208] = {.lex_state = 34, .external_lex_state = 2}, - [209] = {.lex_state = 34, .external_lex_state = 2}, - [210] = {.lex_state = 34, .external_lex_state = 2}, - [211] = {.lex_state = 34, .external_lex_state = 2}, - [212] = {.lex_state = 34, .external_lex_state = 2}, - [213] = {.lex_state = 34, .external_lex_state = 2}, - [214] = {.lex_state = 34, .external_lex_state = 2}, - [215] = {.lex_state = 34, .external_lex_state = 2}, - [216] = {.lex_state = 34, .external_lex_state = 2}, - [217] = {.lex_state = 34, .external_lex_state = 2}, - [218] = {.lex_state = 34, .external_lex_state = 2}, - [219] = {.lex_state = 34, .external_lex_state = 2}, - [220] = {.lex_state = 34, .external_lex_state = 2}, - [221] = {.lex_state = 34, .external_lex_state = 2}, - [222] = {.lex_state = 34, .external_lex_state = 2}, - [223] = {.lex_state = 34, .external_lex_state = 2}, - [224] = {.lex_state = 34, .external_lex_state = 2}, - [225] = {.lex_state = 34, .external_lex_state = 2}, - [226] = {.lex_state = 34, .external_lex_state = 2}, - [227] = {.lex_state = 34, .external_lex_state = 2}, - [228] = {.lex_state = 34, .external_lex_state = 2}, - [229] = {.lex_state = 34, .external_lex_state = 2}, - [230] = {.lex_state = 34, .external_lex_state = 2}, - [231] = {.lex_state = 34, .external_lex_state = 2}, - [232] = {.lex_state = 34, .external_lex_state = 2}, - [233] = {.lex_state = 34, .external_lex_state = 2}, - [234] = {.lex_state = 34, .external_lex_state = 2}, - [235] = {.lex_state = 34, .external_lex_state = 2}, - [236] = {.lex_state = 34, .external_lex_state = 2}, - [237] = {.lex_state = 34, .external_lex_state = 2}, - [238] = {.lex_state = 34, .external_lex_state = 2}, - [239] = {.lex_state = 34, .external_lex_state = 2}, - [240] = {.lex_state = 34, .external_lex_state = 2}, - [241] = {.lex_state = 34, .external_lex_state = 2}, - [242] = {.lex_state = 34, .external_lex_state = 2}, - [243] = {.lex_state = 34, .external_lex_state = 2}, - [244] = {.lex_state = 34, .external_lex_state = 2}, - [245] = {.lex_state = 34, .external_lex_state = 2}, - [246] = {.lex_state = 34, .external_lex_state = 2}, - [247] = {.lex_state = 34, .external_lex_state = 2}, - [248] = {.lex_state = 34, .external_lex_state = 2}, - [249] = {.lex_state = 34, .external_lex_state = 2}, - [250] = {.lex_state = 34, .external_lex_state = 2}, - [251] = {.lex_state = 34, .external_lex_state = 2}, - [252] = {.lex_state = 34, .external_lex_state = 2}, - [253] = {.lex_state = 34, .external_lex_state = 2}, - [254] = {.lex_state = 34, .external_lex_state = 2}, - [255] = {.lex_state = 34, .external_lex_state = 2}, - [256] = {.lex_state = 34, .external_lex_state = 2}, - [257] = {.lex_state = 34, .external_lex_state = 2}, - [258] = {.lex_state = 34, .external_lex_state = 2}, - [259] = {.lex_state = 34, .external_lex_state = 2}, - [260] = {.lex_state = 34, .external_lex_state = 2}, - [261] = {.lex_state = 34, .external_lex_state = 2}, - [262] = {.lex_state = 34, .external_lex_state = 2}, - [263] = {.lex_state = 34, .external_lex_state = 2}, - [264] = {.lex_state = 34, .external_lex_state = 2}, - [265] = {.lex_state = 34, .external_lex_state = 2}, - [266] = {.lex_state = 34, .external_lex_state = 2}, - [267] = {.lex_state = 1158}, - [268] = {.lex_state = 1327}, - [269] = {.lex_state = 1147}, - [270] = {.lex_state = 1149}, - [271] = {.lex_state = 1165}, - [272] = {.lex_state = 1325}, - [273] = {.lex_state = 1167}, - [274] = {.lex_state = 34, .external_lex_state = 2}, - [275] = {.lex_state = 34, .external_lex_state = 2}, - [276] = {.lex_state = 34, .external_lex_state = 2}, - [277] = {.lex_state = 1325}, - [278] = {.lex_state = 1327}, - [279] = {.lex_state = 1167}, - [280] = {.lex_state = 34, .external_lex_state = 2}, - [281] = {.lex_state = 34, .external_lex_state = 2}, - [282] = {.lex_state = 1329}, - [283] = {.lex_state = 34, .external_lex_state = 2}, - [284] = {.lex_state = 1329}, - [285] = {.lex_state = 34, .external_lex_state = 2}, - [286] = {.lex_state = 1151}, - [287] = {.lex_state = 34, .external_lex_state = 2}, - [288] = {.lex_state = 34, .external_lex_state = 2}, - [289] = {.lex_state = 34, .external_lex_state = 2}, - [290] = {.lex_state = 34, .external_lex_state = 2}, - [291] = {.lex_state = 34, .external_lex_state = 2}, - [292] = {.lex_state = 34, .external_lex_state = 2}, - [293] = {.lex_state = 1151}, - [294] = {.lex_state = 1153}, - [295] = {.lex_state = 1329}, - [296] = {.lex_state = 1171}, - [297] = {.lex_state = 1169}, - [298] = {.lex_state = 1331}, - [299] = {.lex_state = 1331}, - [300] = {.lex_state = 1331}, - [301] = {.lex_state = 1153}, - [302] = {.lex_state = 1169}, - [303] = {.lex_state = 1153}, - [304] = {.lex_state = 1153}, - [305] = {.lex_state = 1169}, - [306] = {.lex_state = 1331}, - [307] = {.lex_state = 1169}, - [308] = {.lex_state = 1160}, - [309] = {.lex_state = 1329}, - [310] = {.lex_state = 1173}, - [311] = {.lex_state = 1331}, - [312] = {.lex_state = 1331}, - [313] = {.lex_state = 1331}, - [314] = {.lex_state = 1331}, - [315] = {.lex_state = 1173}, - [316] = {.lex_state = 1175}, - [317] = {.lex_state = 1175}, - [318] = {.lex_state = 1175}, - [319] = {.lex_state = 1175}, - [320] = {.lex_state = 44, .external_lex_state = 2}, - [321] = {.lex_state = 44, .external_lex_state = 2}, - [322] = {.lex_state = 44, .external_lex_state = 2}, - [323] = {.lex_state = 1333}, - [324] = {.lex_state = 1155}, - [325] = {.lex_state = 1177}, - [326] = {.lex_state = 1177}, - [327] = {.lex_state = 1155}, - [328] = {.lex_state = 1333}, - [329] = {.lex_state = 1333}, - [330] = {.lex_state = 1333}, - [331] = {.lex_state = 1179}, - [332] = {.lex_state = 1179}, - [333] = {.lex_state = 124}, - [334] = {.lex_state = 124}, - [335] = {.lex_state = 577}, - [336] = {.lex_state = 124}, - [337] = {.lex_state = 577}, - [338] = {.lex_state = 577}, - [339] = {.lex_state = 124}, - [340] = {.lex_state = 124}, - [341] = {.lex_state = 124}, - [342] = {.lex_state = 124}, - [343] = {.lex_state = 577}, - [344] = {.lex_state = 577}, - [345] = {.lex_state = 44, .external_lex_state = 2}, - [346] = {.lex_state = 577}, - [347] = {.lex_state = 44, .external_lex_state = 2}, - [348] = {.lex_state = 44, .external_lex_state = 2}, - [349] = {.lex_state = 577}, - [350] = {.lex_state = 44, .external_lex_state = 2}, - [351] = {.lex_state = 124}, - [352] = {.lex_state = 124}, - [353] = {.lex_state = 577}, - [354] = {.lex_state = 44, .external_lex_state = 2}, - [355] = {.lex_state = 577}, - [356] = {.lex_state = 44, .external_lex_state = 2}, - [357] = {.lex_state = 124}, - [358] = {.lex_state = 44, .external_lex_state = 2}, - [359] = {.lex_state = 44, .external_lex_state = 2}, - [360] = {.lex_state = 124}, - [361] = {.lex_state = 577}, - [362] = {.lex_state = 44, .external_lex_state = 2}, - [363] = {.lex_state = 124}, - [364] = {.lex_state = 124}, - [365] = {.lex_state = 124}, - [366] = {.lex_state = 44, .external_lex_state = 2}, - [367] = {.lex_state = 44, .external_lex_state = 2}, - [368] = {.lex_state = 124}, - [369] = {.lex_state = 577}, - [370] = {.lex_state = 577}, - [371] = {.lex_state = 44, .external_lex_state = 2}, - [372] = {.lex_state = 577}, - [373] = {.lex_state = 124}, - [374] = {.lex_state = 577}, - [375] = {.lex_state = 577}, - [376] = {.lex_state = 44, .external_lex_state = 2}, - [377] = {.lex_state = 581}, - [378] = {.lex_state = 581}, - [379] = {.lex_state = 44, .external_lex_state = 2}, - [380] = {.lex_state = 44, .external_lex_state = 2}, - [381] = {.lex_state = 577}, - [382] = {.lex_state = 577}, - [383] = {.lex_state = 44, .external_lex_state = 2}, - [384] = {.lex_state = 44, .external_lex_state = 2}, - [385] = {.lex_state = 577}, - [386] = {.lex_state = 44, .external_lex_state = 2}, - [387] = {.lex_state = 44, .external_lex_state = 2}, - [388] = {.lex_state = 577}, - [389] = {.lex_state = 581}, - [390] = {.lex_state = 577}, - [391] = {.lex_state = 577}, - [392] = {.lex_state = 577}, - [393] = {.lex_state = 577}, - [394] = {.lex_state = 577}, - [395] = {.lex_state = 577}, - [396] = {.lex_state = 44, .external_lex_state = 2}, - [397] = {.lex_state = 124}, + [1] = {.lex_state = 633, .external_lex_state = 2}, + [2] = {.lex_state = 626, .external_lex_state = 2}, + [3] = {.lex_state = 626, .external_lex_state = 2}, + [4] = {.lex_state = 626, .external_lex_state = 2}, + [5] = {.lex_state = 626, .external_lex_state = 2}, + [6] = {.lex_state = 626, .external_lex_state = 2}, + [7] = {.lex_state = 626, .external_lex_state = 2}, + [8] = {.lex_state = 626, .external_lex_state = 2}, + [9] = {.lex_state = 626, .external_lex_state = 2}, + [10] = {.lex_state = 626, .external_lex_state = 2}, + [11] = {.lex_state = 626, .external_lex_state = 2}, + [12] = {.lex_state = 626, .external_lex_state = 2}, + [13] = {.lex_state = 626, .external_lex_state = 2}, + [14] = {.lex_state = 626, .external_lex_state = 2}, + [15] = {.lex_state = 626, .external_lex_state = 2}, + [16] = {.lex_state = 624, .external_lex_state = 2}, + [17] = {.lex_state = 624, .external_lex_state = 2}, + [18] = {.lex_state = 624, .external_lex_state = 2}, + [19] = {.lex_state = 624, .external_lex_state = 2}, + [20] = {.lex_state = 624, .external_lex_state = 2}, + [21] = {.lex_state = 624, .external_lex_state = 2}, + [22] = {.lex_state = 624, .external_lex_state = 2}, + [23] = {.lex_state = 624, .external_lex_state = 2}, + [24] = {.lex_state = 624, .external_lex_state = 2}, + [25] = {.lex_state = 624, .external_lex_state = 2}, + [26] = {.lex_state = 624, .external_lex_state = 2}, + [27] = {.lex_state = 624, .external_lex_state = 2}, + [28] = {.lex_state = 624, .external_lex_state = 2}, + [29] = {.lex_state = 624, .external_lex_state = 2}, + [30] = {.lex_state = 624, .external_lex_state = 2}, + [31] = {.lex_state = 624, .external_lex_state = 2}, + [32] = {.lex_state = 624, .external_lex_state = 2}, + [33] = {.lex_state = 624, .external_lex_state = 2}, + [34] = {.lex_state = 624, .external_lex_state = 2}, + [35] = {.lex_state = 40, .external_lex_state = 2}, + [36] = {.lex_state = 40, .external_lex_state = 2}, + [37] = {.lex_state = 624, .external_lex_state = 2}, + [38] = {.lex_state = 40, .external_lex_state = 2}, + [39] = {.lex_state = 624, .external_lex_state = 2}, + [40] = {.lex_state = 40, .external_lex_state = 2}, + [41] = {.lex_state = 40, .external_lex_state = 2}, + [42] = {.lex_state = 624, .external_lex_state = 2}, + [43] = {.lex_state = 40, .external_lex_state = 2}, + [44] = {.lex_state = 624, .external_lex_state = 2}, + [45] = {.lex_state = 624, .external_lex_state = 2}, + [46] = {.lex_state = 40, .external_lex_state = 2}, + [47] = {.lex_state = 40, .external_lex_state = 2}, + [48] = {.lex_state = 40, .external_lex_state = 2}, + [49] = {.lex_state = 624, .external_lex_state = 2}, + [50] = {.lex_state = 40, .external_lex_state = 2}, + [51] = {.lex_state = 624, .external_lex_state = 2}, + [52] = {.lex_state = 624, .external_lex_state = 2}, + [53] = {.lex_state = 40, .external_lex_state = 2}, + [54] = {.lex_state = 624, .external_lex_state = 2}, + [55] = {.lex_state = 624, .external_lex_state = 2}, + [56] = {.lex_state = 624, .external_lex_state = 2}, + [57] = {.lex_state = 40, .external_lex_state = 2}, + [58] = {.lex_state = 40, .external_lex_state = 2}, + [59] = {.lex_state = 624, .external_lex_state = 2}, + [60] = {.lex_state = 40, .external_lex_state = 2}, + [61] = {.lex_state = 624, .external_lex_state = 2}, + [62] = {.lex_state = 40, .external_lex_state = 2}, + [63] = {.lex_state = 624, .external_lex_state = 2}, + [64] = {.lex_state = 40, .external_lex_state = 2}, + [65] = {.lex_state = 624, .external_lex_state = 2}, + [66] = {.lex_state = 624, .external_lex_state = 2}, + [67] = {.lex_state = 40, .external_lex_state = 2}, + [68] = {.lex_state = 624, .external_lex_state = 2}, + [69] = {.lex_state = 40, .external_lex_state = 2}, + [70] = {.lex_state = 40, .external_lex_state = 2}, + [71] = {.lex_state = 40, .external_lex_state = 2}, + [72] = {.lex_state = 40, .external_lex_state = 2}, + [73] = {.lex_state = 40, .external_lex_state = 2}, + [74] = {.lex_state = 40, .external_lex_state = 2}, + [75] = {.lex_state = 40, .external_lex_state = 2}, + [76] = {.lex_state = 624, .external_lex_state = 2}, + [77] = {.lex_state = 624, .external_lex_state = 2}, + [78] = {.lex_state = 624, .external_lex_state = 2}, + [79] = {.lex_state = 624, .external_lex_state = 2}, + [80] = {.lex_state = 624, .external_lex_state = 2}, + [81] = {.lex_state = 624, .external_lex_state = 2}, + [82] = {.lex_state = 624, .external_lex_state = 2}, + [83] = {.lex_state = 624, .external_lex_state = 2}, + [84] = {.lex_state = 624, .external_lex_state = 2}, + [85] = {.lex_state = 624, .external_lex_state = 2}, + [86] = {.lex_state = 624, .external_lex_state = 2}, + [87] = {.lex_state = 624, .external_lex_state = 2}, + [88] = {.lex_state = 624, .external_lex_state = 2}, + [89] = {.lex_state = 624, .external_lex_state = 2}, + [90] = {.lex_state = 624, .external_lex_state = 2}, + [91] = {.lex_state = 624, .external_lex_state = 2}, + [92] = {.lex_state = 1160}, + [93] = {.lex_state = 1165}, + [94] = {.lex_state = 1166}, + [95] = {.lex_state = 1166}, + [96] = {.lex_state = 1161}, + [97] = {.lex_state = 1330}, + [98] = {.lex_state = 1168}, + [99] = {.lex_state = 1328}, + [100] = {.lex_state = 1150}, + [101] = {.lex_state = 1152}, + [102] = {.lex_state = 1332}, + [103] = {.lex_state = 1154}, + [104] = {.lex_state = 1154}, + [105] = {.lex_state = 1167}, + [106] = {.lex_state = 1167}, + [107] = {.lex_state = 1167}, + [108] = {.lex_state = 1170}, + [109] = {.lex_state = 1170}, + [110] = {.lex_state = 1328}, + [111] = {.lex_state = 1330}, + [112] = {.lex_state = 51, .external_lex_state = 2}, + [113] = {.lex_state = 1332}, + [114] = {.lex_state = 1167}, + [115] = {.lex_state = 628, .external_lex_state = 2}, + [116] = {.lex_state = 1334}, + [117] = {.lex_state = 628, .external_lex_state = 2}, + [118] = {.lex_state = 1172}, + [119] = {.lex_state = 1172}, + [120] = {.lex_state = 1163}, + [121] = {.lex_state = 1332}, + [122] = {.lex_state = 1174}, + [123] = {.lex_state = 1334}, + [124] = {.lex_state = 1156}, + [125] = {.lex_state = 1332}, + [126] = {.lex_state = 1334}, + [127] = {.lex_state = 1156}, + [128] = {.lex_state = 1156}, + [129] = {.lex_state = 1334}, + [130] = {.lex_state = 1156}, + [131] = {.lex_state = 1172}, + [132] = {.lex_state = 628, .external_lex_state = 2}, + [133] = {.lex_state = 1172}, + [134] = {.lex_state = 1176}, + [135] = {.lex_state = 1176}, + [136] = {.lex_state = 1334}, + [137] = {.lex_state = 1334}, + [138] = {.lex_state = 1334}, + [139] = {.lex_state = 1334}, + [140] = {.lex_state = 1178}, + [141] = {.lex_state = 1178}, + [142] = {.lex_state = 1178}, + [143] = {.lex_state = 1178}, + [144] = {.lex_state = 1158}, + [145] = {.lex_state = 1158}, + [146] = {.lex_state = 1336}, + [147] = {.lex_state = 1180}, + [148] = {.lex_state = 1180}, + [149] = {.lex_state = 1180}, + [150] = {.lex_state = 1180}, + [151] = {.lex_state = 1336}, + [152] = {.lex_state = 624, .external_lex_state = 2}, + [153] = {.lex_state = 624, .external_lex_state = 2}, + [154] = {.lex_state = 624, .external_lex_state = 2}, + [155] = {.lex_state = 1336}, + [156] = {.lex_state = 624, .external_lex_state = 2}, + [157] = {.lex_state = 624, .external_lex_state = 2}, + [158] = {.lex_state = 624, .external_lex_state = 2}, + [159] = {.lex_state = 624, .external_lex_state = 2}, + [160] = {.lex_state = 624, .external_lex_state = 2}, + [161] = {.lex_state = 624, .external_lex_state = 2}, + [162] = {.lex_state = 624, .external_lex_state = 2}, + [163] = {.lex_state = 624, .external_lex_state = 2}, + [164] = {.lex_state = 624, .external_lex_state = 2}, + [165] = {.lex_state = 624, .external_lex_state = 2}, + [166] = {.lex_state = 624, .external_lex_state = 2}, + [167] = {.lex_state = 624, .external_lex_state = 2}, + [168] = {.lex_state = 624, .external_lex_state = 2}, + [169] = {.lex_state = 624, .external_lex_state = 2}, + [170] = {.lex_state = 624, .external_lex_state = 2}, + [171] = {.lex_state = 1336}, + [172] = {.lex_state = 624, .external_lex_state = 2}, + [173] = {.lex_state = 624, .external_lex_state = 2}, + [174] = {.lex_state = 624, .external_lex_state = 2}, + [175] = {.lex_state = 624, .external_lex_state = 2}, + [176] = {.lex_state = 624, .external_lex_state = 2}, + [177] = {.lex_state = 624, .external_lex_state = 2}, + [178] = {.lex_state = 624, .external_lex_state = 2}, + [179] = {.lex_state = 624, .external_lex_state = 2}, + [180] = {.lex_state = 624, .external_lex_state = 2}, + [181] = {.lex_state = 624, .external_lex_state = 2}, + [182] = {.lex_state = 624, .external_lex_state = 2}, + [183] = {.lex_state = 624, .external_lex_state = 2}, + [184] = {.lex_state = 624, .external_lex_state = 2}, + [185] = {.lex_state = 624, .external_lex_state = 2}, + [186] = {.lex_state = 624, .external_lex_state = 2}, + [187] = {.lex_state = 624, .external_lex_state = 2}, + [188] = {.lex_state = 624, .external_lex_state = 2}, + [189] = {.lex_state = 624, .external_lex_state = 2}, + [190] = {.lex_state = 624, .external_lex_state = 2}, + [191] = {.lex_state = 1182}, + [192] = {.lex_state = 1182}, + [193] = {.lex_state = 624, .external_lex_state = 2}, + [194] = {.lex_state = 52, .external_lex_state = 2}, + [195] = {.lex_state = 43, .external_lex_state = 2}, + [196] = {.lex_state = 43, .external_lex_state = 2}, + [197] = {.lex_state = 43, .external_lex_state = 2}, + [198] = {.lex_state = 43, .external_lex_state = 2}, + [199] = {.lex_state = 43, .external_lex_state = 2}, + [200] = {.lex_state = 43, .external_lex_state = 2}, + [201] = {.lex_state = 43, .external_lex_state = 2}, + [202] = {.lex_state = 43, .external_lex_state = 2}, + [203] = {.lex_state = 43, .external_lex_state = 2}, + [204] = {.lex_state = 43, .external_lex_state = 2}, + [205] = {.lex_state = 43, .external_lex_state = 2}, + [206] = {.lex_state = 43, .external_lex_state = 2}, + [207] = {.lex_state = 43, .external_lex_state = 2}, + [208] = {.lex_state = 43, .external_lex_state = 2}, + [209] = {.lex_state = 43, .external_lex_state = 2}, + [210] = {.lex_state = 43, .external_lex_state = 2}, + [211] = {.lex_state = 43, .external_lex_state = 2}, + [212] = {.lex_state = 43, .external_lex_state = 2}, + [213] = {.lex_state = 43, .external_lex_state = 2}, + [214] = {.lex_state = 43, .external_lex_state = 2}, + [215] = {.lex_state = 43, .external_lex_state = 2}, + [216] = {.lex_state = 43, .external_lex_state = 2}, + [217] = {.lex_state = 43, .external_lex_state = 2}, + [218] = {.lex_state = 43, .external_lex_state = 2}, + [219] = {.lex_state = 43, .external_lex_state = 2}, + [220] = {.lex_state = 43, .external_lex_state = 2}, + [221] = {.lex_state = 43, .external_lex_state = 2}, + [222] = {.lex_state = 43, .external_lex_state = 2}, + [223] = {.lex_state = 43, .external_lex_state = 2}, + [224] = {.lex_state = 43, .external_lex_state = 2}, + [225] = {.lex_state = 43, .external_lex_state = 2}, + [226] = {.lex_state = 43, .external_lex_state = 2}, + [227] = {.lex_state = 43, .external_lex_state = 2}, + [228] = {.lex_state = 43, .external_lex_state = 2}, + [229] = {.lex_state = 43, .external_lex_state = 2}, + [230] = {.lex_state = 43, .external_lex_state = 2}, + [231] = {.lex_state = 43, .external_lex_state = 2}, + [232] = {.lex_state = 43, .external_lex_state = 2}, + [233] = {.lex_state = 43, .external_lex_state = 2}, + [234] = {.lex_state = 43, .external_lex_state = 2}, + [235] = {.lex_state = 43, .external_lex_state = 2}, + [236] = {.lex_state = 43, .external_lex_state = 2}, + [237] = {.lex_state = 43, .external_lex_state = 2}, + [238] = {.lex_state = 43, .external_lex_state = 2}, + [239] = {.lex_state = 43, .external_lex_state = 2}, + [240] = {.lex_state = 43, .external_lex_state = 2}, + [241] = {.lex_state = 43, .external_lex_state = 2}, + [242] = {.lex_state = 43, .external_lex_state = 2}, + [243] = {.lex_state = 43, .external_lex_state = 2}, + [244] = {.lex_state = 43, .external_lex_state = 2}, + [245] = {.lex_state = 43, .external_lex_state = 2}, + [246] = {.lex_state = 43, .external_lex_state = 2}, + [247] = {.lex_state = 43, .external_lex_state = 2}, + [248] = {.lex_state = 43, .external_lex_state = 2}, + [249] = {.lex_state = 43, .external_lex_state = 2}, + [250] = {.lex_state = 43, .external_lex_state = 2}, + [251] = {.lex_state = 43, .external_lex_state = 2}, + [252] = {.lex_state = 43, .external_lex_state = 2}, + [253] = {.lex_state = 43, .external_lex_state = 2}, + [254] = {.lex_state = 43, .external_lex_state = 2}, + [255] = {.lex_state = 43, .external_lex_state = 2}, + [256] = {.lex_state = 43, .external_lex_state = 2}, + [257] = {.lex_state = 43, .external_lex_state = 2}, + [258] = {.lex_state = 43, .external_lex_state = 2}, + [259] = {.lex_state = 43, .external_lex_state = 2}, + [260] = {.lex_state = 43, .external_lex_state = 2}, + [261] = {.lex_state = 43, .external_lex_state = 2}, + [262] = {.lex_state = 43, .external_lex_state = 2}, + [263] = {.lex_state = 43, .external_lex_state = 2}, + [264] = {.lex_state = 43, .external_lex_state = 2}, + [265] = {.lex_state = 43, .external_lex_state = 2}, + [266] = {.lex_state = 43, .external_lex_state = 2}, + [267] = {.lex_state = 1169}, + [268] = {.lex_state = 1331}, + [269] = {.lex_state = 1151}, + [270] = {.lex_state = 1153}, + [271] = {.lex_state = 1329}, + [272] = {.lex_state = 1162}, + [273] = {.lex_state = 1171}, + [274] = {.lex_state = 43, .external_lex_state = 2}, + [275] = {.lex_state = 1155}, + [276] = {.lex_state = 43, .external_lex_state = 2}, + [277] = {.lex_state = 43, .external_lex_state = 2}, + [278] = {.lex_state = 43, .external_lex_state = 2}, + [279] = {.lex_state = 43, .external_lex_state = 2}, + [280] = {.lex_state = 1333}, + [281] = {.lex_state = 43, .external_lex_state = 2}, + [282] = {.lex_state = 43, .external_lex_state = 2}, + [283] = {.lex_state = 43, .external_lex_state = 2}, + [284] = {.lex_state = 43, .external_lex_state = 2}, + [285] = {.lex_state = 1333}, + [286] = {.lex_state = 43, .external_lex_state = 2}, + [287] = {.lex_state = 1155}, + [288] = {.lex_state = 43, .external_lex_state = 2}, + [289] = {.lex_state = 1171}, + [290] = {.lex_state = 43, .external_lex_state = 2}, + [291] = {.lex_state = 1329}, + [292] = {.lex_state = 1331}, + [293] = {.lex_state = 43, .external_lex_state = 2}, + [294] = {.lex_state = 1157}, + [295] = {.lex_state = 1157}, + [296] = {.lex_state = 1335}, + [297] = {.lex_state = 1173}, + [298] = {.lex_state = 1333}, + [299] = {.lex_state = 1335}, + [300] = {.lex_state = 1173}, + [301] = {.lex_state = 1157}, + [302] = {.lex_state = 1173}, + [303] = {.lex_state = 1173}, + [304] = {.lex_state = 1164}, + [305] = {.lex_state = 1175}, + [306] = {.lex_state = 1335}, + [307] = {.lex_state = 1157}, + [308] = {.lex_state = 1333}, + [309] = {.lex_state = 1335}, + [310] = {.lex_state = 1177}, + [311] = {.lex_state = 1335}, + [312] = {.lex_state = 1335}, + [313] = {.lex_state = 1335}, + [314] = {.lex_state = 1335}, + [315] = {.lex_state = 1177}, + [316] = {.lex_state = 1179}, + [317] = {.lex_state = 1179}, + [318] = {.lex_state = 1179}, + [319] = {.lex_state = 1179}, + [320] = {.lex_state = 53, .external_lex_state = 2}, + [321] = {.lex_state = 53, .external_lex_state = 2}, + [322] = {.lex_state = 53, .external_lex_state = 2}, + [323] = {.lex_state = 1337}, + [324] = {.lex_state = 1159}, + [325] = {.lex_state = 1181}, + [326] = {.lex_state = 1181}, + [327] = {.lex_state = 1159}, + [328] = {.lex_state = 1337}, + [329] = {.lex_state = 1337}, + [330] = {.lex_state = 1337}, + [331] = {.lex_state = 1183}, + [332] = {.lex_state = 1183}, + [333] = {.lex_state = 579}, + [334] = {.lex_state = 130}, + [335] = {.lex_state = 579}, + [336] = {.lex_state = 130}, + [337] = {.lex_state = 130}, + [338] = {.lex_state = 579}, + [339] = {.lex_state = 53, .external_lex_state = 2}, + [340] = {.lex_state = 53, .external_lex_state = 2}, + [341] = {.lex_state = 579}, + [342] = {.lex_state = 579}, + [343] = {.lex_state = 53, .external_lex_state = 2}, + [344] = {.lex_state = 579}, + [345] = {.lex_state = 579}, + [346] = {.lex_state = 130}, + [347] = {.lex_state = 579}, + [348] = {.lex_state = 579}, + [349] = {.lex_state = 579}, + [350] = {.lex_state = 130}, + [351] = {.lex_state = 130}, + [352] = {.lex_state = 130}, + [353] = {.lex_state = 130}, + [354] = {.lex_state = 53, .external_lex_state = 2}, + [355] = {.lex_state = 130}, + [356] = {.lex_state = 130}, + [357] = {.lex_state = 130}, + [358] = {.lex_state = 53, .external_lex_state = 2}, + [359] = {.lex_state = 53, .external_lex_state = 2}, + [360] = {.lex_state = 53, .external_lex_state = 2}, + [361] = {.lex_state = 53, .external_lex_state = 2}, + [362] = {.lex_state = 53, .external_lex_state = 2}, + [363] = {.lex_state = 53, .external_lex_state = 2}, + [364] = {.lex_state = 53, .external_lex_state = 2}, + [365] = {.lex_state = 130}, + [366] = {.lex_state = 130}, + [367] = {.lex_state = 130}, + [368] = {.lex_state = 579}, + [369] = {.lex_state = 579}, + [370] = {.lex_state = 579}, + [371] = {.lex_state = 53, .external_lex_state = 2}, + [372] = {.lex_state = 579}, + [373] = {.lex_state = 130}, + [374] = {.lex_state = 130}, + [375] = {.lex_state = 53, .external_lex_state = 2}, + [376] = {.lex_state = 53, .external_lex_state = 2}, + [377] = {.lex_state = 579}, + [378] = {.lex_state = 583}, + [379] = {.lex_state = 579}, + [380] = {.lex_state = 579}, + [381] = {.lex_state = 579}, + [382] = {.lex_state = 579}, + [383] = {.lex_state = 579}, + [384] = {.lex_state = 579}, + [385] = {.lex_state = 53, .external_lex_state = 2}, + [386] = {.lex_state = 53, .external_lex_state = 2}, + [387] = {.lex_state = 130}, + [388] = {.lex_state = 53, .external_lex_state = 2}, + [389] = {.lex_state = 579}, + [390] = {.lex_state = 583}, + [391] = {.lex_state = 53, .external_lex_state = 2}, + [392] = {.lex_state = 579}, + [393] = {.lex_state = 579}, + [394] = {.lex_state = 53, .external_lex_state = 2}, + [395] = {.lex_state = 583}, + [396] = {.lex_state = 579}, + [397] = {.lex_state = 53, .external_lex_state = 2}, [398] = {.lex_state = 583}, - [399] = {.lex_state = 578}, - [400] = {.lex_state = 581}, - [401] = {.lex_state = 581}, - [402] = {.lex_state = 577}, - [403] = {.lex_state = 581}, - [404] = {.lex_state = 577}, - [405] = {.lex_state = 577}, - [406] = {.lex_state = 578}, - [407] = {.lex_state = 583}, - [408] = {.lex_state = 581}, - [409] = {.lex_state = 581}, - [410] = {.lex_state = 581}, - [411] = {.lex_state = 581}, - [412] = {.lex_state = 578}, - [413] = {.lex_state = 577}, - [414] = {.lex_state = 578}, - [415] = {.lex_state = 578}, - [416] = {.lex_state = 583}, - [417] = {.lex_state = 577}, - [418] = {.lex_state = 583}, - [419] = {.lex_state = 581}, - [420] = {.lex_state = 578}, - [421] = {.lex_state = 585}, - [422] = {.lex_state = 589}, - [423] = {.lex_state = 578}, - [424] = {.lex_state = 578}, - [425] = {.lex_state = 578}, - [426] = {.lex_state = 578}, - [427] = {.lex_state = 578}, - [428] = {.lex_state = 578}, - [429] = {.lex_state = 578}, - [430] = {.lex_state = 581}, - [431] = {.lex_state = 577}, - [432] = {.lex_state = 577}, - [433] = {.lex_state = 585}, - [434] = {.lex_state = 577}, - [435] = {.lex_state = 591}, - [436] = {.lex_state = 591}, - [437] = {.lex_state = 578}, - [438] = {.lex_state = 577}, - [439] = {.lex_state = 577}, - [440] = {.lex_state = 578}, - [441] = {.lex_state = 578}, - [442] = {.lex_state = 595}, - [443] = {.lex_state = 581}, - [444] = {.lex_state = 587}, - [445] = {.lex_state = 577}, - [446] = {.lex_state = 593}, - [447] = {.lex_state = 578}, - [448] = {.lex_state = 581}, - [449] = {.lex_state = 581}, - [450] = {.lex_state = 581}, - [451] = {.lex_state = 581}, - [452] = {.lex_state = 581}, - [453] = {.lex_state = 577}, - [454] = {.lex_state = 589}, - [455] = {.lex_state = 40, .external_lex_state = 2}, - [456] = {.lex_state = 40, .external_lex_state = 2}, - [457] = {.lex_state = 40, .external_lex_state = 2}, - [458] = {.lex_state = 40, .external_lex_state = 2}, - [459] = {.lex_state = 597}, - [460] = {.lex_state = 40, .external_lex_state = 2}, - [461] = {.lex_state = 40, .external_lex_state = 2}, - [462] = {.lex_state = 593}, - [463] = {.lex_state = 593}, - [464] = {.lex_state = 44, .external_lex_state = 2}, - [465] = {.lex_state = 578}, - [466] = {.lex_state = 578}, - [467] = {.lex_state = 593}, - [468] = {.lex_state = 40, .external_lex_state = 2}, - [469] = {.lex_state = 591}, - [470] = {.lex_state = 597}, - [471] = {.lex_state = 577}, - [472] = {.lex_state = 591}, - [473] = {.lex_state = 593}, - [474] = {.lex_state = 577}, - [475] = {.lex_state = 40, .external_lex_state = 2}, - [476] = {.lex_state = 593}, - [477] = {.lex_state = 595}, - [478] = {.lex_state = 578}, - [479] = {.lex_state = 578}, - [480] = {.lex_state = 578}, - [481] = {.lex_state = 587}, - [482] = {.lex_state = 578}, - [483] = {.lex_state = 578}, - [484] = {.lex_state = 578}, - [485] = {.lex_state = 578}, - [486] = {.lex_state = 578}, - [487] = {.lex_state = 578}, - [488] = {.lex_state = 578}, - [489] = {.lex_state = 578}, - [490] = {.lex_state = 599}, - [491] = {.lex_state = 578}, - [492] = {.lex_state = 578}, - [493] = {.lex_state = 578}, - [494] = {.lex_state = 578}, - [495] = {.lex_state = 593}, - [496] = {.lex_state = 578}, - [497] = {.lex_state = 578}, - [498] = {.lex_state = 578}, - [499] = {.lex_state = 593}, - [500] = {.lex_state = 599}, - [501] = {.lex_state = 40, .external_lex_state = 2}, - [502] = {.lex_state = 578}, - [503] = {.lex_state = 599}, - [504] = {.lex_state = 41, .external_lex_state = 2}, - [505] = {.lex_state = 41, .external_lex_state = 2}, - [506] = {.lex_state = 41, .external_lex_state = 2}, - [507] = {.lex_state = 41, .external_lex_state = 2}, - [508] = {.lex_state = 41, .external_lex_state = 2}, - [509] = {.lex_state = 41, .external_lex_state = 2}, - [510] = {.lex_state = 41, .external_lex_state = 2}, - [511] = {.lex_state = 41, .external_lex_state = 2}, - [512] = {.lex_state = 41, .external_lex_state = 2}, - [513] = {.lex_state = 41, .external_lex_state = 2}, - [514] = {.lex_state = 41, .external_lex_state = 2}, - [515] = {.lex_state = 41, .external_lex_state = 2}, - [516] = {.lex_state = 41, .external_lex_state = 2}, - [517] = {.lex_state = 578}, - [518] = {.lex_state = 578}, - [519] = {.lex_state = 41, .external_lex_state = 2}, - [520] = {.lex_state = 41, .external_lex_state = 2}, - [521] = {.lex_state = 41, .external_lex_state = 2}, - [522] = {.lex_state = 41, .external_lex_state = 2}, - [523] = {.lex_state = 41, .external_lex_state = 2}, - [524] = {.lex_state = 41, .external_lex_state = 2}, - [525] = {.lex_state = 41, .external_lex_state = 2}, - [526] = {.lex_state = 41, .external_lex_state = 2}, - [527] = {.lex_state = 41, .external_lex_state = 2}, - [528] = {.lex_state = 41, .external_lex_state = 2}, - [529] = {.lex_state = 41, .external_lex_state = 2}, - [530] = {.lex_state = 41, .external_lex_state = 2}, - [531] = {.lex_state = 41, .external_lex_state = 2}, - [532] = {.lex_state = 41, .external_lex_state = 2}, - [533] = {.lex_state = 41, .external_lex_state = 2}, - [534] = {.lex_state = 41, .external_lex_state = 2}, - [535] = {.lex_state = 41, .external_lex_state = 2}, - [536] = {.lex_state = 41, .external_lex_state = 2}, - [537] = {.lex_state = 41, .external_lex_state = 2}, - [538] = {.lex_state = 41, .external_lex_state = 2}, - [539] = {.lex_state = 41, .external_lex_state = 2}, - [540] = {.lex_state = 611}, - [541] = {.lex_state = 41, .external_lex_state = 2}, - [542] = {.lex_state = 41, .external_lex_state = 2}, - [543] = {.lex_state = 41, .external_lex_state = 2}, - [544] = {.lex_state = 41, .external_lex_state = 2}, - [545] = {.lex_state = 41, .external_lex_state = 2}, - [546] = {.lex_state = 41, .external_lex_state = 2}, - [547] = {.lex_state = 41, .external_lex_state = 2}, - [548] = {.lex_state = 41, .external_lex_state = 2}, - [549] = {.lex_state = 41, .external_lex_state = 2}, - [550] = {.lex_state = 41, .external_lex_state = 2}, - [551] = {.lex_state = 41, .external_lex_state = 2}, - [552] = {.lex_state = 41, .external_lex_state = 2}, - [553] = {.lex_state = 41, .external_lex_state = 2}, - [554] = {.lex_state = 41, .external_lex_state = 2}, - [555] = {.lex_state = 41, .external_lex_state = 2}, - [556] = {.lex_state = 41, .external_lex_state = 2}, - [557] = {.lex_state = 41, .external_lex_state = 2}, - [558] = {.lex_state = 41, .external_lex_state = 2}, - [559] = {.lex_state = 41, .external_lex_state = 2}, - [560] = {.lex_state = 41, .external_lex_state = 2}, - [561] = {.lex_state = 41, .external_lex_state = 2}, - [562] = {.lex_state = 41, .external_lex_state = 2}, - [563] = {.lex_state = 41, .external_lex_state = 2}, - [564] = {.lex_state = 41, .external_lex_state = 2}, - [565] = {.lex_state = 41, .external_lex_state = 2}, - [566] = {.lex_state = 41, .external_lex_state = 2}, - [567] = {.lex_state = 41, .external_lex_state = 2}, - [568] = {.lex_state = 41, .external_lex_state = 2}, - [569] = {.lex_state = 41, .external_lex_state = 2}, - [570] = {.lex_state = 41, .external_lex_state = 2}, - [571] = {.lex_state = 41, .external_lex_state = 2}, - [572] = {.lex_state = 41, .external_lex_state = 2}, - [573] = {.lex_state = 41, .external_lex_state = 2}, - [574] = {.lex_state = 41, .external_lex_state = 2}, - [575] = {.lex_state = 41, .external_lex_state = 2}, - [576] = {.lex_state = 41, .external_lex_state = 2}, - [577] = {.lex_state = 41, .external_lex_state = 2}, - [578] = {.lex_state = 41, .external_lex_state = 2}, - [579] = {.lex_state = 41, .external_lex_state = 2}, - [580] = {.lex_state = 41, .external_lex_state = 2}, - [581] = {.lex_state = 41, .external_lex_state = 2}, - [582] = {.lex_state = 41, .external_lex_state = 2}, - [583] = {.lex_state = 41, .external_lex_state = 2}, - [584] = {.lex_state = 41, .external_lex_state = 2}, - [585] = {.lex_state = 41, .external_lex_state = 2}, - [586] = {.lex_state = 41, .external_lex_state = 2}, - [587] = {.lex_state = 41, .external_lex_state = 2}, - [588] = {.lex_state = 41, .external_lex_state = 2}, - [589] = {.lex_state = 41, .external_lex_state = 2}, - [590] = {.lex_state = 41, .external_lex_state = 2}, - [591] = {.lex_state = 41, .external_lex_state = 2}, - [592] = {.lex_state = 41, .external_lex_state = 2}, - [593] = {.lex_state = 41, .external_lex_state = 2}, - [594] = {.lex_state = 41, .external_lex_state = 2}, - [595] = {.lex_state = 41, .external_lex_state = 2}, - [596] = {.lex_state = 41, .external_lex_state = 2}, - [597] = {.lex_state = 41, .external_lex_state = 2}, - [598] = {.lex_state = 41, .external_lex_state = 2}, - [599] = {.lex_state = 41, .external_lex_state = 2}, - [600] = {.lex_state = 41, .external_lex_state = 2}, - [601] = {.lex_state = 41, .external_lex_state = 2}, - [602] = {.lex_state = 41, .external_lex_state = 2}, - [603] = {.lex_state = 41, .external_lex_state = 2}, - [604] = {.lex_state = 41, .external_lex_state = 2}, - [605] = {.lex_state = 41, .external_lex_state = 2}, - [606] = {.lex_state = 41, .external_lex_state = 2}, - [607] = {.lex_state = 41, .external_lex_state = 2}, - [608] = {.lex_state = 41, .external_lex_state = 2}, - [609] = {.lex_state = 41, .external_lex_state = 2}, - [610] = {.lex_state = 41, .external_lex_state = 2}, - [611] = {.lex_state = 41, .external_lex_state = 2}, - [612] = {.lex_state = 41, .external_lex_state = 2}, - [613] = {.lex_state = 41, .external_lex_state = 2}, - [614] = {.lex_state = 41, .external_lex_state = 2}, - [615] = {.lex_state = 597}, - [616] = {.lex_state = 41, .external_lex_state = 2}, - [617] = {.lex_state = 41, .external_lex_state = 2}, - [618] = {.lex_state = 40, .external_lex_state = 2}, - [619] = {.lex_state = 41, .external_lex_state = 2}, - [620] = {.lex_state = 41, .external_lex_state = 2}, - [621] = {.lex_state = 41, .external_lex_state = 2}, - [622] = {.lex_state = 41, .external_lex_state = 2}, - [623] = {.lex_state = 41, .external_lex_state = 2}, - [624] = {.lex_state = 41, .external_lex_state = 2}, - [625] = {.lex_state = 40, .external_lex_state = 2}, - [626] = {.lex_state = 41, .external_lex_state = 2}, - [627] = {.lex_state = 41, .external_lex_state = 2}, - [628] = {.lex_state = 41, .external_lex_state = 2}, - [629] = {.lex_state = 44, .external_lex_state = 2}, - [630] = {.lex_state = 44, .external_lex_state = 2}, - [631] = {.lex_state = 41, .external_lex_state = 2}, - [632] = {.lex_state = 41, .external_lex_state = 2}, - [633] = {.lex_state = 41, .external_lex_state = 2}, - [634] = {.lex_state = 41, .external_lex_state = 2}, - [635] = {.lex_state = 41, .external_lex_state = 2}, - [636] = {.lex_state = 41, .external_lex_state = 2}, - [637] = {.lex_state = 41, .external_lex_state = 2}, - [638] = {.lex_state = 41, .external_lex_state = 2}, - [639] = {.lex_state = 41, .external_lex_state = 2}, - [640] = {.lex_state = 41, .external_lex_state = 2}, - [641] = {.lex_state = 41, .external_lex_state = 2}, - [642] = {.lex_state = 599}, - [643] = {.lex_state = 41, .external_lex_state = 2}, - [644] = {.lex_state = 41, .external_lex_state = 2}, - [645] = {.lex_state = 599}, - [646] = {.lex_state = 41, .external_lex_state = 2}, - [647] = {.lex_state = 41, .external_lex_state = 2}, - [648] = {.lex_state = 41, .external_lex_state = 2}, - [649] = {.lex_state = 41, .external_lex_state = 2}, - [650] = {.lex_state = 41, .external_lex_state = 2}, - [651] = {.lex_state = 41, .external_lex_state = 2}, - [652] = {.lex_state = 41, .external_lex_state = 2}, - [653] = {.lex_state = 41, .external_lex_state = 2}, - [654] = {.lex_state = 41, .external_lex_state = 2}, - [655] = {.lex_state = 41, .external_lex_state = 2}, - [656] = {.lex_state = 41, .external_lex_state = 2}, - [657] = {.lex_state = 44, .external_lex_state = 2}, - [658] = {.lex_state = 41, .external_lex_state = 2}, - [659] = {.lex_state = 41, .external_lex_state = 2}, - [660] = {.lex_state = 41, .external_lex_state = 2}, - [661] = {.lex_state = 41, .external_lex_state = 2}, - [662] = {.lex_state = 41, .external_lex_state = 2}, - [663] = {.lex_state = 41, .external_lex_state = 2}, - [664] = {.lex_state = 597}, - [665] = {.lex_state = 41, .external_lex_state = 2}, - [666] = {.lex_state = 41, .external_lex_state = 2}, - [667] = {.lex_state = 41, .external_lex_state = 2}, - [668] = {.lex_state = 41, .external_lex_state = 2}, - [669] = {.lex_state = 41, .external_lex_state = 2}, - [670] = {.lex_state = 41, .external_lex_state = 2}, - [671] = {.lex_state = 41, .external_lex_state = 2}, - [672] = {.lex_state = 601}, - [673] = {.lex_state = 599}, - [674] = {.lex_state = 578}, - [675] = {.lex_state = 578}, - [676] = {.lex_state = 578}, - [677] = {.lex_state = 578}, - [678] = {.lex_state = 599}, - [679] = {.lex_state = 578}, - [680] = {.lex_state = 599}, - [681] = {.lex_state = 578}, - [682] = {.lex_state = 578}, - [683] = {.lex_state = 578}, - [684] = {.lex_state = 599}, - [685] = {.lex_state = 578}, - [686] = {.lex_state = 578}, - [687] = {.lex_state = 578}, - [688] = {.lex_state = 578}, - [689] = {.lex_state = 578}, - [690] = {.lex_state = 578}, - [691] = {.lex_state = 611}, - [692] = {.lex_state = 578}, - [693] = {.lex_state = 599}, - [694] = {.lex_state = 578}, - [695] = {.lex_state = 578}, - [696] = {.lex_state = 603}, - [697] = {.lex_state = 578}, - [698] = {.lex_state = 578}, - [699] = {.lex_state = 578}, - [700] = {.lex_state = 578}, - [701] = {.lex_state = 578}, - [702] = {.lex_state = 578}, - [703] = {.lex_state = 578}, - [704] = {.lex_state = 578}, - [705] = {.lex_state = 578}, - [706] = {.lex_state = 578}, - [707] = {.lex_state = 578}, - [708] = {.lex_state = 578}, - [709] = {.lex_state = 578}, - [710] = {.lex_state = 578}, - [711] = {.lex_state = 578}, - [712] = {.lex_state = 578}, - [713] = {.lex_state = 41, .external_lex_state = 2}, - [714] = {.lex_state = 41, .external_lex_state = 2}, - [715] = {.lex_state = 41, .external_lex_state = 2}, - [716] = {.lex_state = 41, .external_lex_state = 2}, - [717] = {.lex_state = 41, .external_lex_state = 2}, - [718] = {.lex_state = 41, .external_lex_state = 2}, - [719] = {.lex_state = 578}, - [720] = {.lex_state = 578}, - [721] = {.lex_state = 578}, - [722] = {.lex_state = 578}, - [723] = {.lex_state = 578}, - [724] = {.lex_state = 578}, - [725] = {.lex_state = 41, .external_lex_state = 2}, - [726] = {.lex_state = 578}, - [727] = {.lex_state = 578}, - [728] = {.lex_state = 578}, - [729] = {.lex_state = 578}, - [730] = {.lex_state = 578}, - [731] = {.lex_state = 41, .external_lex_state = 2}, - [732] = {.lex_state = 41, .external_lex_state = 2}, - [733] = {.lex_state = 41, .external_lex_state = 2}, - [734] = {.lex_state = 41, .external_lex_state = 2}, - [735] = {.lex_state = 578}, - [736] = {.lex_state = 578}, - [737] = {.lex_state = 578}, - [738] = {.lex_state = 578}, - [739] = {.lex_state = 578}, - [740] = {.lex_state = 578}, - [741] = {.lex_state = 578}, - [742] = {.lex_state = 578}, - [743] = {.lex_state = 578}, - [744] = {.lex_state = 578}, - [745] = {.lex_state = 41, .external_lex_state = 2}, - [746] = {.lex_state = 578}, - [747] = {.lex_state = 578}, - [748] = {.lex_state = 41, .external_lex_state = 2}, - [749] = {.lex_state = 41, .external_lex_state = 2}, - [750] = {.lex_state = 41, .external_lex_state = 2}, - [751] = {.lex_state = 41, .external_lex_state = 2}, - [752] = {.lex_state = 41, .external_lex_state = 2}, - [753] = {.lex_state = 41, .external_lex_state = 2}, - [754] = {.lex_state = 41, .external_lex_state = 2}, - [755] = {.lex_state = 41, .external_lex_state = 2}, - [756] = {.lex_state = 41, .external_lex_state = 2}, - [757] = {.lex_state = 41, .external_lex_state = 2}, - [758] = {.lex_state = 41, .external_lex_state = 2}, - [759] = {.lex_state = 41, .external_lex_state = 2}, - [760] = {.lex_state = 41, .external_lex_state = 2}, - [761] = {.lex_state = 578}, - [762] = {.lex_state = 41, .external_lex_state = 2}, - [763] = {.lex_state = 578}, - [764] = {.lex_state = 578}, - [765] = {.lex_state = 41, .external_lex_state = 2}, - [766] = {.lex_state = 578}, - [767] = {.lex_state = 578}, - [768] = {.lex_state = 41, .external_lex_state = 2}, - [769] = {.lex_state = 578}, - [770] = {.lex_state = 578}, - [771] = {.lex_state = 578}, - [772] = {.lex_state = 578}, - [773] = {.lex_state = 578}, - [774] = {.lex_state = 578}, - [775] = {.lex_state = 578}, - [776] = {.lex_state = 578}, - [777] = {.lex_state = 578}, - [778] = {.lex_state = 578}, - [779] = {.lex_state = 611}, - [780] = {.lex_state = 578}, - [781] = {.lex_state = 578}, - [782] = {.lex_state = 578}, - [783] = {.lex_state = 578}, - [784] = {.lex_state = 578}, - [785] = {.lex_state = 578}, - [786] = {.lex_state = 603}, - [787] = {.lex_state = 578}, - [788] = {.lex_state = 36, .external_lex_state = 2}, - [789] = {.lex_state = 40, .external_lex_state = 2}, - [790] = {.lex_state = 578}, - [791] = {.lex_state = 601}, - [792] = {.lex_state = 578}, - [793] = {.lex_state = 578}, - [794] = {.lex_state = 578}, - [795] = {.lex_state = 605}, - [796] = {.lex_state = 41, .external_lex_state = 2}, - [797] = {.lex_state = 578}, - [798] = {.lex_state = 578}, - [799] = {.lex_state = 578}, - [800] = {.lex_state = 578}, - [801] = {.lex_state = 578}, - [802] = {.lex_state = 578}, - [803] = {.lex_state = 578}, - [804] = {.lex_state = 578}, - [805] = {.lex_state = 578}, - [806] = {.lex_state = 578}, - [807] = {.lex_state = 578}, - [808] = {.lex_state = 578}, - [809] = {.lex_state = 578}, - [810] = {.lex_state = 578}, - [811] = {.lex_state = 41, .external_lex_state = 2}, - [812] = {.lex_state = 41, .external_lex_state = 2}, - [813] = {.lex_state = 41, .external_lex_state = 2}, - [814] = {.lex_state = 41, .external_lex_state = 2}, - [815] = {.lex_state = 41, .external_lex_state = 2}, - [816] = {.lex_state = 41, .external_lex_state = 2}, - [817] = {.lex_state = 41, .external_lex_state = 2}, - [818] = {.lex_state = 41, .external_lex_state = 2}, - [819] = {.lex_state = 41, .external_lex_state = 2}, - [820] = {.lex_state = 41, .external_lex_state = 2}, - [821] = {.lex_state = 41, .external_lex_state = 2}, - [822] = {.lex_state = 41, .external_lex_state = 2}, - [823] = {.lex_state = 41, .external_lex_state = 2}, - [824] = {.lex_state = 578}, - [825] = {.lex_state = 578}, - [826] = {.lex_state = 40, .external_lex_state = 2}, - [827] = {.lex_state = 578}, - [828] = {.lex_state = 578}, - [829] = {.lex_state = 578}, - [830] = {.lex_state = 578}, - [831] = {.lex_state = 578}, - [832] = {.lex_state = 578}, - [833] = {.lex_state = 578}, - [834] = {.lex_state = 578}, - [835] = {.lex_state = 578}, - [836] = {.lex_state = 40, .external_lex_state = 2}, - [837] = {.lex_state = 40, .external_lex_state = 2}, - [838] = {.lex_state = 41, .external_lex_state = 2}, - [839] = {.lex_state = 41, .external_lex_state = 2}, - [840] = {.lex_state = 41, .external_lex_state = 2}, - [841] = {.lex_state = 41, .external_lex_state = 2}, - [842] = {.lex_state = 41, .external_lex_state = 2}, - [843] = {.lex_state = 41, .external_lex_state = 2}, - [844] = {.lex_state = 41, .external_lex_state = 2}, - [845] = {.lex_state = 41, .external_lex_state = 2}, - [846] = {.lex_state = 41, .external_lex_state = 2}, - [847] = {.lex_state = 41, .external_lex_state = 2}, - [848] = {.lex_state = 41, .external_lex_state = 2}, - [849] = {.lex_state = 41, .external_lex_state = 2}, - [850] = {.lex_state = 41, .external_lex_state = 2}, - [851] = {.lex_state = 578}, - [852] = {.lex_state = 578}, - [853] = {.lex_state = 578}, - [854] = {.lex_state = 578}, - [855] = {.lex_state = 578}, - [856] = {.lex_state = 578}, - [857] = {.lex_state = 578}, - [858] = {.lex_state = 578}, - [859] = {.lex_state = 578}, - [860] = {.lex_state = 578}, - [861] = {.lex_state = 578}, - [862] = {.lex_state = 578}, - [863] = {.lex_state = 578}, - [864] = {.lex_state = 578}, - [865] = {.lex_state = 41, .external_lex_state = 2}, - [866] = {.lex_state = 41, .external_lex_state = 2}, - [867] = {.lex_state = 41, .external_lex_state = 2}, - [868] = {.lex_state = 41, .external_lex_state = 2}, - [869] = {.lex_state = 41, .external_lex_state = 2}, - [870] = {.lex_state = 41, .external_lex_state = 2}, - [871] = {.lex_state = 41, .external_lex_state = 2}, - [872] = {.lex_state = 41, .external_lex_state = 2}, - [873] = {.lex_state = 41, .external_lex_state = 2}, - [874] = {.lex_state = 41, .external_lex_state = 2}, - [875] = {.lex_state = 41, .external_lex_state = 2}, - [876] = {.lex_state = 41, .external_lex_state = 2}, - [877] = {.lex_state = 41, .external_lex_state = 2}, - [878] = {.lex_state = 40, .external_lex_state = 2}, - [879] = {.lex_state = 40, .external_lex_state = 2}, - [880] = {.lex_state = 41, .external_lex_state = 2}, - [881] = {.lex_state = 36, .external_lex_state = 2}, - [882] = {.lex_state = 41, .external_lex_state = 2}, - [883] = {.lex_state = 41, .external_lex_state = 2}, - [884] = {.lex_state = 41, .external_lex_state = 2}, - [885] = {.lex_state = 36, .external_lex_state = 2}, - [886] = {.lex_state = 607}, - [887] = {.lex_state = 578}, - [888] = {.lex_state = 578}, - [889] = {.lex_state = 41, .external_lex_state = 2}, - [890] = {.lex_state = 41, .external_lex_state = 2}, - [891] = {.lex_state = 41, .external_lex_state = 2}, - [892] = {.lex_state = 41, .external_lex_state = 2}, - [893] = {.lex_state = 41, .external_lex_state = 2}, - [894] = {.lex_state = 41, .external_lex_state = 2}, - [895] = {.lex_state = 605}, - [896] = {.lex_state = 578}, - [897] = {.lex_state = 578}, - [898] = {.lex_state = 578}, - [899] = {.lex_state = 578}, - [900] = {.lex_state = 578}, - [901] = {.lex_state = 578}, - [902] = {.lex_state = 578}, - [903] = {.lex_state = 578}, - [904] = {.lex_state = 578}, - [905] = {.lex_state = 607}, - [906] = {.lex_state = 578}, - [907] = {.lex_state = 607}, - [908] = {.lex_state = 607}, - [909] = {.lex_state = 578}, - [910] = {.lex_state = 578}, - [911] = {.lex_state = 578}, - [912] = {.lex_state = 36, .external_lex_state = 2}, - [913] = {.lex_state = 578}, - [914] = {.lex_state = 578}, - [915] = {.lex_state = 578}, - [916] = {.lex_state = 578}, - [917] = {.lex_state = 578}, - [918] = {.lex_state = 578}, - [919] = {.lex_state = 578}, - [920] = {.lex_state = 578}, - [921] = {.lex_state = 50, .external_lex_state = 2}, - [922] = {.lex_state = 578}, - [923] = {.lex_state = 578}, - [924] = {.lex_state = 578}, - [925] = {.lex_state = 578}, - [926] = {.lex_state = 578}, - [927] = {.lex_state = 578}, - [928] = {.lex_state = 578}, - [929] = {.lex_state = 578}, - [930] = {.lex_state = 578}, - [931] = {.lex_state = 607}, - [932] = {.lex_state = 578}, - [933] = {.lex_state = 578}, - [934] = {.lex_state = 578}, - [935] = {.lex_state = 578}, - [936] = {.lex_state = 578}, - [937] = {.lex_state = 607}, - [938] = {.lex_state = 578}, - [939] = {.lex_state = 578}, - [940] = {.lex_state = 605}, - [941] = {.lex_state = 607}, - [942] = {.lex_state = 578}, - [943] = {.lex_state = 578}, - [944] = {.lex_state = 578}, - [945] = {.lex_state = 578}, - [946] = {.lex_state = 578}, - [947] = {.lex_state = 578}, - [948] = {.lex_state = 607}, - [949] = {.lex_state = 578}, - [950] = {.lex_state = 578}, - [951] = {.lex_state = 578}, - [952] = {.lex_state = 578}, - [953] = {.lex_state = 578}, - [954] = {.lex_state = 607}, - [955] = {.lex_state = 578}, - [956] = {.lex_state = 578}, - [957] = {.lex_state = 605}, - [958] = {.lex_state = 607}, - [959] = {.lex_state = 607}, - [960] = {.lex_state = 607}, - [961] = {.lex_state = 607}, - [962] = {.lex_state = 50, .external_lex_state = 2}, - [963] = {.lex_state = 50, .external_lex_state = 2}, - [964] = {.lex_state = 36, .external_lex_state = 2}, - [965] = {.lex_state = 36, .external_lex_state = 2}, - [966] = {.lex_state = 36, .external_lex_state = 2}, - [967] = {.lex_state = 607}, - [968] = {.lex_state = 578}, - [969] = {.lex_state = 578}, - [970] = {.lex_state = 607}, - [971] = {.lex_state = 47, .external_lex_state = 2}, - [972] = {.lex_state = 578}, - [973] = {.lex_state = 607}, - [974] = {.lex_state = 578}, - [975] = {.lex_state = 607}, - [976] = {.lex_state = 50, .external_lex_state = 2}, - [977] = {.lex_state = 50, .external_lex_state = 2}, - [978] = {.lex_state = 622, .external_lex_state = 2}, - [979] = {.lex_state = 578}, - [980] = {.lex_state = 578}, - [981] = {.lex_state = 578}, - [982] = {.lex_state = 578}, - [983] = {.lex_state = 578}, - [984] = {.lex_state = 578}, - [985] = {.lex_state = 41, .external_lex_state = 2}, - [986] = {.lex_state = 578}, - [987] = {.lex_state = 41, .external_lex_state = 2}, - [988] = {.lex_state = 41, .external_lex_state = 2}, - [989] = {.lex_state = 578}, - [990] = {.lex_state = 578}, - [991] = {.lex_state = 578}, - [992] = {.lex_state = 578}, - [993] = {.lex_state = 578}, - [994] = {.lex_state = 578}, - [995] = {.lex_state = 578}, - [996] = {.lex_state = 578}, - [997] = {.lex_state = 578}, - [998] = {.lex_state = 578}, - [999] = {.lex_state = 578}, - [1000] = {.lex_state = 578}, - [1001] = {.lex_state = 578}, - [1002] = {.lex_state = 578}, - [1003] = {.lex_state = 578}, - [1004] = {.lex_state = 578}, - [1005] = {.lex_state = 622, .external_lex_state = 2}, - [1006] = {.lex_state = 578}, - [1007] = {.lex_state = 578}, - [1008] = {.lex_state = 578}, - [1009] = {.lex_state = 578}, - [1010] = {.lex_state = 578}, - [1011] = {.lex_state = 578}, - [1012] = {.lex_state = 578}, - [1013] = {.lex_state = 578}, - [1014] = {.lex_state = 578}, - [1015] = {.lex_state = 578}, - [1016] = {.lex_state = 578}, - [1017] = {.lex_state = 578}, - [1018] = {.lex_state = 578}, - [1019] = {.lex_state = 578}, - [1020] = {.lex_state = 578}, - [1021] = {.lex_state = 47, .external_lex_state = 2}, - [1022] = {.lex_state = 578}, - [1023] = {.lex_state = 578}, - [1024] = {.lex_state = 578}, - [1025] = {.lex_state = 607}, - [1026] = {.lex_state = 607}, - [1027] = {.lex_state = 578}, - [1028] = {.lex_state = 607}, - [1029] = {.lex_state = 578}, - [1030] = {.lex_state = 578}, - [1031] = {.lex_state = 578}, - [1032] = {.lex_state = 578}, - [1033] = {.lex_state = 578}, - [1034] = {.lex_state = 578}, - [1035] = {.lex_state = 578}, - [1036] = {.lex_state = 578}, - [1037] = {.lex_state = 578}, - [1038] = {.lex_state = 578}, - [1039] = {.lex_state = 578}, - [1040] = {.lex_state = 578}, - [1041] = {.lex_state = 578}, - [1042] = {.lex_state = 578}, - [1043] = {.lex_state = 609}, - [1044] = {.lex_state = 578}, - [1045] = {.lex_state = 578}, - [1046] = {.lex_state = 578}, - [1047] = {.lex_state = 607}, - [1048] = {.lex_state = 578}, - [1049] = {.lex_state = 607}, - [1050] = {.lex_state = 607}, - [1051] = {.lex_state = 578}, - [1052] = {.lex_state = 578}, - [1053] = {.lex_state = 578}, - [1054] = {.lex_state = 578}, - [1055] = {.lex_state = 578}, - [1056] = {.lex_state = 578}, - [1057] = {.lex_state = 578}, - [1058] = {.lex_state = 578}, - [1059] = {.lex_state = 578}, - [1060] = {.lex_state = 578}, - [1061] = {.lex_state = 578}, - [1062] = {.lex_state = 578}, - [1063] = {.lex_state = 607}, - [1064] = {.lex_state = 578}, - [1065] = {.lex_state = 578}, - [1066] = {.lex_state = 578}, - [1067] = {.lex_state = 578}, - [1068] = {.lex_state = 607}, - [1069] = {.lex_state = 578}, - [1070] = {.lex_state = 578}, - [1071] = {.lex_state = 578}, - [1072] = {.lex_state = 578}, - [1073] = {.lex_state = 578}, - [1074] = {.lex_state = 578}, - [1075] = {.lex_state = 578}, - [1076] = {.lex_state = 578}, - [1077] = {.lex_state = 578}, - [1078] = {.lex_state = 578}, - [1079] = {.lex_state = 578}, - [1080] = {.lex_state = 578}, - [1081] = {.lex_state = 578}, - [1082] = {.lex_state = 578}, - [1083] = {.lex_state = 607}, - [1084] = {.lex_state = 578}, - [1085] = {.lex_state = 578}, - [1086] = {.lex_state = 578}, - [1087] = {.lex_state = 578}, - [1088] = {.lex_state = 578}, - [1089] = {.lex_state = 578}, - [1090] = {.lex_state = 607}, - [1091] = {.lex_state = 578}, - [1092] = {.lex_state = 578}, - [1093] = {.lex_state = 578}, - [1094] = {.lex_state = 578}, - [1095] = {.lex_state = 578}, - [1096] = {.lex_state = 578}, - [1097] = {.lex_state = 578}, - [1098] = {.lex_state = 578}, - [1099] = {.lex_state = 578}, - [1100] = {.lex_state = 578}, - [1101] = {.lex_state = 578}, - [1102] = {.lex_state = 578}, - [1103] = {.lex_state = 578}, - [1104] = {.lex_state = 578}, - [1105] = {.lex_state = 578}, - [1106] = {.lex_state = 578}, - [1107] = {.lex_state = 578}, - [1108] = {.lex_state = 578}, - [1109] = {.lex_state = 41, .external_lex_state = 2}, - [1110] = {.lex_state = 41, .external_lex_state = 2}, - [1111] = {.lex_state = 41, .external_lex_state = 2}, - [1112] = {.lex_state = 609}, - [1113] = {.lex_state = 609}, - [1114] = {.lex_state = 609}, - [1115] = {.lex_state = 578}, - [1116] = {.lex_state = 578}, - [1117] = {.lex_state = 36, .external_lex_state = 2}, - [1118] = {.lex_state = 36, .external_lex_state = 2}, - [1119] = {.lex_state = 578}, - [1120] = {.lex_state = 578}, - [1121] = {.lex_state = 578}, - [1122] = {.lex_state = 611}, - [1123] = {.lex_state = 578}, - [1124] = {.lex_state = 578}, - [1125] = {.lex_state = 47, .external_lex_state = 2}, - [1126] = {.lex_state = 578}, - [1127] = {.lex_state = 578}, - [1128] = {.lex_state = 578}, - [1129] = {.lex_state = 622, .external_lex_state = 2}, - [1130] = {.lex_state = 578}, - [1131] = {.lex_state = 578}, - [1132] = {.lex_state = 578}, - [1133] = {.lex_state = 578}, - [1134] = {.lex_state = 578}, - [1135] = {.lex_state = 578}, - [1136] = {.lex_state = 578}, - [1137] = {.lex_state = 578}, - [1138] = {.lex_state = 578}, - [1139] = {.lex_state = 578}, - [1140] = {.lex_state = 578}, - [1141] = {.lex_state = 578}, - [1142] = {.lex_state = 578}, - [1143] = {.lex_state = 578}, - [1144] = {.lex_state = 578}, - [1145] = {.lex_state = 578}, - [1146] = {.lex_state = 578}, - [1147] = {.lex_state = 578}, - [1148] = {.lex_state = 578}, - [1149] = {.lex_state = 46, .external_lex_state = 2}, - [1150] = {.lex_state = 578}, - [1151] = {.lex_state = 46, .external_lex_state = 2}, - [1152] = {.lex_state = 578}, - [1153] = {.lex_state = 578}, - [1154] = {.lex_state = 578}, - [1155] = {.lex_state = 578}, - [1156] = {.lex_state = 578}, - [1157] = {.lex_state = 578}, - [1158] = {.lex_state = 578}, - [1159] = {.lex_state = 578}, - [1160] = {.lex_state = 578}, - [1161] = {.lex_state = 578}, - [1162] = {.lex_state = 578}, - [1163] = {.lex_state = 609}, - [1164] = {.lex_state = 578}, - [1165] = {.lex_state = 578}, - [1166] = {.lex_state = 578}, - [1167] = {.lex_state = 578}, - [1168] = {.lex_state = 578}, - [1169] = {.lex_state = 578}, - [1170] = {.lex_state = 578}, - [1171] = {.lex_state = 578}, - [1172] = {.lex_state = 609}, - [1173] = {.lex_state = 578}, - [1174] = {.lex_state = 578}, - [1175] = {.lex_state = 578}, - [1176] = {.lex_state = 578}, - [1177] = {.lex_state = 578}, - [1178] = {.lex_state = 578}, - [1179] = {.lex_state = 578}, - [1180] = {.lex_state = 578}, - [1181] = {.lex_state = 578}, - [1182] = {.lex_state = 578}, - [1183] = {.lex_state = 578}, - [1184] = {.lex_state = 578}, - [1185] = {.lex_state = 578}, - [1186] = {.lex_state = 578}, - [1187] = {.lex_state = 578}, - [1188] = {.lex_state = 578}, - [1189] = {.lex_state = 578}, - [1190] = {.lex_state = 578}, - [1191] = {.lex_state = 578}, - [1192] = {.lex_state = 578}, - [1193] = {.lex_state = 578}, - [1194] = {.lex_state = 578}, - [1195] = {.lex_state = 578}, - [1196] = {.lex_state = 578}, - [1197] = {.lex_state = 578}, - [1198] = {.lex_state = 578}, - [1199] = {.lex_state = 578}, - [1200] = {.lex_state = 578}, - [1201] = {.lex_state = 578}, - [1202] = {.lex_state = 578}, - [1203] = {.lex_state = 578}, - [1204] = {.lex_state = 578}, - [1205] = {.lex_state = 607}, - [1206] = {.lex_state = 578}, - [1207] = {.lex_state = 609}, - [1208] = {.lex_state = 578}, - [1209] = {.lex_state = 578}, - [1210] = {.lex_state = 578}, - [1211] = {.lex_state = 578}, - [1212] = {.lex_state = 578}, - [1213] = {.lex_state = 578}, - [1214] = {.lex_state = 578}, - [1215] = {.lex_state = 578}, - [1216] = {.lex_state = 578}, - [1217] = {.lex_state = 578}, - [1218] = {.lex_state = 578}, - [1219] = {.lex_state = 578}, - [1220] = {.lex_state = 578}, - [1221] = {.lex_state = 578}, - [1222] = {.lex_state = 578}, - [1223] = {.lex_state = 578}, - [1224] = {.lex_state = 578}, - [1225] = {.lex_state = 578}, - [1226] = {.lex_state = 578}, - [1227] = {.lex_state = 578}, - [1228] = {.lex_state = 578}, - [1229] = {.lex_state = 578}, - [1230] = {.lex_state = 50, .external_lex_state = 2}, - [1231] = {.lex_state = 578}, - [1232] = {.lex_state = 50, .external_lex_state = 2}, - [1233] = {.lex_state = 578}, - [1234] = {.lex_state = 578}, - [1235] = {.lex_state = 578}, - [1236] = {.lex_state = 578}, - [1237] = {.lex_state = 46, .external_lex_state = 2}, - [1238] = {.lex_state = 578}, - [1239] = {.lex_state = 609}, - [1240] = {.lex_state = 50, .external_lex_state = 2}, - [1241] = {.lex_state = 578}, - [1242] = {.lex_state = 609}, - [1243] = {.lex_state = 578}, - [1244] = {.lex_state = 578}, - [1245] = {.lex_state = 578}, - [1246] = {.lex_state = 578}, - [1247] = {.lex_state = 578}, - [1248] = {.lex_state = 578}, - [1249] = {.lex_state = 578}, - [1250] = {.lex_state = 578}, - [1251] = {.lex_state = 578}, - [1252] = {.lex_state = 31, .external_lex_state = 2}, - [1253] = {.lex_state = 578}, - [1254] = {.lex_state = 578}, - [1255] = {.lex_state = 578}, - [1256] = {.lex_state = 50, .external_lex_state = 2}, - [1257] = {.lex_state = 50, .external_lex_state = 2}, - [1258] = {.lex_state = 50, .external_lex_state = 2}, - [1259] = {.lex_state = 50, .external_lex_state = 2}, - [1260] = {.lex_state = 46, .external_lex_state = 2}, - [1261] = {.lex_state = 578}, - [1262] = {.lex_state = 578}, - [1263] = {.lex_state = 578}, - [1264] = {.lex_state = 578}, - [1265] = {.lex_state = 578}, - [1266] = {.lex_state = 578}, - [1267] = {.lex_state = 578}, - [1268] = {.lex_state = 578}, - [1269] = {.lex_state = 578}, - [1270] = {.lex_state = 578}, - [1271] = {.lex_state = 578}, - [1272] = {.lex_state = 578}, - [1273] = {.lex_state = 578}, - [1274] = {.lex_state = 578}, - [1275] = {.lex_state = 622, .external_lex_state = 2}, - [1276] = {.lex_state = 578}, - [1277] = {.lex_state = 578}, - [1278] = {.lex_state = 578}, - [1279] = {.lex_state = 578}, - [1280] = {.lex_state = 578}, - [1281] = {.lex_state = 578}, - [1282] = {.lex_state = 578}, - [1283] = {.lex_state = 578}, - [1284] = {.lex_state = 578}, - [1285] = {.lex_state = 578}, - [1286] = {.lex_state = 578}, - [1287] = {.lex_state = 45, .external_lex_state = 2}, - [1288] = {.lex_state = 578}, - [1289] = {.lex_state = 578}, - [1290] = {.lex_state = 578}, - [1291] = {.lex_state = 45, .external_lex_state = 2}, - [1292] = {.lex_state = 578}, - [1293] = {.lex_state = 578}, - [1294] = {.lex_state = 578}, - [1295] = {.lex_state = 578}, - [1296] = {.lex_state = 578}, - [1297] = {.lex_state = 578}, - [1298] = {.lex_state = 578}, - [1299] = {.lex_state = 578}, - [1300] = {.lex_state = 578}, - [1301] = {.lex_state = 578}, - [1302] = {.lex_state = 578}, - [1303] = {.lex_state = 578}, - [1304] = {.lex_state = 578}, - [1305] = {.lex_state = 578}, - [1306] = {.lex_state = 578}, - [1307] = {.lex_state = 578}, - [1308] = {.lex_state = 578}, - [1309] = {.lex_state = 578}, - [1310] = {.lex_state = 578}, - [1311] = {.lex_state = 578}, - [1312] = {.lex_state = 578}, - [1313] = {.lex_state = 578}, - [1314] = {.lex_state = 578}, - [1315] = {.lex_state = 578}, - [1316] = {.lex_state = 578}, - [1317] = {.lex_state = 578}, - [1318] = {.lex_state = 578}, - [1319] = {.lex_state = 578}, - [1320] = {.lex_state = 578}, - [1321] = {.lex_state = 578}, - [1322] = {.lex_state = 578}, - [1323] = {.lex_state = 578}, - [1324] = {.lex_state = 578}, - [1325] = {.lex_state = 578}, - [1326] = {.lex_state = 578}, - [1327] = {.lex_state = 578}, - [1328] = {.lex_state = 622, .external_lex_state = 2}, - [1329] = {.lex_state = 45, .external_lex_state = 2}, - [1330] = {.lex_state = 578}, - [1331] = {.lex_state = 45, .external_lex_state = 2}, - [1332] = {.lex_state = 578}, - [1333] = {.lex_state = 578}, - [1334] = {.lex_state = 578}, - [1335] = {.lex_state = 578}, - [1336] = {.lex_state = 578}, - [1337] = {.lex_state = 578}, - [1338] = {.lex_state = 622, .external_lex_state = 2}, - [1339] = {.lex_state = 578}, - [1340] = {.lex_state = 578}, - [1341] = {.lex_state = 578}, - [1342] = {.lex_state = 578}, - [1343] = {.lex_state = 578}, - [1344] = {.lex_state = 578}, - [1345] = {.lex_state = 578}, - [1346] = {.lex_state = 174, .external_lex_state = 2}, - [1347] = {.lex_state = 46, .external_lex_state = 2}, - [1348] = {.lex_state = 175, .external_lex_state = 2}, - [1349] = {.lex_state = 175, .external_lex_state = 2}, - [1350] = {.lex_state = 29, .external_lex_state = 2}, - [1351] = {.lex_state = 45, .external_lex_state = 2}, - [1352] = {.lex_state = 45, .external_lex_state = 2}, - [1353] = {.lex_state = 45, .external_lex_state = 2}, - [1354] = {.lex_state = 29, .external_lex_state = 2}, - [1355] = {.lex_state = 622, .external_lex_state = 2}, - [1356] = {.lex_state = 29, .external_lex_state = 2}, - [1357] = {.lex_state = 29, .external_lex_state = 2}, - [1358] = {.lex_state = 629, .external_lex_state = 2}, - [1359] = {.lex_state = 622, .external_lex_state = 2}, - [1360] = {.lex_state = 46, .external_lex_state = 2}, - [1361] = {.lex_state = 46, .external_lex_state = 2}, - [1362] = {.lex_state = 148, .external_lex_state = 2}, - [1363] = {.lex_state = 622, .external_lex_state = 2}, - [1364] = {.lex_state = 622, .external_lex_state = 2}, - [1365] = {.lex_state = 148, .external_lex_state = 2}, - [1366] = {.lex_state = 29, .external_lex_state = 2}, - [1367] = {.lex_state = 622, .external_lex_state = 2}, - [1368] = {.lex_state = 622, .external_lex_state = 2}, - [1369] = {.lex_state = 622, .external_lex_state = 2}, - [1370] = {.lex_state = 622, .external_lex_state = 2}, - [1371] = {.lex_state = 622, .external_lex_state = 2}, - [1372] = {.lex_state = 46, .external_lex_state = 2}, - [1373] = {.lex_state = 148, .external_lex_state = 2}, - [1374] = {.lex_state = 148, .external_lex_state = 2}, - [1375] = {.lex_state = 148, .external_lex_state = 2}, - [1376] = {.lex_state = 622, .external_lex_state = 2}, - [1377] = {.lex_state = 622, .external_lex_state = 2}, - [1378] = {.lex_state = 622, .external_lex_state = 2}, - [1379] = {.lex_state = 582}, - [1380] = {.lex_state = 622, .external_lex_state = 2}, - [1381] = {.lex_state = 29, .external_lex_state = 2}, - [1382] = {.lex_state = 622, .external_lex_state = 2}, - [1383] = {.lex_state = 622, .external_lex_state = 2}, - [1384] = {.lex_state = 622, .external_lex_state = 2}, - [1385] = {.lex_state = 622, .external_lex_state = 2}, - [1386] = {.lex_state = 582}, + [399] = {.lex_state = 585}, + [400] = {.lex_state = 579}, + [401] = {.lex_state = 580}, + [402] = {.lex_state = 580}, + [403] = {.lex_state = 585}, + [404] = {.lex_state = 583}, + [405] = {.lex_state = 583}, + [406] = {.lex_state = 583}, + [407] = {.lex_state = 579}, + [408] = {.lex_state = 583}, + [409] = {.lex_state = 583}, + [410] = {.lex_state = 583}, + [411] = {.lex_state = 580}, + [412] = {.lex_state = 579}, + [413] = {.lex_state = 580}, + [414] = {.lex_state = 580}, + [415] = {.lex_state = 585}, + [416] = {.lex_state = 580}, + [417] = {.lex_state = 583}, + [418] = {.lex_state = 580}, + [419] = {.lex_state = 580}, + [420] = {.lex_state = 580}, + [421] = {.lex_state = 580}, + [422] = {.lex_state = 579}, + [423] = {.lex_state = 579}, + [424] = {.lex_state = 585}, + [425] = {.lex_state = 587}, + [426] = {.lex_state = 591}, + [427] = {.lex_state = 579}, + [428] = {.lex_state = 580}, + [429] = {.lex_state = 580}, + [430] = {.lex_state = 583}, + [431] = {.lex_state = 580}, + [432] = {.lex_state = 579}, + [433] = {.lex_state = 580}, + [434] = {.lex_state = 579}, + [435] = {.lex_state = 583}, + [436] = {.lex_state = 595}, + [437] = {.lex_state = 591}, + [438] = {.lex_state = 583}, + [439] = {.lex_state = 579}, + [440] = {.lex_state = 583}, + [441] = {.lex_state = 583}, + [442] = {.lex_state = 583}, + [443] = {.lex_state = 583}, + [444] = {.lex_state = 579}, + [445] = {.lex_state = 580}, + [446] = {.lex_state = 580}, + [447] = {.lex_state = 597}, + [448] = {.lex_state = 579}, + [449] = {.lex_state = 589}, + [450] = {.lex_state = 593}, + [451] = {.lex_state = 587}, + [452] = {.lex_state = 579}, + [453] = {.lex_state = 593}, + [454] = {.lex_state = 580}, + [455] = {.lex_state = 580}, + [456] = {.lex_state = 49, .external_lex_state = 2}, + [457] = {.lex_state = 580}, + [458] = {.lex_state = 49, .external_lex_state = 2}, + [459] = {.lex_state = 595}, + [460] = {.lex_state = 49, .external_lex_state = 2}, + [461] = {.lex_state = 49, .external_lex_state = 2}, + [462] = {.lex_state = 53, .external_lex_state = 2}, + [463] = {.lex_state = 599}, + [464] = {.lex_state = 49, .external_lex_state = 2}, + [465] = {.lex_state = 579}, + [466] = {.lex_state = 593}, + [467] = {.lex_state = 49, .external_lex_state = 2}, + [468] = {.lex_state = 595}, + [469] = {.lex_state = 595}, + [470] = {.lex_state = 595}, + [471] = {.lex_state = 49, .external_lex_state = 2}, + [472] = {.lex_state = 593}, + [473] = {.lex_state = 579}, + [474] = {.lex_state = 599}, + [475] = {.lex_state = 601}, + [476] = {.lex_state = 580}, + [477] = {.lex_state = 580}, + [478] = {.lex_state = 580}, + [479] = {.lex_state = 580}, + [480] = {.lex_state = 601}, + [481] = {.lex_state = 580}, + [482] = {.lex_state = 595}, + [483] = {.lex_state = 580}, + [484] = {.lex_state = 580}, + [485] = {.lex_state = 580}, + [486] = {.lex_state = 580}, + [487] = {.lex_state = 595}, + [488] = {.lex_state = 601}, + [489] = {.lex_state = 580}, + [490] = {.lex_state = 580}, + [491] = {.lex_state = 595}, + [492] = {.lex_state = 580}, + [493] = {.lex_state = 49, .external_lex_state = 2}, + [494] = {.lex_state = 580}, + [495] = {.lex_state = 580}, + [496] = {.lex_state = 580}, + [497] = {.lex_state = 580}, + [498] = {.lex_state = 589}, + [499] = {.lex_state = 580}, + [500] = {.lex_state = 580}, + [501] = {.lex_state = 580}, + [502] = {.lex_state = 597}, + [503] = {.lex_state = 50, .external_lex_state = 2}, + [504] = {.lex_state = 50, .external_lex_state = 2}, + [505] = {.lex_state = 50, .external_lex_state = 2}, + [506] = {.lex_state = 50, .external_lex_state = 2}, + [507] = {.lex_state = 50, .external_lex_state = 2}, + [508] = {.lex_state = 50, .external_lex_state = 2}, + [509] = {.lex_state = 599}, + [510] = {.lex_state = 49, .external_lex_state = 2}, + [511] = {.lex_state = 50, .external_lex_state = 2}, + [512] = {.lex_state = 50, .external_lex_state = 2}, + [513] = {.lex_state = 50, .external_lex_state = 2}, + [514] = {.lex_state = 50, .external_lex_state = 2}, + [515] = {.lex_state = 50, .external_lex_state = 2}, + [516] = {.lex_state = 50, .external_lex_state = 2}, + [517] = {.lex_state = 50, .external_lex_state = 2}, + [518] = {.lex_state = 50, .external_lex_state = 2}, + [519] = {.lex_state = 50, .external_lex_state = 2}, + [520] = {.lex_state = 50, .external_lex_state = 2}, + [521] = {.lex_state = 50, .external_lex_state = 2}, + [522] = {.lex_state = 50, .external_lex_state = 2}, + [523] = {.lex_state = 50, .external_lex_state = 2}, + [524] = {.lex_state = 50, .external_lex_state = 2}, + [525] = {.lex_state = 580}, + [526] = {.lex_state = 49, .external_lex_state = 2}, + [527] = {.lex_state = 599}, + [528] = {.lex_state = 613}, + [529] = {.lex_state = 53, .external_lex_state = 2}, + [530] = {.lex_state = 53, .external_lex_state = 2}, + [531] = {.lex_state = 50, .external_lex_state = 2}, + [532] = {.lex_state = 50, .external_lex_state = 2}, + [533] = {.lex_state = 50, .external_lex_state = 2}, + [534] = {.lex_state = 50, .external_lex_state = 2}, + [535] = {.lex_state = 50, .external_lex_state = 2}, + [536] = {.lex_state = 50, .external_lex_state = 2}, + [537] = {.lex_state = 50, .external_lex_state = 2}, + [538] = {.lex_state = 50, .external_lex_state = 2}, + [539] = {.lex_state = 50, .external_lex_state = 2}, + [540] = {.lex_state = 50, .external_lex_state = 2}, + [541] = {.lex_state = 50, .external_lex_state = 2}, + [542] = {.lex_state = 50, .external_lex_state = 2}, + [543] = {.lex_state = 601}, + [544] = {.lex_state = 601}, + [545] = {.lex_state = 580}, + [546] = {.lex_state = 53, .external_lex_state = 2}, + [547] = {.lex_state = 50, .external_lex_state = 2}, + [548] = {.lex_state = 50, .external_lex_state = 2}, + [549] = {.lex_state = 50, .external_lex_state = 2}, + [550] = {.lex_state = 50, .external_lex_state = 2}, + [551] = {.lex_state = 50, .external_lex_state = 2}, + [552] = {.lex_state = 50, .external_lex_state = 2}, + [553] = {.lex_state = 50, .external_lex_state = 2}, + [554] = {.lex_state = 50, .external_lex_state = 2}, + [555] = {.lex_state = 50, .external_lex_state = 2}, + [556] = {.lex_state = 50, .external_lex_state = 2}, + [557] = {.lex_state = 50, .external_lex_state = 2}, + [558] = {.lex_state = 50, .external_lex_state = 2}, + [559] = {.lex_state = 50, .external_lex_state = 2}, + [560] = {.lex_state = 50, .external_lex_state = 2}, + [561] = {.lex_state = 50, .external_lex_state = 2}, + [562] = {.lex_state = 50, .external_lex_state = 2}, + [563] = {.lex_state = 50, .external_lex_state = 2}, + [564] = {.lex_state = 50, .external_lex_state = 2}, + [565] = {.lex_state = 50, .external_lex_state = 2}, + [566] = {.lex_state = 50, .external_lex_state = 2}, + [567] = {.lex_state = 50, .external_lex_state = 2}, + [568] = {.lex_state = 50, .external_lex_state = 2}, + [569] = {.lex_state = 50, .external_lex_state = 2}, + [570] = {.lex_state = 50, .external_lex_state = 2}, + [571] = {.lex_state = 50, .external_lex_state = 2}, + [572] = {.lex_state = 50, .external_lex_state = 2}, + [573] = {.lex_state = 50, .external_lex_state = 2}, + [574] = {.lex_state = 50, .external_lex_state = 2}, + [575] = {.lex_state = 50, .external_lex_state = 2}, + [576] = {.lex_state = 50, .external_lex_state = 2}, + [577] = {.lex_state = 50, .external_lex_state = 2}, + [578] = {.lex_state = 50, .external_lex_state = 2}, + [579] = {.lex_state = 50, .external_lex_state = 2}, + [580] = {.lex_state = 50, .external_lex_state = 2}, + [581] = {.lex_state = 50, .external_lex_state = 2}, + [582] = {.lex_state = 50, .external_lex_state = 2}, + [583] = {.lex_state = 50, .external_lex_state = 2}, + [584] = {.lex_state = 50, .external_lex_state = 2}, + [585] = {.lex_state = 50, .external_lex_state = 2}, + [586] = {.lex_state = 50, .external_lex_state = 2}, + [587] = {.lex_state = 50, .external_lex_state = 2}, + [588] = {.lex_state = 50, .external_lex_state = 2}, + [589] = {.lex_state = 50, .external_lex_state = 2}, + [590] = {.lex_state = 50, .external_lex_state = 2}, + [591] = {.lex_state = 50, .external_lex_state = 2}, + [592] = {.lex_state = 50, .external_lex_state = 2}, + [593] = {.lex_state = 50, .external_lex_state = 2}, + [594] = {.lex_state = 50, .external_lex_state = 2}, + [595] = {.lex_state = 50, .external_lex_state = 2}, + [596] = {.lex_state = 50, .external_lex_state = 2}, + [597] = {.lex_state = 50, .external_lex_state = 2}, + [598] = {.lex_state = 50, .external_lex_state = 2}, + [599] = {.lex_state = 50, .external_lex_state = 2}, + [600] = {.lex_state = 50, .external_lex_state = 2}, + [601] = {.lex_state = 50, .external_lex_state = 2}, + [602] = {.lex_state = 50, .external_lex_state = 2}, + [603] = {.lex_state = 50, .external_lex_state = 2}, + [604] = {.lex_state = 50, .external_lex_state = 2}, + [605] = {.lex_state = 50, .external_lex_state = 2}, + [606] = {.lex_state = 50, .external_lex_state = 2}, + [607] = {.lex_state = 50, .external_lex_state = 2}, + [608] = {.lex_state = 50, .external_lex_state = 2}, + [609] = {.lex_state = 50, .external_lex_state = 2}, + [610] = {.lex_state = 50, .external_lex_state = 2}, + [611] = {.lex_state = 50, .external_lex_state = 2}, + [612] = {.lex_state = 50, .external_lex_state = 2}, + [613] = {.lex_state = 50, .external_lex_state = 2}, + [614] = {.lex_state = 50, .external_lex_state = 2}, + [615] = {.lex_state = 50, .external_lex_state = 2}, + [616] = {.lex_state = 50, .external_lex_state = 2}, + [617] = {.lex_state = 50, .external_lex_state = 2}, + [618] = {.lex_state = 50, .external_lex_state = 2}, + [619] = {.lex_state = 50, .external_lex_state = 2}, + [620] = {.lex_state = 50, .external_lex_state = 2}, + [621] = {.lex_state = 50, .external_lex_state = 2}, + [622] = {.lex_state = 50, .external_lex_state = 2}, + [623] = {.lex_state = 50, .external_lex_state = 2}, + [624] = {.lex_state = 50, .external_lex_state = 2}, + [625] = {.lex_state = 50, .external_lex_state = 2}, + [626] = {.lex_state = 50, .external_lex_state = 2}, + [627] = {.lex_state = 50, .external_lex_state = 2}, + [628] = {.lex_state = 50, .external_lex_state = 2}, + [629] = {.lex_state = 50, .external_lex_state = 2}, + [630] = {.lex_state = 50, .external_lex_state = 2}, + [631] = {.lex_state = 50, .external_lex_state = 2}, + [632] = {.lex_state = 50, .external_lex_state = 2}, + [633] = {.lex_state = 50, .external_lex_state = 2}, + [634] = {.lex_state = 50, .external_lex_state = 2}, + [635] = {.lex_state = 50, .external_lex_state = 2}, + [636] = {.lex_state = 50, .external_lex_state = 2}, + [637] = {.lex_state = 50, .external_lex_state = 2}, + [638] = {.lex_state = 50, .external_lex_state = 2}, + [639] = {.lex_state = 50, .external_lex_state = 2}, + [640] = {.lex_state = 50, .external_lex_state = 2}, + [641] = {.lex_state = 50, .external_lex_state = 2}, + [642] = {.lex_state = 50, .external_lex_state = 2}, + [643] = {.lex_state = 50, .external_lex_state = 2}, + [644] = {.lex_state = 50, .external_lex_state = 2}, + [645] = {.lex_state = 50, .external_lex_state = 2}, + [646] = {.lex_state = 50, .external_lex_state = 2}, + [647] = {.lex_state = 50, .external_lex_state = 2}, + [648] = {.lex_state = 50, .external_lex_state = 2}, + [649] = {.lex_state = 50, .external_lex_state = 2}, + [650] = {.lex_state = 50, .external_lex_state = 2}, + [651] = {.lex_state = 50, .external_lex_state = 2}, + [652] = {.lex_state = 50, .external_lex_state = 2}, + [653] = {.lex_state = 50, .external_lex_state = 2}, + [654] = {.lex_state = 50, .external_lex_state = 2}, + [655] = {.lex_state = 50, .external_lex_state = 2}, + [656] = {.lex_state = 50, .external_lex_state = 2}, + [657] = {.lex_state = 50, .external_lex_state = 2}, + [658] = {.lex_state = 50, .external_lex_state = 2}, + [659] = {.lex_state = 50, .external_lex_state = 2}, + [660] = {.lex_state = 50, .external_lex_state = 2}, + [661] = {.lex_state = 50, .external_lex_state = 2}, + [662] = {.lex_state = 50, .external_lex_state = 2}, + [663] = {.lex_state = 50, .external_lex_state = 2}, + [664] = {.lex_state = 50, .external_lex_state = 2}, + [665] = {.lex_state = 50, .external_lex_state = 2}, + [666] = {.lex_state = 50, .external_lex_state = 2}, + [667] = {.lex_state = 50, .external_lex_state = 2}, + [668] = {.lex_state = 50, .external_lex_state = 2}, + [669] = {.lex_state = 50, .external_lex_state = 2}, + [670] = {.lex_state = 50, .external_lex_state = 2}, + [671] = {.lex_state = 580}, + [672] = {.lex_state = 580}, + [673] = {.lex_state = 580}, + [674] = {.lex_state = 580}, + [675] = {.lex_state = 580}, + [676] = {.lex_state = 580}, + [677] = {.lex_state = 580}, + [678] = {.lex_state = 580}, + [679] = {.lex_state = 580}, + [680] = {.lex_state = 580}, + [681] = {.lex_state = 580}, + [682] = {.lex_state = 580}, + [683] = {.lex_state = 580}, + [684] = {.lex_state = 580}, + [685] = {.lex_state = 580}, + [686] = {.lex_state = 580}, + [687] = {.lex_state = 601}, + [688] = {.lex_state = 601}, + [689] = {.lex_state = 601}, + [690] = {.lex_state = 580}, + [691] = {.lex_state = 580}, + [692] = {.lex_state = 580}, + [693] = {.lex_state = 580}, + [694] = {.lex_state = 580}, + [695] = {.lex_state = 580}, + [696] = {.lex_state = 580}, + [697] = {.lex_state = 613}, + [698] = {.lex_state = 601}, + [699] = {.lex_state = 580}, + [700] = {.lex_state = 580}, + [701] = {.lex_state = 580}, + [702] = {.lex_state = 580}, + [703] = {.lex_state = 580}, + [704] = {.lex_state = 580}, + [705] = {.lex_state = 580}, + [706] = {.lex_state = 580}, + [707] = {.lex_state = 601}, + [708] = {.lex_state = 605}, + [709] = {.lex_state = 580}, + [710] = {.lex_state = 603}, + [711] = {.lex_state = 580}, + [712] = {.lex_state = 580}, + [713] = {.lex_state = 50, .external_lex_state = 2}, + [714] = {.lex_state = 50, .external_lex_state = 2}, + [715] = {.lex_state = 50, .external_lex_state = 2}, + [716] = {.lex_state = 50, .external_lex_state = 2}, + [717] = {.lex_state = 580}, + [718] = {.lex_state = 580}, + [719] = {.lex_state = 49, .external_lex_state = 2}, + [720] = {.lex_state = 49, .external_lex_state = 2}, + [721] = {.lex_state = 580}, + [722] = {.lex_state = 580}, + [723] = {.lex_state = 580}, + [724] = {.lex_state = 580}, + [725] = {.lex_state = 580}, + [726] = {.lex_state = 613}, + [727] = {.lex_state = 580}, + [728] = {.lex_state = 580}, + [729] = {.lex_state = 580}, + [730] = {.lex_state = 45, .external_lex_state = 2}, + [731] = {.lex_state = 580}, + [732] = {.lex_state = 580}, + [733] = {.lex_state = 580}, + [734] = {.lex_state = 580}, + [735] = {.lex_state = 580}, + [736] = {.lex_state = 580}, + [737] = {.lex_state = 580}, + [738] = {.lex_state = 580}, + [739] = {.lex_state = 580}, + [740] = {.lex_state = 580}, + [741] = {.lex_state = 49, .external_lex_state = 2}, + [742] = {.lex_state = 605}, + [743] = {.lex_state = 580}, + [744] = {.lex_state = 580}, + [745] = {.lex_state = 580}, + [746] = {.lex_state = 580}, + [747] = {.lex_state = 603}, + [748] = {.lex_state = 49, .external_lex_state = 2}, + [749] = {.lex_state = 49, .external_lex_state = 2}, + [750] = {.lex_state = 607}, + [751] = {.lex_state = 607}, + [752] = {.lex_state = 580}, + [753] = {.lex_state = 45, .external_lex_state = 2}, + [754] = {.lex_state = 50, .external_lex_state = 2}, + [755] = {.lex_state = 50, .external_lex_state = 2}, + [756] = {.lex_state = 50, .external_lex_state = 2}, + [757] = {.lex_state = 50, .external_lex_state = 2}, + [758] = {.lex_state = 50, .external_lex_state = 2}, + [759] = {.lex_state = 50, .external_lex_state = 2}, + [760] = {.lex_state = 50, .external_lex_state = 2}, + [761] = {.lex_state = 50, .external_lex_state = 2}, + [762] = {.lex_state = 50, .external_lex_state = 2}, + [763] = {.lex_state = 50, .external_lex_state = 2}, + [764] = {.lex_state = 50, .external_lex_state = 2}, + [765] = {.lex_state = 50, .external_lex_state = 2}, + [766] = {.lex_state = 50, .external_lex_state = 2}, + [767] = {.lex_state = 580}, + [768] = {.lex_state = 609}, + [769] = {.lex_state = 580}, + [770] = {.lex_state = 580}, + [771] = {.lex_state = 580}, + [772] = {.lex_state = 580}, + [773] = {.lex_state = 49, .external_lex_state = 2}, + [774] = {.lex_state = 580}, + [775] = {.lex_state = 50, .external_lex_state = 2}, + [776] = {.lex_state = 50, .external_lex_state = 2}, + [777] = {.lex_state = 50, .external_lex_state = 2}, + [778] = {.lex_state = 50, .external_lex_state = 2}, + [779] = {.lex_state = 50, .external_lex_state = 2}, + [780] = {.lex_state = 50, .external_lex_state = 2}, + [781] = {.lex_state = 50, .external_lex_state = 2}, + [782] = {.lex_state = 50, .external_lex_state = 2}, + [783] = {.lex_state = 50, .external_lex_state = 2}, + [784] = {.lex_state = 50, .external_lex_state = 2}, + [785] = {.lex_state = 50, .external_lex_state = 2}, + [786] = {.lex_state = 50, .external_lex_state = 2}, + [787] = {.lex_state = 50, .external_lex_state = 2}, + [788] = {.lex_state = 580}, + [789] = {.lex_state = 45, .external_lex_state = 2}, + [790] = {.lex_state = 50, .external_lex_state = 2}, + [791] = {.lex_state = 580}, + [792] = {.lex_state = 580}, + [793] = {.lex_state = 580}, + [794] = {.lex_state = 50, .external_lex_state = 2}, + [795] = {.lex_state = 580}, + [796] = {.lex_state = 580}, + [797] = {.lex_state = 580}, + [798] = {.lex_state = 50, .external_lex_state = 2}, + [799] = {.lex_state = 580}, + [800] = {.lex_state = 580}, + [801] = {.lex_state = 580}, + [802] = {.lex_state = 580}, + [803] = {.lex_state = 50, .external_lex_state = 2}, + [804] = {.lex_state = 50, .external_lex_state = 2}, + [805] = {.lex_state = 50, .external_lex_state = 2}, + [806] = {.lex_state = 50, .external_lex_state = 2}, + [807] = {.lex_state = 50, .external_lex_state = 2}, + [808] = {.lex_state = 50, .external_lex_state = 2}, + [809] = {.lex_state = 50, .external_lex_state = 2}, + [810] = {.lex_state = 50, .external_lex_state = 2}, + [811] = {.lex_state = 50, .external_lex_state = 2}, + [812] = {.lex_state = 50, .external_lex_state = 2}, + [813] = {.lex_state = 50, .external_lex_state = 2}, + [814] = {.lex_state = 50, .external_lex_state = 2}, + [815] = {.lex_state = 50, .external_lex_state = 2}, + [816] = {.lex_state = 580}, + [817] = {.lex_state = 580}, + [818] = {.lex_state = 580}, + [819] = {.lex_state = 580}, + [820] = {.lex_state = 580}, + [821] = {.lex_state = 580}, + [822] = {.lex_state = 580}, + [823] = {.lex_state = 580}, + [824] = {.lex_state = 580}, + [825] = {.lex_state = 580}, + [826] = {.lex_state = 580}, + [827] = {.lex_state = 580}, + [828] = {.lex_state = 580}, + [829] = {.lex_state = 580}, + [830] = {.lex_state = 50, .external_lex_state = 2}, + [831] = {.lex_state = 50, .external_lex_state = 2}, + [832] = {.lex_state = 50, .external_lex_state = 2}, + [833] = {.lex_state = 580}, + [834] = {.lex_state = 50, .external_lex_state = 2}, + [835] = {.lex_state = 50, .external_lex_state = 2}, + [836] = {.lex_state = 50, .external_lex_state = 2}, + [837] = {.lex_state = 580}, + [838] = {.lex_state = 580}, + [839] = {.lex_state = 580}, + [840] = {.lex_state = 580}, + [841] = {.lex_state = 580}, + [842] = {.lex_state = 50, .external_lex_state = 2}, + [843] = {.lex_state = 50, .external_lex_state = 2}, + [844] = {.lex_state = 50, .external_lex_state = 2}, + [845] = {.lex_state = 50, .external_lex_state = 2}, + [846] = {.lex_state = 580}, + [847] = {.lex_state = 580}, + [848] = {.lex_state = 580}, + [849] = {.lex_state = 580}, + [850] = {.lex_state = 580}, + [851] = {.lex_state = 50, .external_lex_state = 2}, + [852] = {.lex_state = 50, .external_lex_state = 2}, + [853] = {.lex_state = 50, .external_lex_state = 2}, + [854] = {.lex_state = 50, .external_lex_state = 2}, + [855] = {.lex_state = 50, .external_lex_state = 2}, + [856] = {.lex_state = 50, .external_lex_state = 2}, + [857] = {.lex_state = 50, .external_lex_state = 2}, + [858] = {.lex_state = 50, .external_lex_state = 2}, + [859] = {.lex_state = 50, .external_lex_state = 2}, + [860] = {.lex_state = 50, .external_lex_state = 2}, + [861] = {.lex_state = 50, .external_lex_state = 2}, + [862] = {.lex_state = 50, .external_lex_state = 2}, + [863] = {.lex_state = 50, .external_lex_state = 2}, + [864] = {.lex_state = 580}, + [865] = {.lex_state = 580}, + [866] = {.lex_state = 580}, + [867] = {.lex_state = 580}, + [868] = {.lex_state = 580}, + [869] = {.lex_state = 580}, + [870] = {.lex_state = 580}, + [871] = {.lex_state = 580}, + [872] = {.lex_state = 580}, + [873] = {.lex_state = 580}, + [874] = {.lex_state = 50, .external_lex_state = 2}, + [875] = {.lex_state = 580}, + [876] = {.lex_state = 580}, + [877] = {.lex_state = 580}, + [878] = {.lex_state = 580}, + [879] = {.lex_state = 580}, + [880] = {.lex_state = 580}, + [881] = {.lex_state = 580}, + [882] = {.lex_state = 580}, + [883] = {.lex_state = 580}, + [884] = {.lex_state = 50, .external_lex_state = 2}, + [885] = {.lex_state = 50, .external_lex_state = 2}, + [886] = {.lex_state = 580}, + [887] = {.lex_state = 50, .external_lex_state = 2}, + [888] = {.lex_state = 580}, + [889] = {.lex_state = 50, .external_lex_state = 2}, + [890] = {.lex_state = 50, .external_lex_state = 2}, + [891] = {.lex_state = 50, .external_lex_state = 2}, + [892] = {.lex_state = 50, .external_lex_state = 2}, + [893] = {.lex_state = 50, .external_lex_state = 2}, + [894] = {.lex_state = 580}, + [895] = {.lex_state = 580}, + [896] = {.lex_state = 580}, + [897] = {.lex_state = 580}, + [898] = {.lex_state = 580}, + [899] = {.lex_state = 580}, + [900] = {.lex_state = 580}, + [901] = {.lex_state = 580}, + [902] = {.lex_state = 580}, + [903] = {.lex_state = 609}, + [904] = {.lex_state = 580}, + [905] = {.lex_state = 580}, + [906] = {.lex_state = 580}, + [907] = {.lex_state = 609}, + [908] = {.lex_state = 580}, + [909] = {.lex_state = 580}, + [910] = {.lex_state = 580}, + [911] = {.lex_state = 580}, + [912] = {.lex_state = 580}, + [913] = {.lex_state = 580}, + [914] = {.lex_state = 609}, + [915] = {.lex_state = 609}, + [916] = {.lex_state = 580}, + [917] = {.lex_state = 55, .external_lex_state = 2}, + [918] = {.lex_state = 580}, + [919] = {.lex_state = 609}, + [920] = {.lex_state = 580}, + [921] = {.lex_state = 607}, + [922] = {.lex_state = 609}, + [923] = {.lex_state = 609}, + [924] = {.lex_state = 609}, + [925] = {.lex_state = 45, .external_lex_state = 2}, + [926] = {.lex_state = 580}, + [927] = {.lex_state = 609}, + [928] = {.lex_state = 45, .external_lex_state = 2}, + [929] = {.lex_state = 580}, + [930] = {.lex_state = 580}, + [931] = {.lex_state = 580}, + [932] = {.lex_state = 580}, + [933] = {.lex_state = 580}, + [934] = {.lex_state = 580}, + [935] = {.lex_state = 580}, + [936] = {.lex_state = 580}, + [937] = {.lex_state = 580}, + [938] = {.lex_state = 580}, + [939] = {.lex_state = 580}, + [940] = {.lex_state = 609}, + [941] = {.lex_state = 580}, + [942] = {.lex_state = 580}, + [943] = {.lex_state = 580}, + [944] = {.lex_state = 580}, + [945] = {.lex_state = 607}, + [946] = {.lex_state = 580}, + [947] = {.lex_state = 580}, + [948] = {.lex_state = 580}, + [949] = {.lex_state = 609}, + [950] = {.lex_state = 580}, + [951] = {.lex_state = 580}, + [952] = {.lex_state = 580}, + [953] = {.lex_state = 580}, + [954] = {.lex_state = 580}, + [955] = {.lex_state = 580}, + [956] = {.lex_state = 580}, + [957] = {.lex_state = 580}, + [958] = {.lex_state = 580}, + [959] = {.lex_state = 580}, + [960] = {.lex_state = 580}, + [961] = {.lex_state = 55, .external_lex_state = 2}, + [962] = {.lex_state = 55, .external_lex_state = 2}, + [963] = {.lex_state = 609}, + [964] = {.lex_state = 580}, + [965] = {.lex_state = 580}, + [966] = {.lex_state = 580}, + [967] = {.lex_state = 580}, + [968] = {.lex_state = 580}, + [969] = {.lex_state = 580}, + [970] = {.lex_state = 580}, + [971] = {.lex_state = 580}, + [972] = {.lex_state = 580}, + [973] = {.lex_state = 580}, + [974] = {.lex_state = 580}, + [975] = {.lex_state = 580}, + [976] = {.lex_state = 580}, + [977] = {.lex_state = 580}, + [978] = {.lex_state = 580}, + [979] = {.lex_state = 580}, + [980] = {.lex_state = 580}, + [981] = {.lex_state = 580}, + [982] = {.lex_state = 580}, + [983] = {.lex_state = 580}, + [984] = {.lex_state = 580}, + [985] = {.lex_state = 609}, + [986] = {.lex_state = 609}, + [987] = {.lex_state = 609}, + [988] = {.lex_state = 580}, + [989] = {.lex_state = 609}, + [990] = {.lex_state = 609}, + [991] = {.lex_state = 609}, + [992] = {.lex_state = 609}, + [993] = {.lex_state = 609}, + [994] = {.lex_state = 609}, + [995] = {.lex_state = 609}, + [996] = {.lex_state = 580}, + [997] = {.lex_state = 580}, + [998] = {.lex_state = 580}, + [999] = {.lex_state = 624, .external_lex_state = 2}, + [1000] = {.lex_state = 580}, + [1001] = {.lex_state = 580}, + [1002] = {.lex_state = 580}, + [1003] = {.lex_state = 580}, + [1004] = {.lex_state = 580}, + [1005] = {.lex_state = 45, .external_lex_state = 2}, + [1006] = {.lex_state = 580}, + [1007] = {.lex_state = 580}, + [1008] = {.lex_state = 609}, + [1009] = {.lex_state = 580}, + [1010] = {.lex_state = 580}, + [1011] = {.lex_state = 580}, + [1012] = {.lex_state = 609}, + [1013] = {.lex_state = 580}, + [1014] = {.lex_state = 580}, + [1015] = {.lex_state = 609}, + [1016] = {.lex_state = 609}, + [1017] = {.lex_state = 580}, + [1018] = {.lex_state = 580}, + [1019] = {.lex_state = 580}, + [1020] = {.lex_state = 580}, + [1021] = {.lex_state = 580}, + [1022] = {.lex_state = 580}, + [1023] = {.lex_state = 580}, + [1024] = {.lex_state = 580}, + [1025] = {.lex_state = 580}, + [1026] = {.lex_state = 50, .external_lex_state = 2}, + [1027] = {.lex_state = 50, .external_lex_state = 2}, + [1028] = {.lex_state = 50, .external_lex_state = 2}, + [1029] = {.lex_state = 580}, + [1030] = {.lex_state = 580}, + [1031] = {.lex_state = 580}, + [1032] = {.lex_state = 580}, + [1033] = {.lex_state = 45, .external_lex_state = 2}, + [1034] = {.lex_state = 45, .external_lex_state = 2}, + [1035] = {.lex_state = 580}, + [1036] = {.lex_state = 580}, + [1037] = {.lex_state = 580}, + [1038] = {.lex_state = 580}, + [1039] = {.lex_state = 580}, + [1040] = {.lex_state = 580}, + [1041] = {.lex_state = 580}, + [1042] = {.lex_state = 580}, + [1043] = {.lex_state = 580}, + [1044] = {.lex_state = 580}, + [1045] = {.lex_state = 580}, + [1046] = {.lex_state = 580}, + [1047] = {.lex_state = 55, .external_lex_state = 2}, + [1048] = {.lex_state = 55, .external_lex_state = 2}, + [1049] = {.lex_state = 580}, + [1050] = {.lex_state = 580}, + [1051] = {.lex_state = 580}, + [1052] = {.lex_state = 624, .external_lex_state = 2}, + [1053] = {.lex_state = 580}, + [1054] = {.lex_state = 580}, + [1055] = {.lex_state = 580}, + [1056] = {.lex_state = 580}, + [1057] = {.lex_state = 38, .external_lex_state = 2}, + [1058] = {.lex_state = 580}, + [1059] = {.lex_state = 580}, + [1060] = {.lex_state = 580}, + [1061] = {.lex_state = 580}, + [1062] = {.lex_state = 580}, + [1063] = {.lex_state = 580}, + [1064] = {.lex_state = 580}, + [1065] = {.lex_state = 580}, + [1066] = {.lex_state = 580}, + [1067] = {.lex_state = 580}, + [1068] = {.lex_state = 580}, + [1069] = {.lex_state = 580}, + [1070] = {.lex_state = 580}, + [1071] = {.lex_state = 611}, + [1072] = {.lex_state = 611}, + [1073] = {.lex_state = 611}, + [1074] = {.lex_state = 580}, + [1075] = {.lex_state = 580}, + [1076] = {.lex_state = 580}, + [1077] = {.lex_state = 580}, + [1078] = {.lex_state = 580}, + [1079] = {.lex_state = 611}, + [1080] = {.lex_state = 580}, + [1081] = {.lex_state = 613}, + [1082] = {.lex_state = 580}, + [1083] = {.lex_state = 580}, + [1084] = {.lex_state = 580}, + [1085] = {.lex_state = 580}, + [1086] = {.lex_state = 38, .external_lex_state = 2}, + [1087] = {.lex_state = 580}, + [1088] = {.lex_state = 580}, + [1089] = {.lex_state = 580}, + [1090] = {.lex_state = 580}, + [1091] = {.lex_state = 580}, + [1092] = {.lex_state = 45, .external_lex_state = 2}, + [1093] = {.lex_state = 580}, + [1094] = {.lex_state = 50, .external_lex_state = 2}, + [1095] = {.lex_state = 50, .external_lex_state = 2}, + [1096] = {.lex_state = 50, .external_lex_state = 2}, + [1097] = {.lex_state = 580}, + [1098] = {.lex_state = 580}, + [1099] = {.lex_state = 580}, + [1100] = {.lex_state = 580}, + [1101] = {.lex_state = 580}, + [1102] = {.lex_state = 580}, + [1103] = {.lex_state = 580}, + [1104] = {.lex_state = 580}, + [1105] = {.lex_state = 580}, + [1106] = {.lex_state = 580}, + [1107] = {.lex_state = 580}, + [1108] = {.lex_state = 580}, + [1109] = {.lex_state = 580}, + [1110] = {.lex_state = 580}, + [1111] = {.lex_state = 580}, + [1112] = {.lex_state = 580}, + [1113] = {.lex_state = 580}, + [1114] = {.lex_state = 580}, + [1115] = {.lex_state = 580}, + [1116] = {.lex_state = 580}, + [1117] = {.lex_state = 580}, + [1118] = {.lex_state = 580}, + [1119] = {.lex_state = 580}, + [1120] = {.lex_state = 580}, + [1121] = {.lex_state = 580}, + [1122] = {.lex_state = 580}, + [1123] = {.lex_state = 580}, + [1124] = {.lex_state = 580}, + [1125] = {.lex_state = 38, .external_lex_state = 2}, + [1126] = {.lex_state = 580}, + [1127] = {.lex_state = 580}, + [1128] = {.lex_state = 624, .external_lex_state = 2}, + [1129] = {.lex_state = 580}, + [1130] = {.lex_state = 580}, + [1131] = {.lex_state = 580}, + [1132] = {.lex_state = 580}, + [1133] = {.lex_state = 580}, + [1134] = {.lex_state = 580}, + [1135] = {.lex_state = 580}, + [1136] = {.lex_state = 580}, + [1137] = {.lex_state = 580}, + [1138] = {.lex_state = 580}, + [1139] = {.lex_state = 580}, + [1140] = {.lex_state = 609}, + [1141] = {.lex_state = 55, .external_lex_state = 2}, + [1142] = {.lex_state = 55, .external_lex_state = 2}, + [1143] = {.lex_state = 611}, + [1144] = {.lex_state = 580}, + [1145] = {.lex_state = 580}, + [1146] = {.lex_state = 611}, + [1147] = {.lex_state = 580}, + [1148] = {.lex_state = 580}, + [1149] = {.lex_state = 626, .external_lex_state = 2}, + [1150] = {.lex_state = 37, .external_lex_state = 2}, + [1151] = {.lex_state = 37, .external_lex_state = 2}, + [1152] = {.lex_state = 580}, + [1153] = {.lex_state = 580}, + [1154] = {.lex_state = 580}, + [1155] = {.lex_state = 580}, + [1156] = {.lex_state = 580}, + [1157] = {.lex_state = 580}, + [1158] = {.lex_state = 37, .external_lex_state = 2}, + [1159] = {.lex_state = 580}, + [1160] = {.lex_state = 580}, + [1161] = {.lex_state = 580}, + [1162] = {.lex_state = 37, .external_lex_state = 2}, + [1163] = {.lex_state = 580}, + [1164] = {.lex_state = 580}, + [1165] = {.lex_state = 580}, + [1166] = {.lex_state = 580}, + [1167] = {.lex_state = 580}, + [1168] = {.lex_state = 580}, + [1169] = {.lex_state = 580}, + [1170] = {.lex_state = 580}, + [1171] = {.lex_state = 580}, + [1172] = {.lex_state = 580}, + [1173] = {.lex_state = 580}, + [1174] = {.lex_state = 580}, + [1175] = {.lex_state = 580}, + [1176] = {.lex_state = 580}, + [1177] = {.lex_state = 580}, + [1178] = {.lex_state = 580}, + [1179] = {.lex_state = 580}, + [1180] = {.lex_state = 580}, + [1181] = {.lex_state = 580}, + [1182] = {.lex_state = 580}, + [1183] = {.lex_state = 580}, + [1184] = {.lex_state = 580}, + [1185] = {.lex_state = 580}, + [1186] = {.lex_state = 580}, + [1187] = {.lex_state = 580}, + [1188] = {.lex_state = 580}, + [1189] = {.lex_state = 580}, + [1190] = {.lex_state = 580}, + [1191] = {.lex_state = 580}, + [1192] = {.lex_state = 580}, + [1193] = {.lex_state = 611}, + [1194] = {.lex_state = 611}, + [1195] = {.lex_state = 580}, + [1196] = {.lex_state = 580}, + [1197] = {.lex_state = 580}, + [1198] = {.lex_state = 580}, + [1199] = {.lex_state = 580}, + [1200] = {.lex_state = 580}, + [1201] = {.lex_state = 580}, + [1202] = {.lex_state = 55, .external_lex_state = 2}, + [1203] = {.lex_state = 580}, + [1204] = {.lex_state = 580}, + [1205] = {.lex_state = 580}, + [1206] = {.lex_state = 580}, + [1207] = {.lex_state = 55, .external_lex_state = 2}, + [1208] = {.lex_state = 611}, + [1209] = {.lex_state = 580}, + [1210] = {.lex_state = 580}, + [1211] = {.lex_state = 580}, + [1212] = {.lex_state = 580}, + [1213] = {.lex_state = 580}, + [1214] = {.lex_state = 580}, + [1215] = {.lex_state = 580}, + [1216] = {.lex_state = 580}, + [1217] = {.lex_state = 580}, + [1218] = {.lex_state = 580}, + [1219] = {.lex_state = 580}, + [1220] = {.lex_state = 580}, + [1221] = {.lex_state = 580}, + [1222] = {.lex_state = 580}, + [1223] = {.lex_state = 580}, + [1224] = {.lex_state = 580}, + [1225] = {.lex_state = 580}, + [1226] = {.lex_state = 580}, + [1227] = {.lex_state = 580}, + [1228] = {.lex_state = 580}, + [1229] = {.lex_state = 580}, + [1230] = {.lex_state = 580}, + [1231] = {.lex_state = 55, .external_lex_state = 2}, + [1232] = {.lex_state = 580}, + [1233] = {.lex_state = 580}, + [1234] = {.lex_state = 580}, + [1235] = {.lex_state = 580}, + [1236] = {.lex_state = 580}, + [1237] = {.lex_state = 580}, + [1238] = {.lex_state = 580}, + [1239] = {.lex_state = 580}, + [1240] = {.lex_state = 580}, + [1241] = {.lex_state = 580}, + [1242] = {.lex_state = 580}, + [1243] = {.lex_state = 580}, + [1244] = {.lex_state = 580}, + [1245] = {.lex_state = 580}, + [1246] = {.lex_state = 580}, + [1247] = {.lex_state = 580}, + [1248] = {.lex_state = 580}, + [1249] = {.lex_state = 580}, + [1250] = {.lex_state = 580}, + [1251] = {.lex_state = 580}, + [1252] = {.lex_state = 580}, + [1253] = {.lex_state = 580}, + [1254] = {.lex_state = 580}, + [1255] = {.lex_state = 580}, + [1256] = {.lex_state = 580}, + [1257] = {.lex_state = 580}, + [1258] = {.lex_state = 580}, + [1259] = {.lex_state = 55, .external_lex_state = 2}, + [1260] = {.lex_state = 55, .external_lex_state = 2}, + [1261] = {.lex_state = 580}, + [1262] = {.lex_state = 54, .external_lex_state = 2}, + [1263] = {.lex_state = 580}, + [1264] = {.lex_state = 580}, + [1265] = {.lex_state = 580}, + [1266] = {.lex_state = 580}, + [1267] = {.lex_state = 580}, + [1268] = {.lex_state = 580}, + [1269] = {.lex_state = 580}, + [1270] = {.lex_state = 580}, + [1271] = {.lex_state = 580}, + [1272] = {.lex_state = 580}, + [1273] = {.lex_state = 580}, + [1274] = {.lex_state = 580}, + [1275] = {.lex_state = 580}, + [1276] = {.lex_state = 580}, + [1277] = {.lex_state = 580}, + [1278] = {.lex_state = 580}, + [1279] = {.lex_state = 580}, + [1280] = {.lex_state = 580}, + [1281] = {.lex_state = 580}, + [1282] = {.lex_state = 580}, + [1283] = {.lex_state = 580}, + [1284] = {.lex_state = 580}, + [1285] = {.lex_state = 580}, + [1286] = {.lex_state = 580}, + [1287] = {.lex_state = 580}, + [1288] = {.lex_state = 580}, + [1289] = {.lex_state = 580}, + [1290] = {.lex_state = 580}, + [1291] = {.lex_state = 580}, + [1292] = {.lex_state = 580}, + [1293] = {.lex_state = 580}, + [1294] = {.lex_state = 580}, + [1295] = {.lex_state = 580}, + [1296] = {.lex_state = 580}, + [1297] = {.lex_state = 580}, + [1298] = {.lex_state = 580}, + [1299] = {.lex_state = 580}, + [1300] = {.lex_state = 580}, + [1301] = {.lex_state = 580}, + [1302] = {.lex_state = 580}, + [1303] = {.lex_state = 580}, + [1304] = {.lex_state = 580}, + [1305] = {.lex_state = 580}, + [1306] = {.lex_state = 580}, + [1307] = {.lex_state = 580}, + [1308] = {.lex_state = 580}, + [1309] = {.lex_state = 54, .external_lex_state = 2}, + [1310] = {.lex_state = 580}, + [1311] = {.lex_state = 580}, + [1312] = {.lex_state = 580}, + [1313] = {.lex_state = 580}, + [1314] = {.lex_state = 624, .external_lex_state = 2}, + [1315] = {.lex_state = 580}, + [1316] = {.lex_state = 580}, + [1317] = {.lex_state = 580}, + [1318] = {.lex_state = 580}, + [1319] = {.lex_state = 580}, + [1320] = {.lex_state = 580}, + [1321] = {.lex_state = 580}, + [1322] = {.lex_state = 580}, + [1323] = {.lex_state = 580}, + [1324] = {.lex_state = 580}, + [1325] = {.lex_state = 580}, + [1326] = {.lex_state = 580}, + [1327] = {.lex_state = 580}, + [1328] = {.lex_state = 580}, + [1329] = {.lex_state = 580}, + [1330] = {.lex_state = 580}, + [1331] = {.lex_state = 54, .external_lex_state = 2}, + [1332] = {.lex_state = 54, .external_lex_state = 2}, + [1333] = {.lex_state = 624, .external_lex_state = 2}, + [1334] = {.lex_state = 580}, + [1335] = {.lex_state = 580}, + [1336] = {.lex_state = 580}, + [1337] = {.lex_state = 580}, + [1338] = {.lex_state = 580}, + [1339] = {.lex_state = 580}, + [1340] = {.lex_state = 580}, + [1341] = {.lex_state = 580}, + [1342] = {.lex_state = 624, .external_lex_state = 2}, + [1343] = {.lex_state = 580}, + [1344] = {.lex_state = 580}, + [1345] = {.lex_state = 179, .external_lex_state = 2}, + [1346] = {.lex_state = 37, .external_lex_state = 2}, + [1347] = {.lex_state = 40, .external_lex_state = 2}, + [1348] = {.lex_state = 180, .external_lex_state = 2}, + [1349] = {.lex_state = 40, .external_lex_state = 2}, + [1350] = {.lex_state = 40, .external_lex_state = 2}, + [1351] = {.lex_state = 54, .external_lex_state = 2}, + [1352] = {.lex_state = 180, .external_lex_state = 2}, + [1353] = {.lex_state = 54, .external_lex_state = 2}, + [1354] = {.lex_state = 40, .external_lex_state = 2}, + [1355] = {.lex_state = 54, .external_lex_state = 2}, + [1356] = {.lex_state = 624, .external_lex_state = 2}, + [1357] = {.lex_state = 624, .external_lex_state = 2}, + [1358] = {.lex_state = 624, .external_lex_state = 2}, + [1359] = {.lex_state = 37, .external_lex_state = 2}, + [1360] = {.lex_state = 624, .external_lex_state = 2}, + [1361] = {.lex_state = 37, .external_lex_state = 2}, + [1362] = {.lex_state = 157, .external_lex_state = 2}, + [1363] = {.lex_state = 37, .external_lex_state = 2}, + [1364] = {.lex_state = 157, .external_lex_state = 2}, + [1365] = {.lex_state = 624, .external_lex_state = 2}, + [1366] = {.lex_state = 40, .external_lex_state = 2}, + [1367] = {.lex_state = 624, .external_lex_state = 2}, + [1368] = {.lex_state = 157, .external_lex_state = 2}, + [1369] = {.lex_state = 624, .external_lex_state = 2}, + [1370] = {.lex_state = 633, .external_lex_state = 2}, + [1371] = {.lex_state = 157, .external_lex_state = 2}, + [1372] = {.lex_state = 624, .external_lex_state = 2}, + [1373] = {.lex_state = 624, .external_lex_state = 2}, + [1374] = {.lex_state = 157, .external_lex_state = 2}, + [1375] = {.lex_state = 624, .external_lex_state = 2}, + [1376] = {.lex_state = 624, .external_lex_state = 2}, + [1377] = {.lex_state = 624, .external_lex_state = 2}, + [1378] = {.lex_state = 40, .external_lex_state = 2}, + [1379] = {.lex_state = 624, .external_lex_state = 2}, + [1380] = {.lex_state = 624, .external_lex_state = 2}, + [1381] = {.lex_state = 624, .external_lex_state = 2}, + [1382] = {.lex_state = 584}, + [1383] = {.lex_state = 624, .external_lex_state = 2}, + [1384] = {.lex_state = 624, .external_lex_state = 2}, + [1385] = {.lex_state = 586}, + [1386] = {.lex_state = 624, .external_lex_state = 2}, [1387] = {.lex_state = 584}, - [1388] = {.lex_state = 584}, - [1389] = {.lex_state = 622, .external_lex_state = 2}, - [1390] = {.lex_state = 34, .external_lex_state = 2}, - [1391] = {.lex_state = 622, .external_lex_state = 2}, - [1392] = {.lex_state = 34, .external_lex_state = 2}, - [1393] = {.lex_state = 622, .external_lex_state = 2}, - [1394] = {.lex_state = 47, .external_lex_state = 2}, - [1395] = {.lex_state = 33, .external_lex_state = 2}, - [1396] = {.lex_state = 584}, - [1397] = {.lex_state = 584}, - [1398] = {.lex_state = 33, .external_lex_state = 2}, - [1399] = {.lex_state = 622, .external_lex_state = 2}, + [1388] = {.lex_state = 43, .external_lex_state = 2}, + [1389] = {.lex_state = 586}, + [1390] = {.lex_state = 43, .external_lex_state = 2}, + [1391] = {.lex_state = 624, .external_lex_state = 2}, + [1392] = {.lex_state = 42, .external_lex_state = 2}, + [1393] = {.lex_state = 42, .external_lex_state = 2}, + [1394] = {.lex_state = 592}, + [1395] = {.lex_state = 588}, + [1396] = {.lex_state = 38, .external_lex_state = 2}, + [1397] = {.lex_state = 624, .external_lex_state = 2}, + [1398] = {.lex_state = 586}, + [1399] = {.lex_state = 624, .external_lex_state = 2}, [1400] = {.lex_state = 586}, - [1401] = {.lex_state = 590}, - [1402] = {.lex_state = 590}, - [1403] = {.lex_state = 592}, - [1404] = {.lex_state = 33, .external_lex_state = 2}, - [1405] = {.lex_state = 34, .external_lex_state = 2}, + [1401] = {.lex_state = 42, .external_lex_state = 2}, + [1402] = {.lex_state = 592}, + [1403] = {.lex_state = 42, .external_lex_state = 2}, + [1404] = {.lex_state = 43, .external_lex_state = 2}, + [1405] = {.lex_state = 596}, [1406] = {.lex_state = 594}, - [1407] = {.lex_state = 33, .external_lex_state = 2}, - [1408] = {.lex_state = 586}, - [1409] = {.lex_state = 33, .external_lex_state = 2}, - [1410] = {.lex_state = 592}, - [1411] = {.lex_state = 33, .external_lex_state = 2}, - [1412] = {.lex_state = 47, .external_lex_state = 2}, - [1413] = {.lex_state = 592}, - [1414] = {.lex_state = 588}, - [1415] = {.lex_state = 594}, - [1416] = {.lex_state = 34, .external_lex_state = 2}, - [1417] = {.lex_state = 158, .external_lex_state = 2}, - [1418] = {.lex_state = 47, .external_lex_state = 2}, + [1407] = {.lex_state = 42, .external_lex_state = 2}, + [1408] = {.lex_state = 594}, + [1409] = {.lex_state = 588}, + [1410] = {.lex_state = 155, .external_lex_state = 2}, + [1411] = {.lex_state = 598}, + [1412] = {.lex_state = 38, .external_lex_state = 2}, + [1413] = {.lex_state = 43, .external_lex_state = 2}, + [1414] = {.lex_state = 590}, + [1415] = {.lex_state = 155, .external_lex_state = 2}, + [1416] = {.lex_state = 594}, + [1417] = {.lex_state = 38, .external_lex_state = 2}, + [1418] = {.lex_state = 596}, [1419] = {.lex_state = 596}, - [1420] = {.lex_state = 158, .external_lex_state = 2}, - [1421] = {.lex_state = 594}, - [1422] = {.lex_state = 592}, + [1420] = {.lex_state = 596}, + [1421] = {.lex_state = 38, .external_lex_state = 2}, + [1422] = {.lex_state = 42, .external_lex_state = 2}, [1423] = {.lex_state = 594}, - [1424] = {.lex_state = 47, .external_lex_state = 2}, - [1425] = {.lex_state = 594}, - [1426] = {.lex_state = 596}, - [1427] = {.lex_state = 588}, - [1428] = {.lex_state = 594}, - [1429] = {.lex_state = 598}, - [1430] = {.lex_state = 594}, - [1431] = {.lex_state = 598}, - [1432] = {.lex_state = 594}, - [1433] = {.lex_state = 600}, + [1424] = {.lex_state = 596}, + [1425] = {.lex_state = 600}, + [1426] = {.lex_state = 590}, + [1427] = {.lex_state = 596}, + [1428] = {.lex_state = 600}, + [1429] = {.lex_state = 596}, + [1430] = {.lex_state = 598}, + [1431] = {.lex_state = 596}, + [1432] = {.lex_state = 600}, + [1433] = {.lex_state = 602}, [1434] = {.lex_state = 600}, - [1435] = {.lex_state = 600}, - [1436] = {.lex_state = 600}, - [1437] = {.lex_state = 600}, - [1438] = {.lex_state = 598}, - [1439] = {.lex_state = 598}, - [1440] = {.lex_state = 602}, - [1441] = {.lex_state = 600}, - [1442] = {.lex_state = 604}, - [1443] = {.lex_state = 600}, - [1444] = {.lex_state = 600}, - [1445] = {.lex_state = 625, .external_lex_state = 2}, - [1446] = {.lex_state = 578}, - [1447] = {.lex_state = 625, .external_lex_state = 2}, - [1448] = {.lex_state = 600}, - [1449] = {.lex_state = 600}, - [1450] = {.lex_state = 578}, - [1451] = {.lex_state = 606}, + [1435] = {.lex_state = 602}, + [1436] = {.lex_state = 602}, + [1437] = {.lex_state = 602}, + [1438] = {.lex_state = 602}, + [1439] = {.lex_state = 604}, + [1440] = {.lex_state = 580}, + [1441] = {.lex_state = 602}, + [1442] = {.lex_state = 602}, + [1443] = {.lex_state = 602}, + [1444] = {.lex_state = 629, .external_lex_state = 2}, + [1445] = {.lex_state = 629, .external_lex_state = 2}, + [1446] = {.lex_state = 602}, + [1447] = {.lex_state = 606}, + [1448] = {.lex_state = 602}, + [1449] = {.lex_state = 629, .external_lex_state = 2}, + [1450] = {.lex_state = 629, .external_lex_state = 2}, + [1451] = {.lex_state = 46, .external_lex_state = 2}, [1452] = {.lex_state = 606}, - [1453] = {.lex_state = 37, .external_lex_state = 2}, - [1454] = {.lex_state = 37, .external_lex_state = 2}, - [1455] = {.lex_state = 625, .external_lex_state = 2}, - [1456] = {.lex_state = 604}, - [1457] = {.lex_state = 37, .external_lex_state = 2}, - [1458] = {.lex_state = 625, .external_lex_state = 2}, - [1459] = {.lex_state = 602}, - [1460] = {.lex_state = 608}, - [1461] = {.lex_state = 608}, - [1462] = {.lex_state = 608}, - [1463] = {.lex_state = 608}, - [1464] = {.lex_state = 149, .external_lex_state = 2}, - [1465] = {.lex_state = 608}, - [1466] = {.lex_state = 149, .external_lex_state = 2}, - [1467] = {.lex_state = 149, .external_lex_state = 2}, - [1468] = {.lex_state = 149, .external_lex_state = 2}, - [1469] = {.lex_state = 149, .external_lex_state = 2}, - [1470] = {.lex_state = 608}, - [1471] = {.lex_state = 608}, - [1472] = {.lex_state = 608}, - [1473] = {.lex_state = 149, .external_lex_state = 2}, - [1474] = {.lex_state = 149, .external_lex_state = 2}, - [1475] = {.lex_state = 149, .external_lex_state = 2}, - [1476] = {.lex_state = 606}, - [1477] = {.lex_state = 608}, - [1478] = {.lex_state = 149, .external_lex_state = 2}, - [1479] = {.lex_state = 608}, - [1480] = {.lex_state = 149, .external_lex_state = 2}, - [1481] = {.lex_state = 606}, - [1482] = {.lex_state = 608}, - [1483] = {.lex_state = 149, .external_lex_state = 2}, - [1484] = {.lex_state = 149, .external_lex_state = 2}, - [1485] = {.lex_state = 149, .external_lex_state = 2}, - [1486] = {.lex_state = 608}, - [1487] = {.lex_state = 608}, - [1488] = {.lex_state = 610}, - [1489] = {.lex_state = 149, .external_lex_state = 2}, - [1490] = {.lex_state = 608}, - [1491] = {.lex_state = 149, .external_lex_state = 2}, - [1492] = {.lex_state = 608}, + [1453] = {.lex_state = 608}, + [1454] = {.lex_state = 604}, + [1455] = {.lex_state = 580}, + [1456] = {.lex_state = 46, .external_lex_state = 2}, + [1457] = {.lex_state = 608}, + [1458] = {.lex_state = 46, .external_lex_state = 2}, + [1459] = {.lex_state = 158, .external_lex_state = 2}, + [1460] = {.lex_state = 610}, + [1461] = {.lex_state = 158, .external_lex_state = 2}, + [1462] = {.lex_state = 158, .external_lex_state = 2}, + [1463] = {.lex_state = 158, .external_lex_state = 2}, + [1464] = {.lex_state = 610}, + [1465] = {.lex_state = 610}, + [1466] = {.lex_state = 610}, + [1467] = {.lex_state = 158, .external_lex_state = 2}, + [1468] = {.lex_state = 610}, + [1469] = {.lex_state = 158, .external_lex_state = 2}, + [1470] = {.lex_state = 610}, + [1471] = {.lex_state = 158, .external_lex_state = 2}, + [1472] = {.lex_state = 158, .external_lex_state = 2}, + [1473] = {.lex_state = 158, .external_lex_state = 2}, + [1474] = {.lex_state = 610}, + [1475] = {.lex_state = 610}, + [1476] = {.lex_state = 158, .external_lex_state = 2}, + [1477] = {.lex_state = 610}, + [1478] = {.lex_state = 610}, + [1479] = {.lex_state = 610}, + [1480] = {.lex_state = 608}, + [1481] = {.lex_state = 610}, + [1482] = {.lex_state = 158, .external_lex_state = 2}, + [1483] = {.lex_state = 608}, + [1484] = {.lex_state = 158, .external_lex_state = 2}, + [1485] = {.lex_state = 610}, + [1486] = {.lex_state = 158, .external_lex_state = 2}, + [1487] = {.lex_state = 610}, + [1488] = {.lex_state = 612}, + [1489] = {.lex_state = 610}, + [1490] = {.lex_state = 158, .external_lex_state = 2}, + [1491] = {.lex_state = 610}, + [1492] = {.lex_state = 610}, [1493] = {.lex_state = 610}, - [1494] = {.lex_state = 608}, - [1495] = {.lex_state = 608}, - [1496] = {.lex_state = 149, .external_lex_state = 2}, - [1497] = {.lex_state = 608}, - [1498] = {.lex_state = 40, .external_lex_state = 2}, - [1499] = {.lex_state = 608}, - [1500] = {.lex_state = 608}, - [1501] = {.lex_state = 608}, - [1502] = {.lex_state = 608}, - [1503] = {.lex_state = 608}, - [1504] = {.lex_state = 608}, - [1505] = {.lex_state = 608}, - [1506] = {.lex_state = 608}, - [1507] = {.lex_state = 608}, - [1508] = {.lex_state = 610}, - [1509] = {.lex_state = 89}, - [1510] = {.lex_state = 578}, - [1511] = {.lex_state = 610}, - [1512] = {.lex_state = 610}, - [1513] = {.lex_state = 89}, - [1514] = {.lex_state = 89}, - [1515] = {.lex_state = 40, .external_lex_state = 2}, - [1516] = {.lex_state = 89}, - [1517] = {.lex_state = 89}, - [1518] = {.lex_state = 610}, - [1519] = {.lex_state = 6}, - [1520] = {.lex_state = 608}, - [1521] = {.lex_state = 89}, - [1522] = {.lex_state = 89}, - [1523] = {.lex_state = 89}, - [1524] = {.lex_state = 89}, - [1525] = {.lex_state = 179, .external_lex_state = 2}, - [1526] = {.lex_state = 89}, - [1527] = {.lex_state = 89}, - [1528] = {.lex_state = 89}, - [1529] = {.lex_state = 89}, - [1530] = {.lex_state = 37, .external_lex_state = 2}, - [1531] = {.lex_state = 89}, - [1532] = {.lex_state = 89}, - [1533] = {.lex_state = 89}, - [1534] = {.lex_state = 89}, - [1535] = {.lex_state = 89}, - [1536] = {.lex_state = 89}, - [1537] = {.lex_state = 37, .external_lex_state = 2}, - [1538] = {.lex_state = 89}, - [1539] = {.lex_state = 89}, - [1540] = {.lex_state = 89}, - [1541] = {.lex_state = 89}, - [1542] = {.lex_state = 89}, - [1543] = {.lex_state = 89}, - [1544] = {.lex_state = 89}, - [1545] = {.lex_state = 89}, - [1546] = {.lex_state = 89}, - [1547] = {.lex_state = 89}, - [1548] = {.lex_state = 89}, - [1549] = {.lex_state = 89}, - [1550] = {.lex_state = 37, .external_lex_state = 2}, - [1551] = {.lex_state = 89}, - [1552] = {.lex_state = 89}, - [1553] = {.lex_state = 89}, - [1554] = {.lex_state = 89}, - [1555] = {.lex_state = 89}, - [1556] = {.lex_state = 89}, - [1557] = {.lex_state = 89}, - [1558] = {.lex_state = 89}, - [1559] = {.lex_state = 89}, - [1560] = {.lex_state = 89}, - [1561] = {.lex_state = 89}, - [1562] = {.lex_state = 89}, - [1563] = {.lex_state = 37, .external_lex_state = 2}, - [1564] = {.lex_state = 578}, - [1565] = {.lex_state = 578}, - [1566] = {.lex_state = 578}, - [1567] = {.lex_state = 578}, - [1568] = {.lex_state = 578}, - [1569] = {.lex_state = 578}, - [1570] = {.lex_state = 578}, - [1571] = {.lex_state = 578}, - [1572] = {.lex_state = 578}, - [1573] = {.lex_state = 578}, - [1574] = {.lex_state = 578}, - [1575] = {.lex_state = 578}, - [1576] = {.lex_state = 89}, - [1577] = {.lex_state = 37, .external_lex_state = 2}, - [1578] = {.lex_state = 578}, - [1579] = {.lex_state = 578}, - [1580] = {.lex_state = 578}, - [1581] = {.lex_state = 578}, - [1582] = {.lex_state = 578}, - [1583] = {.lex_state = 578}, - [1584] = {.lex_state = 578}, - [1585] = {.lex_state = 578}, - [1586] = {.lex_state = 578}, - [1587] = {.lex_state = 578}, - [1588] = {.lex_state = 578}, - [1589] = {.lex_state = 578}, - [1590] = {.lex_state = 578}, - [1591] = {.lex_state = 578}, - [1592] = {.lex_state = 578}, - [1593] = {.lex_state = 578}, - [1594] = {.lex_state = 578}, - [1595] = {.lex_state = 578}, - [1596] = {.lex_state = 578}, - [1597] = {.lex_state = 578}, - [1598] = {.lex_state = 578}, - [1599] = {.lex_state = 578}, - [1600] = {.lex_state = 578}, - [1601] = {.lex_state = 578}, - [1602] = {.lex_state = 578}, - [1603] = {.lex_state = 578}, - [1604] = {.lex_state = 89}, - [1605] = {.lex_state = 578}, - [1606] = {.lex_state = 578}, - [1607] = {.lex_state = 578}, - [1608] = {.lex_state = 578}, - [1609] = {.lex_state = 578}, - [1610] = {.lex_state = 578}, - [1611] = {.lex_state = 578}, - [1612] = {.lex_state = 578}, - [1613] = {.lex_state = 578}, - [1614] = {.lex_state = 578}, - [1615] = {.lex_state = 578}, - [1616] = {.lex_state = 578}, - [1617] = {.lex_state = 578}, - [1618] = {.lex_state = 578}, - [1619] = {.lex_state = 578}, - [1620] = {.lex_state = 578}, - [1621] = {.lex_state = 578}, - [1622] = {.lex_state = 578}, - [1623] = {.lex_state = 578}, - [1624] = {.lex_state = 578}, - [1625] = {.lex_state = 578}, - [1626] = {.lex_state = 578}, - [1627] = {.lex_state = 578}, - [1628] = {.lex_state = 578}, - [1629] = {.lex_state = 578}, - [1630] = {.lex_state = 578}, - [1631] = {.lex_state = 578}, - [1632] = {.lex_state = 578}, - [1633] = {.lex_state = 578}, - [1634] = {.lex_state = 578}, - [1635] = {.lex_state = 578}, - [1636] = {.lex_state = 578}, - [1637] = {.lex_state = 578}, - [1638] = {.lex_state = 578}, - [1639] = {.lex_state = 578}, - [1640] = {.lex_state = 578}, - [1641] = {.lex_state = 578}, - [1642] = {.lex_state = 578}, - [1643] = {.lex_state = 578}, - [1644] = {.lex_state = 578}, - [1645] = {.lex_state = 578}, - [1646] = {.lex_state = 578}, - [1647] = {.lex_state = 578}, - [1648] = {.lex_state = 578}, - [1649] = {.lex_state = 578}, - [1650] = {.lex_state = 578}, - [1651] = {.lex_state = 578}, - [1652] = {.lex_state = 578}, - [1653] = {.lex_state = 578}, - [1654] = {.lex_state = 578}, - [1655] = {.lex_state = 578}, - [1656] = {.lex_state = 578}, - [1657] = {.lex_state = 578}, - [1658] = {.lex_state = 578}, - [1659] = {.lex_state = 578}, - [1660] = {.lex_state = 578}, - [1661] = {.lex_state = 578}, - [1662] = {.lex_state = 89}, - [1663] = {.lex_state = 89}, - [1664] = {.lex_state = 89}, - [1665] = {.lex_state = 578}, - [1666] = {.lex_state = 578}, - [1667] = {.lex_state = 578}, - [1668] = {.lex_state = 578}, - [1669] = {.lex_state = 578}, - [1670] = {.lex_state = 578}, - [1671] = {.lex_state = 578}, - [1672] = {.lex_state = 578}, - [1673] = {.lex_state = 578}, - [1674] = {.lex_state = 578}, - [1675] = {.lex_state = 578}, - [1676] = {.lex_state = 578}, - [1677] = {.lex_state = 37, .external_lex_state = 2}, - [1678] = {.lex_state = 578}, - [1679] = {.lex_state = 7}, - [1680] = {.lex_state = 179, .external_lex_state = 2}, - [1681] = {.lex_state = 578}, - [1682] = {.lex_state = 578}, - [1683] = {.lex_state = 578}, - [1684] = {.lex_state = 578}, - [1685] = {.lex_state = 578}, - [1686] = {.lex_state = 578}, - [1687] = {.lex_state = 578}, - [1688] = {.lex_state = 89}, - [1689] = {.lex_state = 578}, - [1690] = {.lex_state = 578}, - [1691] = {.lex_state = 578}, - [1692] = {.lex_state = 578}, - [1693] = {.lex_state = 578}, - [1694] = {.lex_state = 179, .external_lex_state = 2}, - [1695] = {.lex_state = 132}, - [1696] = {.lex_state = 578}, - [1697] = {.lex_state = 7}, - [1698] = {.lex_state = 37, .external_lex_state = 2}, - [1699] = {.lex_state = 37, .external_lex_state = 2}, - [1700] = {.lex_state = 37, .external_lex_state = 2}, - [1701] = {.lex_state = 37, .external_lex_state = 2}, - [1702] = {.lex_state = 37, .external_lex_state = 2}, - [1703] = {.lex_state = 37, .external_lex_state = 2}, - [1704] = {.lex_state = 8}, - [1705] = {.lex_state = 132}, - [1706] = {.lex_state = 10}, - [1707] = {.lex_state = 133}, - [1708] = {.lex_state = 133}, - [1709] = {.lex_state = 37, .external_lex_state = 2}, - [1710] = {.lex_state = 37, .external_lex_state = 2}, - [1711] = {.lex_state = 132}, - [1712] = {.lex_state = 37, .external_lex_state = 2}, - [1713] = {.lex_state = 37, .external_lex_state = 2}, - [1714] = {.lex_state = 37, .external_lex_state = 2}, - [1715] = {.lex_state = 132}, - [1716] = {.lex_state = 178, .external_lex_state = 2}, - [1717] = {.lex_state = 132}, - [1718] = {.lex_state = 12}, - [1719] = {.lex_state = 89}, - [1720] = {.lex_state = 136}, - [1721] = {.lex_state = 178, .external_lex_state = 2}, - [1722] = {.lex_state = 11}, - [1723] = {.lex_state = 132}, - [1724] = {.lex_state = 178, .external_lex_state = 2}, - [1725] = {.lex_state = 11}, - [1726] = {.lex_state = 89}, - [1727] = {.lex_state = 628, .external_lex_state = 2}, - [1728] = {.lex_state = 132}, - [1729] = {.lex_state = 132}, - [1730] = {.lex_state = 132}, - [1731] = {.lex_state = 89}, - [1732] = {.lex_state = 89}, - [1733] = {.lex_state = 572, .external_lex_state = 2}, - [1734] = {.lex_state = 628, .external_lex_state = 2}, - [1735] = {.lex_state = 628, .external_lex_state = 2}, - [1736] = {.lex_state = 134}, - [1737] = {.lex_state = 89}, - [1738] = {.lex_state = 628, .external_lex_state = 2}, - [1739] = {.lex_state = 138}, - [1740] = {.lex_state = 178, .external_lex_state = 2}, - [1741] = {.lex_state = 628, .external_lex_state = 2}, - [1742] = {.lex_state = 628, .external_lex_state = 2}, - [1743] = {.lex_state = 628, .external_lex_state = 2}, - [1744] = {.lex_state = 167, .external_lex_state = 2}, - [1745] = {.lex_state = 89}, - [1746] = {.lex_state = 89}, - [1747] = {.lex_state = 9}, - [1748] = {.lex_state = 170, .external_lex_state = 2}, - [1749] = {.lex_state = 572, .external_lex_state = 2}, - [1750] = {.lex_state = 572, .external_lex_state = 2}, - [1751] = {.lex_state = 572, .external_lex_state = 2}, - [1752] = {.lex_state = 572, .external_lex_state = 2}, - [1753] = {.lex_state = 178, .external_lex_state = 2}, - [1754] = {.lex_state = 572, .external_lex_state = 2}, - [1755] = {.lex_state = 178, .external_lex_state = 2}, - [1756] = {.lex_state = 178, .external_lex_state = 2}, - [1757] = {.lex_state = 12}, - [1758] = {.lex_state = 89}, - [1759] = {.lex_state = 12}, - [1760] = {.lex_state = 12}, - [1761] = {.lex_state = 137}, - [1762] = {.lex_state = 137}, - [1763] = {.lex_state = 37, .external_lex_state = 2}, - [1764] = {.lex_state = 37, .external_lex_state = 2}, - [1765] = {.lex_state = 13}, - [1766] = {.lex_state = 178, .external_lex_state = 2}, - [1767] = {.lex_state = 178, .external_lex_state = 2}, - [1768] = {.lex_state = 178, .external_lex_state = 2}, - [1769] = {.lex_state = 89}, - [1770] = {.lex_state = 37, .external_lex_state = 2}, - [1771] = {.lex_state = 178, .external_lex_state = 2}, - [1772] = {.lex_state = 572, .external_lex_state = 2}, - [1773] = {.lex_state = 178, .external_lex_state = 2}, - [1774] = {.lex_state = 628, .external_lex_state = 2}, - [1775] = {.lex_state = 178, .external_lex_state = 2}, - [1776] = {.lex_state = 572, .external_lex_state = 2}, - [1777] = {.lex_state = 138}, - [1778] = {.lex_state = 37, .external_lex_state = 2}, - [1779] = {.lex_state = 37, .external_lex_state = 2}, - [1780] = {.lex_state = 572, .external_lex_state = 2}, - [1781] = {.lex_state = 89}, - [1782] = {.lex_state = 89}, - [1783] = {.lex_state = 89}, - [1784] = {.lex_state = 89}, - [1785] = {.lex_state = 37, .external_lex_state = 2}, - [1786] = {.lex_state = 572, .external_lex_state = 2}, - [1787] = {.lex_state = 572, .external_lex_state = 2}, - [1788] = {.lex_state = 89}, - [1789] = {.lex_state = 89}, - [1790] = {.lex_state = 37, .external_lex_state = 2}, - [1791] = {.lex_state = 89}, - [1792] = {.lex_state = 89}, - [1793] = {.lex_state = 89}, - [1794] = {.lex_state = 89}, - [1795] = {.lex_state = 627, .external_lex_state = 2}, - [1796] = {.lex_state = 138}, - [1797] = {.lex_state = 89}, - [1798] = {.lex_state = 138}, - [1799] = {.lex_state = 37, .external_lex_state = 2}, - [1800] = {.lex_state = 572, .external_lex_state = 2}, - [1801] = {.lex_state = 14}, - [1802] = {.lex_state = 572, .external_lex_state = 2}, - [1803] = {.lex_state = 14}, - [1804] = {.lex_state = 139}, - [1805] = {.lex_state = 135}, - [1806] = {.lex_state = 572, .external_lex_state = 2}, - [1807] = {.lex_state = 89}, - [1808] = {.lex_state = 89}, - [1809] = {.lex_state = 37, .external_lex_state = 2}, - [1810] = {.lex_state = 89}, - [1811] = {.lex_state = 89}, - [1812] = {.lex_state = 628, .external_lex_state = 2}, - [1813] = {.lex_state = 628, .external_lex_state = 2}, - [1814] = {.lex_state = 89}, - [1815] = {.lex_state = 89}, - [1816] = {.lex_state = 573, .external_lex_state = 2}, - [1817] = {.lex_state = 37, .external_lex_state = 2}, - [1818] = {.lex_state = 37, .external_lex_state = 2}, - [1819] = {.lex_state = 37, .external_lex_state = 2}, - [1820] = {.lex_state = 37, .external_lex_state = 2}, - [1821] = {.lex_state = 37, .external_lex_state = 2}, - [1822] = {.lex_state = 37, .external_lex_state = 2}, - [1823] = {.lex_state = 169, .external_lex_state = 2}, - [1824] = {.lex_state = 169, .external_lex_state = 2}, - [1825] = {.lex_state = 628, .external_lex_state = 2}, - [1826] = {.lex_state = 15}, - [1827] = {.lex_state = 15}, - [1828] = {.lex_state = 89}, - [1829] = {.lex_state = 15}, - [1830] = {.lex_state = 578}, - [1831] = {.lex_state = 89}, - [1832] = {.lex_state = 627, .external_lex_state = 2}, - [1833] = {.lex_state = 628, .external_lex_state = 2}, - [1834] = {.lex_state = 15}, - [1835] = {.lex_state = 15}, - [1836] = {.lex_state = 140}, - [1837] = {.lex_state = 573, .external_lex_state = 2}, - [1838] = {.lex_state = 89}, - [1839] = {.lex_state = 140}, - [1840] = {.lex_state = 171, .external_lex_state = 2}, - [1841] = {.lex_state = 171, .external_lex_state = 2}, - [1842] = {.lex_state = 171, .external_lex_state = 2}, - [1843] = {.lex_state = 171, .external_lex_state = 2}, - [1844] = {.lex_state = 628, .external_lex_state = 2}, - [1845] = {.lex_state = 625, .external_lex_state = 2}, - [1846] = {.lex_state = 89}, - [1847] = {.lex_state = 141}, - [1848] = {.lex_state = 141}, - [1849] = {.lex_state = 141}, - [1850] = {.lex_state = 141}, - [1851] = {.lex_state = 89}, - [1852] = {.lex_state = 625, .external_lex_state = 2}, - [1853] = {.lex_state = 176, .external_lex_state = 2}, - [1854] = {.lex_state = 625, .external_lex_state = 2}, - [1855] = {.lex_state = 141}, - [1856] = {.lex_state = 625, .external_lex_state = 2}, - [1857] = {.lex_state = 628, .external_lex_state = 2}, - [1858] = {.lex_state = 625, .external_lex_state = 2}, - [1859] = {.lex_state = 1182}, - [1860] = {.lex_state = 625, .external_lex_state = 2}, - [1861] = {.lex_state = 625, .external_lex_state = 2}, - [1862] = {.lex_state = 625, .external_lex_state = 2}, - [1863] = {.lex_state = 89}, - [1864] = {.lex_state = 17}, - [1865] = {.lex_state = 625, .external_lex_state = 2}, - [1866] = {.lex_state = 625, .external_lex_state = 2}, - [1867] = {.lex_state = 628, .external_lex_state = 2}, - [1868] = {.lex_state = 628, .external_lex_state = 2}, - [1869] = {.lex_state = 625, .external_lex_state = 2}, - [1870] = {.lex_state = 625, .external_lex_state = 2}, - [1871] = {.lex_state = 625, .external_lex_state = 2}, - [1872] = {.lex_state = 625, .external_lex_state = 2}, - [1873] = {.lex_state = 625, .external_lex_state = 2}, - [1874] = {.lex_state = 625, .external_lex_state = 2}, - [1875] = {.lex_state = 578}, - [1876] = {.lex_state = 267}, - [1877] = {.lex_state = 89}, - [1878] = {.lex_state = 1180}, - [1879] = {.lex_state = 16}, - [1880] = {.lex_state = 625, .external_lex_state = 2}, - [1881] = {.lex_state = 625, .external_lex_state = 2}, - [1882] = {.lex_state = 127, .external_lex_state = 2}, - [1883] = {.lex_state = 163, .external_lex_state = 2}, - [1884] = {.lex_state = 625, .external_lex_state = 2}, - [1885] = {.lex_state = 625, .external_lex_state = 2}, - [1886] = {.lex_state = 625, .external_lex_state = 2}, - [1887] = {.lex_state = 625, .external_lex_state = 2}, - [1888] = {.lex_state = 163, .external_lex_state = 2}, - [1889] = {.lex_state = 625, .external_lex_state = 2}, - [1890] = {.lex_state = 625, .external_lex_state = 2}, - [1891] = {.lex_state = 625, .external_lex_state = 2}, - [1892] = {.lex_state = 143}, - [1893] = {.lex_state = 1181}, - [1894] = {.lex_state = 163, .external_lex_state = 2}, - [1895] = {.lex_state = 142}, - [1896] = {.lex_state = 625, .external_lex_state = 2}, - [1897] = {.lex_state = 177, .external_lex_state = 2}, - [1898] = {.lex_state = 625, .external_lex_state = 2}, - [1899] = {.lex_state = 18}, - [1900] = {.lex_state = 177, .external_lex_state = 2}, - [1901] = {.lex_state = 163, .external_lex_state = 2}, - [1902] = {.lex_state = 1185}, - [1903] = {.lex_state = 267}, - [1904] = {.lex_state = 18}, - [1905] = {.lex_state = 1183}, - [1906] = {.lex_state = 625, .external_lex_state = 2}, - [1907] = {.lex_state = 625, .external_lex_state = 2}, - [1908] = {.lex_state = 625, .external_lex_state = 2}, - [1909] = {.lex_state = 163, .external_lex_state = 2}, - [1910] = {.lex_state = 625, .external_lex_state = 2}, - [1911] = {.lex_state = 163, .external_lex_state = 2}, - [1912] = {.lex_state = 1183}, - [1913] = {.lex_state = 625, .external_lex_state = 2}, - [1914] = {.lex_state = 625, .external_lex_state = 2}, - [1915] = {.lex_state = 625, .external_lex_state = 2}, - [1916] = {.lex_state = 163, .external_lex_state = 2}, - [1917] = {.lex_state = 144}, - [1918] = {.lex_state = 19}, - [1919] = {.lex_state = 19}, - [1920] = {.lex_state = 19}, - [1921] = {.lex_state = 267}, - [1922] = {.lex_state = 267}, - [1923] = {.lex_state = 267}, - [1924] = {.lex_state = 19}, - [1925] = {.lex_state = 19}, - [1926] = {.lex_state = 267}, - [1927] = {.lex_state = 19}, - [1928] = {.lex_state = 19}, - [1929] = {.lex_state = 144}, - [1930] = {.lex_state = 267}, - [1931] = {.lex_state = 267}, - [1932] = {.lex_state = 19}, - [1933] = {.lex_state = 19}, - [1934] = {.lex_state = 89}, - [1935] = {.lex_state = 267}, - [1936] = {.lex_state = 154, .external_lex_state = 2}, - [1937] = {.lex_state = 1184}, - [1938] = {.lex_state = 267}, - [1939] = {.lex_state = 1186}, - [1940] = {.lex_state = 165, .external_lex_state = 2}, - [1941] = {.lex_state = 127, .external_lex_state = 2}, - [1942] = {.lex_state = 1186}, - [1943] = {.lex_state = 154, .external_lex_state = 2}, - [1944] = {.lex_state = 1184}, - [1945] = {.lex_state = 1184}, - [1946] = {.lex_state = 1184}, - [1947] = {.lex_state = 163, .external_lex_state = 2}, - [1948] = {.lex_state = 163, .external_lex_state = 2}, - [1949] = {.lex_state = 19}, - [1950] = {.lex_state = 19}, - [1951] = {.lex_state = 19}, - [1952] = {.lex_state = 19}, - [1953] = {.lex_state = 127, .external_lex_state = 2}, - [1954] = {.lex_state = 127, .external_lex_state = 2}, - [1955] = {.lex_state = 578}, - [1956] = {.lex_state = 578}, - [1957] = {.lex_state = 578}, - [1958] = {.lex_state = 127, .external_lex_state = 2}, - [1959] = {.lex_state = 578}, - [1960] = {.lex_state = 578}, - [1961] = {.lex_state = 578}, - [1962] = {.lex_state = 578}, - [1963] = {.lex_state = 578}, - [1964] = {.lex_state = 127, .external_lex_state = 2}, - [1965] = {.lex_state = 127, .external_lex_state = 2}, - [1966] = {.lex_state = 578}, - [1967] = {.lex_state = 145}, - [1968] = {.lex_state = 160, .external_lex_state = 2}, - [1969] = {.lex_state = 145}, - [1970] = {.lex_state = 89}, - [1971] = {.lex_state = 145}, - [1972] = {.lex_state = 145}, - [1973] = {.lex_state = 145}, - [1974] = {.lex_state = 145}, - [1975] = {.lex_state = 267}, - [1976] = {.lex_state = 1187}, - [1977] = {.lex_state = 577}, - [1978] = {.lex_state = 145}, - [1979] = {.lex_state = 267}, - [1980] = {.lex_state = 37, .external_lex_state = 2}, - [1981] = {.lex_state = 44, .external_lex_state = 2}, - [1982] = {.lex_state = 578}, - [1983] = {.lex_state = 578}, - [1984] = {.lex_state = 578}, - [1985] = {.lex_state = 578}, - [1986] = {.lex_state = 578}, - [1987] = {.lex_state = 578}, - [1988] = {.lex_state = 578}, - [1989] = {.lex_state = 578}, - [1990] = {.lex_state = 160, .external_lex_state = 2}, - [1991] = {.lex_state = 578}, - [1992] = {.lex_state = 578}, - [1993] = {.lex_state = 578}, - [1994] = {.lex_state = 578}, - [1995] = {.lex_state = 155, .external_lex_state = 2}, - [1996] = {.lex_state = 578}, - [1997] = {.lex_state = 578}, - [1998] = {.lex_state = 578}, - [1999] = {.lex_state = 578}, - [2000] = {.lex_state = 578}, - [2001] = {.lex_state = 578}, - [2002] = {.lex_state = 578}, - [2003] = {.lex_state = 578}, - [2004] = {.lex_state = 578}, - [2005] = {.lex_state = 578}, - [2006] = {.lex_state = 578}, - [2007] = {.lex_state = 578}, - [2008] = {.lex_state = 578}, - [2009] = {.lex_state = 578}, - [2010] = {.lex_state = 578}, - [2011] = {.lex_state = 578}, - [2012] = {.lex_state = 578}, - [2013] = {.lex_state = 578}, - [2014] = {.lex_state = 578}, - [2015] = {.lex_state = 578}, - [2016] = {.lex_state = 578}, - [2017] = {.lex_state = 578}, - [2018] = {.lex_state = 578}, - [2019] = {.lex_state = 578}, - [2020] = {.lex_state = 578}, - [2021] = {.lex_state = 578}, - [2022] = {.lex_state = 578}, - [2023] = {.lex_state = 578}, - [2024] = {.lex_state = 578}, - [2025] = {.lex_state = 578}, - [2026] = {.lex_state = 578}, - [2027] = {.lex_state = 578}, - [2028] = {.lex_state = 578}, - [2029] = {.lex_state = 578}, - [2030] = {.lex_state = 578}, - [2031] = {.lex_state = 578}, - [2032] = {.lex_state = 578}, - [2033] = {.lex_state = 578}, - [2034] = {.lex_state = 578}, - [2035] = {.lex_state = 578}, - [2036] = {.lex_state = 578}, - [2037] = {.lex_state = 578}, - [2038] = {.lex_state = 578}, - [2039] = {.lex_state = 578}, - [2040] = {.lex_state = 578}, - [2041] = {.lex_state = 578}, - [2042] = {.lex_state = 578}, - [2043] = {.lex_state = 578}, - [2044] = {.lex_state = 578}, - [2045] = {.lex_state = 578}, - [2046] = {.lex_state = 578}, - [2047] = {.lex_state = 578}, - [2048] = {.lex_state = 578}, - [2049] = {.lex_state = 578}, - [2050] = {.lex_state = 578}, - [2051] = {.lex_state = 578}, - [2052] = {.lex_state = 578}, - [2053] = {.lex_state = 578}, - [2054] = {.lex_state = 578}, - [2055] = {.lex_state = 578}, - [2056] = {.lex_state = 578}, - [2057] = {.lex_state = 578}, - [2058] = {.lex_state = 578}, - [2059] = {.lex_state = 578}, - [2060] = {.lex_state = 578}, - [2061] = {.lex_state = 578}, - [2062] = {.lex_state = 578}, - [2063] = {.lex_state = 578}, - [2064] = {.lex_state = 578}, - [2065] = {.lex_state = 578}, - [2066] = {.lex_state = 578}, - [2067] = {.lex_state = 578}, - [2068] = {.lex_state = 578}, - [2069] = {.lex_state = 578}, - [2070] = {.lex_state = 578}, - [2071] = {.lex_state = 578}, - [2072] = {.lex_state = 578}, - [2073] = {.lex_state = 578}, - [2074] = {.lex_state = 578}, - [2075] = {.lex_state = 578}, - [2076] = {.lex_state = 578}, - [2077] = {.lex_state = 578}, - [2078] = {.lex_state = 578}, - [2079] = {.lex_state = 578}, - [2080] = {.lex_state = 1187}, - [2081] = {.lex_state = 37, .external_lex_state = 2}, - [2082] = {.lex_state = 578}, - [2083] = {.lex_state = 578}, - [2084] = {.lex_state = 145}, - [2085] = {.lex_state = 1187}, - [2086] = {.lex_state = 44, .external_lex_state = 2}, - [2087] = {.lex_state = 155, .external_lex_state = 2}, - [2088] = {.lex_state = 89}, - [2089] = {.lex_state = 578}, - [2090] = {.lex_state = 1187}, - [2091] = {.lex_state = 160, .external_lex_state = 2}, - [2092] = {.lex_state = 145}, - [2093] = {.lex_state = 145}, - [2094] = {.lex_state = 162, .external_lex_state = 2}, - [2095] = {.lex_state = 128, .external_lex_state = 2}, - [2096] = {.lex_state = 145}, - [2097] = {.lex_state = 145}, - [2098] = {.lex_state = 19}, - [2099] = {.lex_state = 1187}, - [2100] = {.lex_state = 145}, - [2101] = {.lex_state = 1187}, - [2102] = {.lex_state = 155, .external_lex_state = 2}, - [2103] = {.lex_state = 1187}, - [2104] = {.lex_state = 155, .external_lex_state = 2}, - [2105] = {.lex_state = 155, .external_lex_state = 2}, - [2106] = {.lex_state = 44, .external_lex_state = 2}, - [2107] = {.lex_state = 1187}, - [2108] = {.lex_state = 160, .external_lex_state = 2}, - [2109] = {.lex_state = 1187}, - [2110] = {.lex_state = 160, .external_lex_state = 2}, - [2111] = {.lex_state = 163, .external_lex_state = 2}, - [2112] = {.lex_state = 155, .external_lex_state = 2}, - [2113] = {.lex_state = 160, .external_lex_state = 2}, - [2114] = {.lex_state = 168, .external_lex_state = 2}, - [2115] = {.lex_state = 168, .external_lex_state = 2}, - [2116] = {.lex_state = 168, .external_lex_state = 2}, - [2117] = {.lex_state = 44, .external_lex_state = 2}, - [2118] = {.lex_state = 155, .external_lex_state = 2}, - [2119] = {.lex_state = 168, .external_lex_state = 2}, - [2120] = {.lex_state = 160, .external_lex_state = 2}, - [2121] = {.lex_state = 37, .external_lex_state = 2}, - [2122] = {.lex_state = 168, .external_lex_state = 2}, - [2123] = {.lex_state = 578}, - [2124] = {.lex_state = 578}, - [2125] = {.lex_state = 145}, - [2126] = {.lex_state = 168, .external_lex_state = 2}, - [2127] = {.lex_state = 163, .external_lex_state = 2}, - [2128] = {.lex_state = 578}, - [2129] = {.lex_state = 578}, - [2130] = {.lex_state = 578}, - [2131] = {.lex_state = 578}, - [2132] = {.lex_state = 168, .external_lex_state = 2}, - [2133] = {.lex_state = 163, .external_lex_state = 2}, - [2134] = {.lex_state = 89}, - [2135] = {.lex_state = 37, .external_lex_state = 2}, - [2136] = {.lex_state = 37, .external_lex_state = 2}, - [2137] = {.lex_state = 578}, - [2138] = {.lex_state = 578}, - [2139] = {.lex_state = 578}, - [2140] = {.lex_state = 578}, - [2141] = {.lex_state = 578}, - [2142] = {.lex_state = 578}, - [2143] = {.lex_state = 578}, - [2144] = {.lex_state = 578}, - [2145] = {.lex_state = 578}, - [2146] = {.lex_state = 578}, - [2147] = {.lex_state = 578}, - [2148] = {.lex_state = 37, .external_lex_state = 2}, - [2149] = {.lex_state = 1188}, - [2150] = {.lex_state = 37, .external_lex_state = 2}, - [2151] = {.lex_state = 1188}, - [2152] = {.lex_state = 37, .external_lex_state = 2}, - [2153] = {.lex_state = 44, .external_lex_state = 2}, - [2154] = {.lex_state = 37, .external_lex_state = 2}, - [2155] = {.lex_state = 37, .external_lex_state = 2}, - [2156] = {.lex_state = 37, .external_lex_state = 2}, - [2157] = {.lex_state = 49, .external_lex_state = 2}, - [2158] = {.lex_state = 37, .external_lex_state = 2}, - [2159] = {.lex_state = 49, .external_lex_state = 2}, - [2160] = {.lex_state = 37, .external_lex_state = 2}, - [2161] = {.lex_state = 1188}, - [2162] = {.lex_state = 37, .external_lex_state = 2}, - [2163] = {.lex_state = 37, .external_lex_state = 2}, - [2164] = {.lex_state = 37, .external_lex_state = 2}, - [2165] = {.lex_state = 37, .external_lex_state = 2}, - [2166] = {.lex_state = 37, .external_lex_state = 2}, - [2167] = {.lex_state = 37, .external_lex_state = 2}, - [2168] = {.lex_state = 37, .external_lex_state = 2}, - [2169] = {.lex_state = 578}, - [2170] = {.lex_state = 578}, - [2171] = {.lex_state = 37, .external_lex_state = 2}, - [2172] = {.lex_state = 578}, - [2173] = {.lex_state = 37, .external_lex_state = 2}, - [2174] = {.lex_state = 37, .external_lex_state = 2}, - [2175] = {.lex_state = 578}, - [2176] = {.lex_state = 37, .external_lex_state = 2}, - [2177] = {.lex_state = 578}, - [2178] = {.lex_state = 37, .external_lex_state = 2}, - [2179] = {.lex_state = 37, .external_lex_state = 2}, - [2180] = {.lex_state = 37, .external_lex_state = 2}, - [2181] = {.lex_state = 37, .external_lex_state = 2}, - [2182] = {.lex_state = 37, .external_lex_state = 2}, - [2183] = {.lex_state = 37, .external_lex_state = 2}, - [2184] = {.lex_state = 578}, - [2185] = {.lex_state = 578}, - [2186] = {.lex_state = 578}, - [2187] = {.lex_state = 578}, - [2188] = {.lex_state = 578}, - [2189] = {.lex_state = 578}, - [2190] = {.lex_state = 578}, - [2191] = {.lex_state = 37, .external_lex_state = 2}, - [2192] = {.lex_state = 1188}, - [2193] = {.lex_state = 37, .external_lex_state = 2}, - [2194] = {.lex_state = 37, .external_lex_state = 2}, - [2195] = {.lex_state = 1188}, - [2196] = {.lex_state = 37, .external_lex_state = 2}, - [2197] = {.lex_state = 37, .external_lex_state = 2}, - [2198] = {.lex_state = 37, .external_lex_state = 2}, - [2199] = {.lex_state = 1188}, - [2200] = {.lex_state = 1188}, - [2201] = {.lex_state = 41, .external_lex_state = 2}, - [2202] = {.lex_state = 49, .external_lex_state = 2}, - [2203] = {.lex_state = 37, .external_lex_state = 2}, - [2204] = {.lex_state = 37, .external_lex_state = 2}, - [2205] = {.lex_state = 37, .external_lex_state = 2}, - [2206] = {.lex_state = 37, .external_lex_state = 2}, - [2207] = {.lex_state = 37, .external_lex_state = 2}, - [2208] = {.lex_state = 37, .external_lex_state = 2}, - [2209] = {.lex_state = 37, .external_lex_state = 2}, - [2210] = {.lex_state = 37, .external_lex_state = 2}, - [2211] = {.lex_state = 37, .external_lex_state = 2}, - [2212] = {.lex_state = 578}, - [2213] = {.lex_state = 578}, - [2214] = {.lex_state = 578}, - [2215] = {.lex_state = 578}, - [2216] = {.lex_state = 578}, - [2217] = {.lex_state = 577}, - [2218] = {.lex_state = 578}, - [2219] = {.lex_state = 41, .external_lex_state = 2}, - [2220] = {.lex_state = 578}, - [2221] = {.lex_state = 577}, - [2222] = {.lex_state = 157, .external_lex_state = 2}, - [2223] = {.lex_state = 157, .external_lex_state = 2}, - [2224] = {.lex_state = 49, .external_lex_state = 2}, - [2225] = {.lex_state = 157, .external_lex_state = 2}, - [2226] = {.lex_state = 45, .external_lex_state = 2}, - [2227] = {.lex_state = 157, .external_lex_state = 2}, - [2228] = {.lex_state = 575}, - [2229] = {.lex_state = 575}, - [2230] = {.lex_state = 575}, - [2231] = {.lex_state = 159, .external_lex_state = 2}, - [2232] = {.lex_state = 159, .external_lex_state = 2}, - [2233] = {.lex_state = 575}, - [2234] = {.lex_state = 159, .external_lex_state = 2}, - [2235] = {.lex_state = 159, .external_lex_state = 2}, - [2236] = {.lex_state = 159, .external_lex_state = 2}, - [2237] = {.lex_state = 47, .external_lex_state = 2}, - [2238] = {.lex_state = 159, .external_lex_state = 2}, - [2239] = {.lex_state = 157, .external_lex_state = 2}, - [2240] = {.lex_state = 157, .external_lex_state = 2}, - [2241] = {.lex_state = 46, .external_lex_state = 2}, - [2242] = {.lex_state = 575}, - [2243] = {.lex_state = 575}, - [2244] = {.lex_state = 45, .external_lex_state = 2}, - [2245] = {.lex_state = 159, .external_lex_state = 2}, - [2246] = {.lex_state = 49, .external_lex_state = 2}, - [2247] = {.lex_state = 47, .external_lex_state = 2}, - [2248] = {.lex_state = 159, .external_lex_state = 2}, - [2249] = {.lex_state = 49, .external_lex_state = 2}, - [2250] = {.lex_state = 49, .external_lex_state = 2}, - [2251] = {.lex_state = 46, .external_lex_state = 2}, - [2252] = {.lex_state = 159, .external_lex_state = 2}, - [2253] = {.lex_state = 47, .external_lex_state = 2}, - [2254] = {.lex_state = 577}, - [2255] = {.lex_state = 577}, - [2256] = {.lex_state = 577}, - [2257] = {.lex_state = 48, .external_lex_state = 2}, - [2258] = {.lex_state = 91}, - [2259] = {.lex_state = 48, .external_lex_state = 2}, - [2260] = {.lex_state = 577}, - [2261] = {.lex_state = 577}, - [2262] = {.lex_state = 577}, - [2263] = {.lex_state = 5}, - [2264] = {.lex_state = 48, .external_lex_state = 2}, - [2265] = {.lex_state = 48, .external_lex_state = 2}, - [2266] = {.lex_state = 48, .external_lex_state = 2}, - [2267] = {.lex_state = 48, .external_lex_state = 2}, - [2268] = {.lex_state = 48, .external_lex_state = 2}, - [2269] = {.lex_state = 48, .external_lex_state = 2}, - [2270] = {.lex_state = 48, .external_lex_state = 2}, - [2271] = {.lex_state = 48, .external_lex_state = 2}, - [2272] = {.lex_state = 48, .external_lex_state = 2}, - [2273] = {.lex_state = 578}, - [2274] = {.lex_state = 48, .external_lex_state = 2}, - [2275] = {.lex_state = 48, .external_lex_state = 2}, - [2276] = {.lex_state = 48, .external_lex_state = 2}, - [2277] = {.lex_state = 48, .external_lex_state = 2}, - [2278] = {.lex_state = 48, .external_lex_state = 2}, - [2279] = {.lex_state = 48, .external_lex_state = 2}, - [2280] = {.lex_state = 48, .external_lex_state = 2}, - [2281] = {.lex_state = 48, .external_lex_state = 2}, - [2282] = {.lex_state = 48, .external_lex_state = 2}, - [2283] = {.lex_state = 631}, - [2284] = {.lex_state = 48, .external_lex_state = 2}, - [2285] = {.lex_state = 48, .external_lex_state = 2}, - [2286] = {.lex_state = 48, .external_lex_state = 2}, - [2287] = {.lex_state = 48, .external_lex_state = 2}, - [2288] = {.lex_state = 48, .external_lex_state = 2}, - [2289] = {.lex_state = 48, .external_lex_state = 2}, - [2290] = {.lex_state = 578}, - [2291] = {.lex_state = 578}, - [2292] = {.lex_state = 578}, - [2293] = {.lex_state = 578}, - [2294] = {.lex_state = 48, .external_lex_state = 2}, - [2295] = {.lex_state = 48, .external_lex_state = 2}, - [2296] = {.lex_state = 5}, - [2297] = {.lex_state = 581}, - [2298] = {.lex_state = 631}, - [2299] = {.lex_state = 632}, - [2300] = {.lex_state = 632}, - [2301] = {.lex_state = 632}, - [2302] = {.lex_state = 48, .external_lex_state = 2}, - [2303] = {.lex_state = 48, .external_lex_state = 2}, - [2304] = {.lex_state = 632}, - [2305] = {.lex_state = 48, .external_lex_state = 2}, - [2306] = {.lex_state = 581}, - [2307] = {.lex_state = 581}, - [2308] = {.lex_state = 581}, - [2309] = {.lex_state = 581}, - [2310] = {.lex_state = 48, .external_lex_state = 2}, - [2311] = {.lex_state = 48, .external_lex_state = 2}, - [2312] = {.lex_state = 48, .external_lex_state = 2}, - [2313] = {.lex_state = 630}, - [2314] = {.lex_state = 581}, - [2315] = {.lex_state = 48, .external_lex_state = 2}, - [2316] = {.lex_state = 48, .external_lex_state = 2}, - [2317] = {.lex_state = 48, .external_lex_state = 2}, - [2318] = {.lex_state = 48, .external_lex_state = 2}, - [2319] = {.lex_state = 48, .external_lex_state = 2}, - [2320] = {.lex_state = 48, .external_lex_state = 2}, - [2321] = {.lex_state = 635}, + [1494] = {.lex_state = 158, .external_lex_state = 2}, + [1495] = {.lex_state = 610}, + [1496] = {.lex_state = 610}, + [1497] = {.lex_state = 610}, + [1498] = {.lex_state = 610}, + [1499] = {.lex_state = 610}, + [1500] = {.lex_state = 610}, + [1501] = {.lex_state = 612}, + [1502] = {.lex_state = 610}, + [1503] = {.lex_state = 612}, + [1504] = {.lex_state = 158, .external_lex_state = 2}, + [1505] = {.lex_state = 49, .external_lex_state = 2}, + [1506] = {.lex_state = 610}, + [1507] = {.lex_state = 610}, + [1508] = {.lex_state = 580}, + [1509] = {.lex_state = 95}, + [1510] = {.lex_state = 49, .external_lex_state = 2}, + [1511] = {.lex_state = 612}, + [1512] = {.lex_state = 95}, + [1513] = {.lex_state = 95}, + [1514] = {.lex_state = 46, .external_lex_state = 2}, + [1515] = {.lex_state = 14}, + [1516] = {.lex_state = 95}, + [1517] = {.lex_state = 95}, + [1518] = {.lex_state = 95}, + [1519] = {.lex_state = 95}, + [1520] = {.lex_state = 95}, + [1521] = {.lex_state = 95}, + [1522] = {.lex_state = 610}, + [1523] = {.lex_state = 184, .external_lex_state = 2}, + [1524] = {.lex_state = 95}, + [1525] = {.lex_state = 95}, + [1526] = {.lex_state = 46, .external_lex_state = 2}, + [1527] = {.lex_state = 95}, + [1528] = {.lex_state = 95}, + [1529] = {.lex_state = 95}, + [1530] = {.lex_state = 95}, + [1531] = {.lex_state = 95}, + [1532] = {.lex_state = 95}, + [1533] = {.lex_state = 95}, + [1534] = {.lex_state = 95}, + [1535] = {.lex_state = 95}, + [1536] = {.lex_state = 46, .external_lex_state = 2}, + [1537] = {.lex_state = 95}, + [1538] = {.lex_state = 95}, + [1539] = {.lex_state = 95}, + [1540] = {.lex_state = 95}, + [1541] = {.lex_state = 46, .external_lex_state = 2}, + [1542] = {.lex_state = 95}, + [1543] = {.lex_state = 95}, + [1544] = {.lex_state = 95}, + [1545] = {.lex_state = 95}, + [1546] = {.lex_state = 95}, + [1547] = {.lex_state = 95}, + [1548] = {.lex_state = 95}, + [1549] = {.lex_state = 95}, + [1550] = {.lex_state = 95}, + [1551] = {.lex_state = 95}, + [1552] = {.lex_state = 95}, + [1553] = {.lex_state = 95}, + [1554] = {.lex_state = 95}, + [1555] = {.lex_state = 95}, + [1556] = {.lex_state = 95}, + [1557] = {.lex_state = 95}, + [1558] = {.lex_state = 95}, + [1559] = {.lex_state = 95}, + [1560] = {.lex_state = 95}, + [1561] = {.lex_state = 95}, + [1562] = {.lex_state = 580}, + [1563] = {.lex_state = 580}, + [1564] = {.lex_state = 580}, + [1565] = {.lex_state = 580}, + [1566] = {.lex_state = 580}, + [1567] = {.lex_state = 580}, + [1568] = {.lex_state = 580}, + [1569] = {.lex_state = 580}, + [1570] = {.lex_state = 580}, + [1571] = {.lex_state = 580}, + [1572] = {.lex_state = 580}, + [1573] = {.lex_state = 580}, + [1574] = {.lex_state = 46, .external_lex_state = 2}, + [1575] = {.lex_state = 580}, + [1576] = {.lex_state = 580}, + [1577] = {.lex_state = 580}, + [1578] = {.lex_state = 580}, + [1579] = {.lex_state = 580}, + [1580] = {.lex_state = 580}, + [1581] = {.lex_state = 580}, + [1582] = {.lex_state = 580}, + [1583] = {.lex_state = 580}, + [1584] = {.lex_state = 580}, + [1585] = {.lex_state = 580}, + [1586] = {.lex_state = 580}, + [1587] = {.lex_state = 580}, + [1588] = {.lex_state = 580}, + [1589] = {.lex_state = 580}, + [1590] = {.lex_state = 580}, + [1591] = {.lex_state = 580}, + [1592] = {.lex_state = 580}, + [1593] = {.lex_state = 580}, + [1594] = {.lex_state = 580}, + [1595] = {.lex_state = 580}, + [1596] = {.lex_state = 580}, + [1597] = {.lex_state = 580}, + [1598] = {.lex_state = 580}, + [1599] = {.lex_state = 580}, + [1600] = {.lex_state = 580}, + [1601] = {.lex_state = 580}, + [1602] = {.lex_state = 580}, + [1603] = {.lex_state = 580}, + [1604] = {.lex_state = 580}, + [1605] = {.lex_state = 580}, + [1606] = {.lex_state = 580}, + [1607] = {.lex_state = 580}, + [1608] = {.lex_state = 580}, + [1609] = {.lex_state = 580}, + [1610] = {.lex_state = 580}, + [1611] = {.lex_state = 580}, + [1612] = {.lex_state = 580}, + [1613] = {.lex_state = 580}, + [1614] = {.lex_state = 580}, + [1615] = {.lex_state = 580}, + [1616] = {.lex_state = 580}, + [1617] = {.lex_state = 580}, + [1618] = {.lex_state = 580}, + [1619] = {.lex_state = 580}, + [1620] = {.lex_state = 580}, + [1621] = {.lex_state = 580}, + [1622] = {.lex_state = 580}, + [1623] = {.lex_state = 580}, + [1624] = {.lex_state = 580}, + [1625] = {.lex_state = 580}, + [1626] = {.lex_state = 580}, + [1627] = {.lex_state = 580}, + [1628] = {.lex_state = 580}, + [1629] = {.lex_state = 580}, + [1630] = {.lex_state = 580}, + [1631] = {.lex_state = 580}, + [1632] = {.lex_state = 580}, + [1633] = {.lex_state = 580}, + [1634] = {.lex_state = 580}, + [1635] = {.lex_state = 580}, + [1636] = {.lex_state = 580}, + [1637] = {.lex_state = 580}, + [1638] = {.lex_state = 580}, + [1639] = {.lex_state = 580}, + [1640] = {.lex_state = 580}, + [1641] = {.lex_state = 580}, + [1642] = {.lex_state = 580}, + [1643] = {.lex_state = 580}, + [1644] = {.lex_state = 580}, + [1645] = {.lex_state = 580}, + [1646] = {.lex_state = 580}, + [1647] = {.lex_state = 580}, + [1648] = {.lex_state = 580}, + [1649] = {.lex_state = 580}, + [1650] = {.lex_state = 580}, + [1651] = {.lex_state = 580}, + [1652] = {.lex_state = 580}, + [1653] = {.lex_state = 580}, + [1654] = {.lex_state = 580}, + [1655] = {.lex_state = 580}, + [1656] = {.lex_state = 580}, + [1657] = {.lex_state = 580}, + [1658] = {.lex_state = 580}, + [1659] = {.lex_state = 580}, + [1660] = {.lex_state = 580}, + [1661] = {.lex_state = 580}, + [1662] = {.lex_state = 580}, + [1663] = {.lex_state = 580}, + [1664] = {.lex_state = 580}, + [1665] = {.lex_state = 580}, + [1666] = {.lex_state = 580}, + [1667] = {.lex_state = 580}, + [1668] = {.lex_state = 580}, + [1669] = {.lex_state = 580}, + [1670] = {.lex_state = 580}, + [1671] = {.lex_state = 612}, + [1672] = {.lex_state = 612}, + [1673] = {.lex_state = 95}, + [1674] = {.lex_state = 95}, + [1675] = {.lex_state = 95}, + [1676] = {.lex_state = 95}, + [1677] = {.lex_state = 184, .external_lex_state = 2}, + [1678] = {.lex_state = 580}, + [1679] = {.lex_state = 580}, + [1680] = {.lex_state = 580}, + [1681] = {.lex_state = 580}, + [1682] = {.lex_state = 580}, + [1683] = {.lex_state = 580}, + [1684] = {.lex_state = 580}, + [1685] = {.lex_state = 580}, + [1686] = {.lex_state = 580}, + [1687] = {.lex_state = 580}, + [1688] = {.lex_state = 580}, + [1689] = {.lex_state = 580}, + [1690] = {.lex_state = 15}, + [1691] = {.lex_state = 15}, + [1692] = {.lex_state = 95}, + [1693] = {.lex_state = 184, .external_lex_state = 2}, + [1694] = {.lex_state = 138}, + [1695] = {.lex_state = 580}, + [1696] = {.lex_state = 46, .external_lex_state = 2}, + [1697] = {.lex_state = 18}, + [1698] = {.lex_state = 138}, + [1699] = {.lex_state = 46, .external_lex_state = 2}, + [1700] = {.lex_state = 46, .external_lex_state = 2}, + [1701] = {.lex_state = 46, .external_lex_state = 2}, + [1702] = {.lex_state = 46, .external_lex_state = 2}, + [1703] = {.lex_state = 46, .external_lex_state = 2}, + [1704] = {.lex_state = 16}, + [1705] = {.lex_state = 139}, + [1706] = {.lex_state = 139}, + [1707] = {.lex_state = 46, .external_lex_state = 2}, + [1708] = {.lex_state = 46, .external_lex_state = 2}, + [1709] = {.lex_state = 138}, + [1710] = {.lex_state = 46, .external_lex_state = 2}, + [1711] = {.lex_state = 46, .external_lex_state = 2}, + [1712] = {.lex_state = 46, .external_lex_state = 2}, + [1713] = {.lex_state = 574, .external_lex_state = 2}, + [1714] = {.lex_state = 95}, + [1715] = {.lex_state = 138}, + [1716] = {.lex_state = 632, .external_lex_state = 2}, + [1717] = {.lex_state = 20}, + [1718] = {.lex_state = 632, .external_lex_state = 2}, + [1719] = {.lex_state = 183, .external_lex_state = 2}, + [1720] = {.lex_state = 19}, + [1721] = {.lex_state = 140}, + [1722] = {.lex_state = 183, .external_lex_state = 2}, + [1723] = {.lex_state = 142}, + [1724] = {.lex_state = 19}, + [1725] = {.lex_state = 138}, + [1726] = {.lex_state = 138}, + [1727] = {.lex_state = 138}, + [1728] = {.lex_state = 138}, + [1729] = {.lex_state = 95}, + [1730] = {.lex_state = 95}, + [1731] = {.lex_state = 183, .external_lex_state = 2}, + [1732] = {.lex_state = 95}, + [1733] = {.lex_state = 138}, + [1734] = {.lex_state = 632, .external_lex_state = 2}, + [1735] = {.lex_state = 95}, + [1736] = {.lex_state = 173, .external_lex_state = 2}, + [1737] = {.lex_state = 574, .external_lex_state = 2}, + [1738] = {.lex_state = 574, .external_lex_state = 2}, + [1739] = {.lex_state = 574, .external_lex_state = 2}, + [1740] = {.lex_state = 574, .external_lex_state = 2}, + [1741] = {.lex_state = 574, .external_lex_state = 2}, + [1742] = {.lex_state = 95}, + [1743] = {.lex_state = 183, .external_lex_state = 2}, + [1744] = {.lex_state = 183, .external_lex_state = 2}, + [1745] = {.lex_state = 46, .external_lex_state = 2}, + [1746] = {.lex_state = 183, .external_lex_state = 2}, + [1747] = {.lex_state = 183, .external_lex_state = 2}, + [1748] = {.lex_state = 574, .external_lex_state = 2}, + [1749] = {.lex_state = 20}, + [1750] = {.lex_state = 95}, + [1751] = {.lex_state = 46, .external_lex_state = 2}, + [1752] = {.lex_state = 143}, + [1753] = {.lex_state = 632, .external_lex_state = 2}, + [1754] = {.lex_state = 95}, + [1755] = {.lex_state = 143}, + [1756] = {.lex_state = 183, .external_lex_state = 2}, + [1757] = {.lex_state = 21}, + [1758] = {.lex_state = 95}, + [1759] = {.lex_state = 46, .external_lex_state = 2}, + [1760] = {.lex_state = 95}, + [1761] = {.lex_state = 183, .external_lex_state = 2}, + [1762] = {.lex_state = 144}, + [1763] = {.lex_state = 632, .external_lex_state = 2}, + [1764] = {.lex_state = 632, .external_lex_state = 2}, + [1765] = {.lex_state = 183, .external_lex_state = 2}, + [1766] = {.lex_state = 632, .external_lex_state = 2}, + [1767] = {.lex_state = 183, .external_lex_state = 2}, + [1768] = {.lex_state = 20}, + [1769] = {.lex_state = 183, .external_lex_state = 2}, + [1770] = {.lex_state = 20}, + [1771] = {.lex_state = 17}, + [1772] = {.lex_state = 176, .external_lex_state = 2}, + [1773] = {.lex_state = 183, .external_lex_state = 2}, + [1774] = {.lex_state = 95}, + [1775] = {.lex_state = 574, .external_lex_state = 2}, + [1776] = {.lex_state = 632, .external_lex_state = 2}, + [1777] = {.lex_state = 141}, + [1778] = {.lex_state = 46, .external_lex_state = 2}, + [1779] = {.lex_state = 95}, + [1780] = {.lex_state = 95}, + [1781] = {.lex_state = 95}, + [1782] = {.lex_state = 95}, + [1783] = {.lex_state = 574, .external_lex_state = 2}, + [1784] = {.lex_state = 574, .external_lex_state = 2}, + [1785] = {.lex_state = 574, .external_lex_state = 2}, + [1786] = {.lex_state = 631, .external_lex_state = 2}, + [1787] = {.lex_state = 574, .external_lex_state = 2}, + [1788] = {.lex_state = 574, .external_lex_state = 2}, + [1789] = {.lex_state = 574, .external_lex_state = 2}, + [1790] = {.lex_state = 95}, + [1791] = {.lex_state = 95}, + [1792] = {.lex_state = 95}, + [1793] = {.lex_state = 95}, + [1794] = {.lex_state = 575, .external_lex_state = 2}, + [1795] = {.lex_state = 95}, + [1796] = {.lex_state = 175, .external_lex_state = 2}, + [1797] = {.lex_state = 46, .external_lex_state = 2}, + [1798] = {.lex_state = 175, .external_lex_state = 2}, + [1799] = {.lex_state = 632, .external_lex_state = 2}, + [1800] = {.lex_state = 95}, + [1801] = {.lex_state = 95}, + [1802] = {.lex_state = 46, .external_lex_state = 2}, + [1803] = {.lex_state = 95}, + [1804] = {.lex_state = 46, .external_lex_state = 2}, + [1805] = {.lex_state = 95}, + [1806] = {.lex_state = 144}, + [1807] = {.lex_state = 144}, + [1808] = {.lex_state = 144}, + [1809] = {.lex_state = 632, .external_lex_state = 2}, + [1810] = {.lex_state = 22}, + [1811] = {.lex_state = 22}, + [1812] = {.lex_state = 145}, + [1813] = {.lex_state = 95}, + [1814] = {.lex_state = 46, .external_lex_state = 2}, + [1815] = {.lex_state = 95}, + [1816] = {.lex_state = 95}, + [1817] = {.lex_state = 95}, + [1818] = {.lex_state = 46, .external_lex_state = 2}, + [1819] = {.lex_state = 46, .external_lex_state = 2}, + [1820] = {.lex_state = 46, .external_lex_state = 2}, + [1821] = {.lex_state = 46, .external_lex_state = 2}, + [1822] = {.lex_state = 46, .external_lex_state = 2}, + [1823] = {.lex_state = 46, .external_lex_state = 2}, + [1824] = {.lex_state = 46, .external_lex_state = 2}, + [1825] = {.lex_state = 95}, + [1826] = {.lex_state = 632, .external_lex_state = 2}, + [1827] = {.lex_state = 95}, + [1828] = {.lex_state = 177, .external_lex_state = 2}, + [1829] = {.lex_state = 632, .external_lex_state = 2}, + [1830] = {.lex_state = 23}, + [1831] = {.lex_state = 580}, + [1832] = {.lex_state = 631, .external_lex_state = 2}, + [1833] = {.lex_state = 23}, + [1834] = {.lex_state = 23}, + [1835] = {.lex_state = 23}, + [1836] = {.lex_state = 146}, + [1837] = {.lex_state = 177, .external_lex_state = 2}, + [1838] = {.lex_state = 632, .external_lex_state = 2}, + [1839] = {.lex_state = 177, .external_lex_state = 2}, + [1840] = {.lex_state = 177, .external_lex_state = 2}, + [1841] = {.lex_state = 146}, + [1842] = {.lex_state = 95}, + [1843] = {.lex_state = 23}, + [1844] = {.lex_state = 575, .external_lex_state = 2}, + [1845] = {.lex_state = 95}, + [1846] = {.lex_state = 147}, + [1847] = {.lex_state = 629, .external_lex_state = 2}, + [1848] = {.lex_state = 629, .external_lex_state = 2}, + [1849] = {.lex_state = 181, .external_lex_state = 2}, + [1850] = {.lex_state = 629, .external_lex_state = 2}, + [1851] = {.lex_state = 1184}, + [1852] = {.lex_state = 1186}, + [1853] = {.lex_state = 24}, + [1854] = {.lex_state = 629, .external_lex_state = 2}, + [1855] = {.lex_state = 147}, + [1856] = {.lex_state = 147}, + [1857] = {.lex_state = 272}, + [1858] = {.lex_state = 632, .external_lex_state = 2}, + [1859] = {.lex_state = 580}, + [1860] = {.lex_state = 25}, + [1861] = {.lex_state = 629, .external_lex_state = 2}, + [1862] = {.lex_state = 629, .external_lex_state = 2}, + [1863] = {.lex_state = 629, .external_lex_state = 2}, + [1864] = {.lex_state = 632, .external_lex_state = 2}, + [1865] = {.lex_state = 629, .external_lex_state = 2}, + [1866] = {.lex_state = 632, .external_lex_state = 2}, + [1867] = {.lex_state = 629, .external_lex_state = 2}, + [1868] = {.lex_state = 629, .external_lex_state = 2}, + [1869] = {.lex_state = 147}, + [1870] = {.lex_state = 629, .external_lex_state = 2}, + [1871] = {.lex_state = 629, .external_lex_state = 2}, + [1872] = {.lex_state = 95}, + [1873] = {.lex_state = 629, .external_lex_state = 2}, + [1874] = {.lex_state = 629, .external_lex_state = 2}, + [1875] = {.lex_state = 147}, + [1876] = {.lex_state = 629, .external_lex_state = 2}, + [1877] = {.lex_state = 95}, + [1878] = {.lex_state = 629, .external_lex_state = 2}, + [1879] = {.lex_state = 629, .external_lex_state = 2}, + [1880] = {.lex_state = 629, .external_lex_state = 2}, + [1881] = {.lex_state = 169, .external_lex_state = 2}, + [1882] = {.lex_state = 182, .external_lex_state = 2}, + [1883] = {.lex_state = 629, .external_lex_state = 2}, + [1884] = {.lex_state = 629, .external_lex_state = 2}, + [1885] = {.lex_state = 629, .external_lex_state = 2}, + [1886] = {.lex_state = 169, .external_lex_state = 2}, + [1887] = {.lex_state = 629, .external_lex_state = 2}, + [1888] = {.lex_state = 629, .external_lex_state = 2}, + [1889] = {.lex_state = 629, .external_lex_state = 2}, + [1890] = {.lex_state = 629, .external_lex_state = 2}, + [1891] = {.lex_state = 629, .external_lex_state = 2}, + [1892] = {.lex_state = 629, .external_lex_state = 2}, + [1893] = {.lex_state = 272}, + [1894] = {.lex_state = 182, .external_lex_state = 2}, + [1895] = {.lex_state = 133, .external_lex_state = 2}, + [1896] = {.lex_state = 26}, + [1897] = {.lex_state = 149}, + [1898] = {.lex_state = 629, .external_lex_state = 2}, + [1899] = {.lex_state = 1189}, + [1900] = {.lex_state = 629, .external_lex_state = 2}, + [1901] = {.lex_state = 169, .external_lex_state = 2}, + [1902] = {.lex_state = 169, .external_lex_state = 2}, + [1903] = {.lex_state = 169, .external_lex_state = 2}, + [1904] = {.lex_state = 148}, + [1905] = {.lex_state = 629, .external_lex_state = 2}, + [1906] = {.lex_state = 26}, + [1907] = {.lex_state = 1187}, + [1908] = {.lex_state = 629, .external_lex_state = 2}, + [1909] = {.lex_state = 1187}, + [1910] = {.lex_state = 169, .external_lex_state = 2}, + [1911] = {.lex_state = 1185}, + [1912] = {.lex_state = 629, .external_lex_state = 2}, + [1913] = {.lex_state = 629, .external_lex_state = 2}, + [1914] = {.lex_state = 169, .external_lex_state = 2}, + [1915] = {.lex_state = 629, .external_lex_state = 2}, + [1916] = {.lex_state = 272}, + [1917] = {.lex_state = 171, .external_lex_state = 2}, + [1918] = {.lex_state = 133, .external_lex_state = 2}, + [1919] = {.lex_state = 133, .external_lex_state = 2}, + [1920] = {.lex_state = 133, .external_lex_state = 2}, + [1921] = {.lex_state = 133, .external_lex_state = 2}, + [1922] = {.lex_state = 133, .external_lex_state = 2}, + [1923] = {.lex_state = 133, .external_lex_state = 2}, + [1924] = {.lex_state = 27}, + [1925] = {.lex_state = 27}, + [1926] = {.lex_state = 27}, + [1927] = {.lex_state = 272}, + [1928] = {.lex_state = 1190}, + [1929] = {.lex_state = 27}, + [1930] = {.lex_state = 27}, + [1931] = {.lex_state = 150}, + [1932] = {.lex_state = 27}, + [1933] = {.lex_state = 150}, + [1934] = {.lex_state = 272}, + [1935] = {.lex_state = 27}, + [1936] = {.lex_state = 27}, + [1937] = {.lex_state = 27}, + [1938] = {.lex_state = 163, .external_lex_state = 2}, + [1939] = {.lex_state = 95}, + [1940] = {.lex_state = 272}, + [1941] = {.lex_state = 1190}, + [1942] = {.lex_state = 580}, + [1943] = {.lex_state = 1188}, + [1944] = {.lex_state = 1188}, + [1945] = {.lex_state = 1188}, + [1946] = {.lex_state = 169, .external_lex_state = 2}, + [1947] = {.lex_state = 272}, + [1948] = {.lex_state = 272}, + [1949] = {.lex_state = 272}, + [1950] = {.lex_state = 169, .external_lex_state = 2}, + [1951] = {.lex_state = 27}, + [1952] = {.lex_state = 27}, + [1953] = {.lex_state = 27}, + [1954] = {.lex_state = 27}, + [1955] = {.lex_state = 1188}, + [1956] = {.lex_state = 580}, + [1957] = {.lex_state = 580}, + [1958] = {.lex_state = 580}, + [1959] = {.lex_state = 272}, + [1960] = {.lex_state = 580}, + [1961] = {.lex_state = 580}, + [1962] = {.lex_state = 580}, + [1963] = {.lex_state = 580}, + [1964] = {.lex_state = 580}, + [1965] = {.lex_state = 163, .external_lex_state = 2}, + [1966] = {.lex_state = 580}, + [1967] = {.lex_state = 53, .external_lex_state = 2}, + [1968] = {.lex_state = 167, .external_lex_state = 2}, + [1969] = {.lex_state = 151}, + [1970] = {.lex_state = 151}, + [1971] = {.lex_state = 167, .external_lex_state = 2}, + [1972] = {.lex_state = 151}, + [1973] = {.lex_state = 151}, + [1974] = {.lex_state = 164, .external_lex_state = 2}, + [1975] = {.lex_state = 95}, + [1976] = {.lex_state = 1191}, + [1977] = {.lex_state = 95}, + [1978] = {.lex_state = 151}, + [1979] = {.lex_state = 1191}, + [1980] = {.lex_state = 579}, + [1981] = {.lex_state = 151}, + [1982] = {.lex_state = 580}, + [1983] = {.lex_state = 580}, + [1984] = {.lex_state = 580}, + [1985] = {.lex_state = 580}, + [1986] = {.lex_state = 580}, + [1987] = {.lex_state = 580}, + [1988] = {.lex_state = 580}, + [1989] = {.lex_state = 580}, + [1990] = {.lex_state = 580}, + [1991] = {.lex_state = 580}, + [1992] = {.lex_state = 580}, + [1993] = {.lex_state = 151}, + [1994] = {.lex_state = 580}, + [1995] = {.lex_state = 1191}, + [1996] = {.lex_state = 1191}, + [1997] = {.lex_state = 580}, + [1998] = {.lex_state = 580}, + [1999] = {.lex_state = 580}, + [2000] = {.lex_state = 580}, + [2001] = {.lex_state = 580}, + [2002] = {.lex_state = 580}, + [2003] = {.lex_state = 580}, + [2004] = {.lex_state = 580}, + [2005] = {.lex_state = 580}, + [2006] = {.lex_state = 580}, + [2007] = {.lex_state = 580}, + [2008] = {.lex_state = 580}, + [2009] = {.lex_state = 580}, + [2010] = {.lex_state = 580}, + [2011] = {.lex_state = 580}, + [2012] = {.lex_state = 580}, + [2013] = {.lex_state = 580}, + [2014] = {.lex_state = 580}, + [2015] = {.lex_state = 580}, + [2016] = {.lex_state = 580}, + [2017] = {.lex_state = 580}, + [2018] = {.lex_state = 580}, + [2019] = {.lex_state = 580}, + [2020] = {.lex_state = 580}, + [2021] = {.lex_state = 580}, + [2022] = {.lex_state = 580}, + [2023] = {.lex_state = 580}, + [2024] = {.lex_state = 580}, + [2025] = {.lex_state = 580}, + [2026] = {.lex_state = 580}, + [2027] = {.lex_state = 580}, + [2028] = {.lex_state = 580}, + [2029] = {.lex_state = 580}, + [2030] = {.lex_state = 580}, + [2031] = {.lex_state = 580}, + [2032] = {.lex_state = 580}, + [2033] = {.lex_state = 167, .external_lex_state = 2}, + [2034] = {.lex_state = 580}, + [2035] = {.lex_state = 580}, + [2036] = {.lex_state = 580}, + [2037] = {.lex_state = 580}, + [2038] = {.lex_state = 580}, + [2039] = {.lex_state = 580}, + [2040] = {.lex_state = 580}, + [2041] = {.lex_state = 580}, + [2042] = {.lex_state = 580}, + [2043] = {.lex_state = 580}, + [2044] = {.lex_state = 580}, + [2045] = {.lex_state = 580}, + [2046] = {.lex_state = 580}, + [2047] = {.lex_state = 580}, + [2048] = {.lex_state = 580}, + [2049] = {.lex_state = 580}, + [2050] = {.lex_state = 580}, + [2051] = {.lex_state = 580}, + [2052] = {.lex_state = 53, .external_lex_state = 2}, + [2053] = {.lex_state = 580}, + [2054] = {.lex_state = 580}, + [2055] = {.lex_state = 580}, + [2056] = {.lex_state = 580}, + [2057] = {.lex_state = 580}, + [2058] = {.lex_state = 580}, + [2059] = {.lex_state = 580}, + [2060] = {.lex_state = 580}, + [2061] = {.lex_state = 580}, + [2062] = {.lex_state = 580}, + [2063] = {.lex_state = 580}, + [2064] = {.lex_state = 580}, + [2065] = {.lex_state = 580}, + [2066] = {.lex_state = 580}, + [2067] = {.lex_state = 580}, + [2068] = {.lex_state = 580}, + [2069] = {.lex_state = 580}, + [2070] = {.lex_state = 580}, + [2071] = {.lex_state = 580}, + [2072] = {.lex_state = 580}, + [2073] = {.lex_state = 580}, + [2074] = {.lex_state = 580}, + [2075] = {.lex_state = 580}, + [2076] = {.lex_state = 580}, + [2077] = {.lex_state = 580}, + [2078] = {.lex_state = 580}, + [2079] = {.lex_state = 580}, + [2080] = {.lex_state = 580}, + [2081] = {.lex_state = 46, .external_lex_state = 2}, + [2082] = {.lex_state = 151}, + [2083] = {.lex_state = 1191}, + [2084] = {.lex_state = 164, .external_lex_state = 2}, + [2085] = {.lex_state = 167, .external_lex_state = 2}, + [2086] = {.lex_state = 168, .external_lex_state = 2}, + [2087] = {.lex_state = 46, .external_lex_state = 2}, + [2088] = {.lex_state = 151}, + [2089] = {.lex_state = 151}, + [2090] = {.lex_state = 580}, + [2091] = {.lex_state = 164, .external_lex_state = 2}, + [2092] = {.lex_state = 164, .external_lex_state = 2}, + [2093] = {.lex_state = 580}, + [2094] = {.lex_state = 272}, + [2095] = {.lex_state = 580}, + [2096] = {.lex_state = 272}, + [2097] = {.lex_state = 151}, + [2098] = {.lex_state = 134, .external_lex_state = 2}, + [2099] = {.lex_state = 151}, + [2100] = {.lex_state = 151}, + [2101] = {.lex_state = 164, .external_lex_state = 2}, + [2102] = {.lex_state = 27}, + [2103] = {.lex_state = 1191}, + [2104] = {.lex_state = 1191}, + [2105] = {.lex_state = 1191}, + [2106] = {.lex_state = 167, .external_lex_state = 2}, + [2107] = {.lex_state = 1191}, + [2108] = {.lex_state = 1191}, + [2109] = {.lex_state = 53, .external_lex_state = 2}, + [2110] = {.lex_state = 580}, + [2111] = {.lex_state = 174, .external_lex_state = 2}, + [2112] = {.lex_state = 174, .external_lex_state = 2}, + [2113] = {.lex_state = 169, .external_lex_state = 2}, + [2114] = {.lex_state = 174, .external_lex_state = 2}, + [2115] = {.lex_state = 169, .external_lex_state = 2}, + [2116] = {.lex_state = 164, .external_lex_state = 2}, + [2117] = {.lex_state = 53, .external_lex_state = 2}, + [2118] = {.lex_state = 164, .external_lex_state = 2}, + [2119] = {.lex_state = 174, .external_lex_state = 2}, + [2120] = {.lex_state = 580}, + [2121] = {.lex_state = 580}, + [2122] = {.lex_state = 169, .external_lex_state = 2}, + [2123] = {.lex_state = 174, .external_lex_state = 2}, + [2124] = {.lex_state = 167, .external_lex_state = 2}, + [2125] = {.lex_state = 167, .external_lex_state = 2}, + [2126] = {.lex_state = 580}, + [2127] = {.lex_state = 580}, + [2128] = {.lex_state = 46, .external_lex_state = 2}, + [2129] = {.lex_state = 95}, + [2130] = {.lex_state = 580}, + [2131] = {.lex_state = 580}, + [2132] = {.lex_state = 174, .external_lex_state = 2}, + [2133] = {.lex_state = 174, .external_lex_state = 2}, + [2134] = {.lex_state = 151}, + [2135] = {.lex_state = 46, .external_lex_state = 2}, + [2136] = {.lex_state = 53, .external_lex_state = 2}, + [2137] = {.lex_state = 50, .external_lex_state = 2}, + [2138] = {.lex_state = 46, .external_lex_state = 2}, + [2139] = {.lex_state = 580}, + [2140] = {.lex_state = 46, .external_lex_state = 2}, + [2141] = {.lex_state = 46, .external_lex_state = 2}, + [2142] = {.lex_state = 580}, + [2143] = {.lex_state = 580}, + [2144] = {.lex_state = 580}, + [2145] = {.lex_state = 580}, + [2146] = {.lex_state = 580}, + [2147] = {.lex_state = 580}, + [2148] = {.lex_state = 580}, + [2149] = {.lex_state = 580}, + [2150] = {.lex_state = 580}, + [2151] = {.lex_state = 580}, + [2152] = {.lex_state = 580}, + [2153] = {.lex_state = 580}, + [2154] = {.lex_state = 580}, + [2155] = {.lex_state = 580}, + [2156] = {.lex_state = 580}, + [2157] = {.lex_state = 46, .external_lex_state = 2}, + [2158] = {.lex_state = 46, .external_lex_state = 2}, + [2159] = {.lex_state = 1192}, + [2160] = {.lex_state = 46, .external_lex_state = 2}, + [2161] = {.lex_state = 46, .external_lex_state = 2}, + [2162] = {.lex_state = 46, .external_lex_state = 2}, + [2163] = {.lex_state = 46, .external_lex_state = 2}, + [2164] = {.lex_state = 46, .external_lex_state = 2}, + [2165] = {.lex_state = 46, .external_lex_state = 2}, + [2166] = {.lex_state = 46, .external_lex_state = 2}, + [2167] = {.lex_state = 46, .external_lex_state = 2}, + [2168] = {.lex_state = 46, .external_lex_state = 2}, + [2169] = {.lex_state = 46, .external_lex_state = 2}, + [2170] = {.lex_state = 46, .external_lex_state = 2}, + [2171] = {.lex_state = 46, .external_lex_state = 2}, + [2172] = {.lex_state = 46, .external_lex_state = 2}, + [2173] = {.lex_state = 46, .external_lex_state = 2}, + [2174] = {.lex_state = 46, .external_lex_state = 2}, + [2175] = {.lex_state = 580}, + [2176] = {.lex_state = 46, .external_lex_state = 2}, + [2177] = {.lex_state = 46, .external_lex_state = 2}, + [2178] = {.lex_state = 46, .external_lex_state = 2}, + [2179] = {.lex_state = 46, .external_lex_state = 2}, + [2180] = {.lex_state = 46, .external_lex_state = 2}, + [2181] = {.lex_state = 46, .external_lex_state = 2}, + [2182] = {.lex_state = 580}, + [2183] = {.lex_state = 1192}, + [2184] = {.lex_state = 580}, + [2185] = {.lex_state = 1192}, + [2186] = {.lex_state = 580}, + [2187] = {.lex_state = 46, .external_lex_state = 2}, + [2188] = {.lex_state = 46, .external_lex_state = 2}, + [2189] = {.lex_state = 1192}, + [2190] = {.lex_state = 46, .external_lex_state = 2}, + [2191] = {.lex_state = 1192}, + [2192] = {.lex_state = 46, .external_lex_state = 2}, + [2193] = {.lex_state = 580}, + [2194] = {.lex_state = 1192}, + [2195] = {.lex_state = 580}, + [2196] = {.lex_state = 1192}, + [2197] = {.lex_state = 1192}, + [2198] = {.lex_state = 46, .external_lex_state = 2}, + [2199] = {.lex_state = 46, .external_lex_state = 2}, + [2200] = {.lex_state = 580}, + [2201] = {.lex_state = 46, .external_lex_state = 2}, + [2202] = {.lex_state = 46, .external_lex_state = 2}, + [2203] = {.lex_state = 46, .external_lex_state = 2}, + [2204] = {.lex_state = 46, .external_lex_state = 2}, + [2205] = {.lex_state = 580}, + [2206] = {.lex_state = 46, .external_lex_state = 2}, + [2207] = {.lex_state = 46, .external_lex_state = 2}, + [2208] = {.lex_state = 46, .external_lex_state = 2}, + [2209] = {.lex_state = 46, .external_lex_state = 2}, + [2210] = {.lex_state = 46, .external_lex_state = 2}, + [2211] = {.lex_state = 5, .external_lex_state = 2}, + [2212] = {.lex_state = 5, .external_lex_state = 2}, + [2213] = {.lex_state = 579}, + [2214] = {.lex_state = 580}, + [2215] = {.lex_state = 580}, + [2216] = {.lex_state = 5, .external_lex_state = 2}, + [2217] = {.lex_state = 5, .external_lex_state = 2}, + [2218] = {.lex_state = 5, .external_lex_state = 2}, + [2219] = {.lex_state = 580}, + [2220] = {.lex_state = 5, .external_lex_state = 2}, + [2221] = {.lex_state = 5, .external_lex_state = 2}, + [2222] = {.lex_state = 580}, + [2223] = {.lex_state = 50, .external_lex_state = 2}, + [2224] = {.lex_state = 5, .external_lex_state = 2}, + [2225] = {.lex_state = 580}, + [2226] = {.lex_state = 580}, + [2227] = {.lex_state = 5, .external_lex_state = 2}, + [2228] = {.lex_state = 154, .external_lex_state = 2}, + [2229] = {.lex_state = 579}, + [2230] = {.lex_state = 54, .external_lex_state = 2}, + [2231] = {.lex_state = 154, .external_lex_state = 2}, + [2232] = {.lex_state = 154, .external_lex_state = 2}, + [2233] = {.lex_state = 154, .external_lex_state = 2}, + [2234] = {.lex_state = 577}, + [2235] = {.lex_state = 38, .external_lex_state = 2}, + [2236] = {.lex_state = 156, .external_lex_state = 2}, + [2237] = {.lex_state = 156, .external_lex_state = 2}, + [2238] = {.lex_state = 156, .external_lex_state = 2}, + [2239] = {.lex_state = 37, .external_lex_state = 2}, + [2240] = {.lex_state = 156, .external_lex_state = 2}, + [2241] = {.lex_state = 54, .external_lex_state = 2}, + [2242] = {.lex_state = 577}, + [2243] = {.lex_state = 577}, + [2244] = {.lex_state = 156, .external_lex_state = 2}, + [2245] = {.lex_state = 154, .external_lex_state = 2}, + [2246] = {.lex_state = 156, .external_lex_state = 2}, + [2247] = {.lex_state = 577}, + [2248] = {.lex_state = 577}, + [2249] = {.lex_state = 156, .external_lex_state = 2}, + [2250] = {.lex_state = 577}, + [2251] = {.lex_state = 154, .external_lex_state = 2}, + [2252] = {.lex_state = 156, .external_lex_state = 2}, + [2253] = {.lex_state = 38, .external_lex_state = 2}, + [2254] = {.lex_state = 156, .external_lex_state = 2}, + [2255] = {.lex_state = 37, .external_lex_state = 2}, + [2256] = {.lex_state = 579}, + [2257] = {.lex_state = 38, .external_lex_state = 2}, + [2258] = {.lex_state = 579}, + [2259] = {.lex_state = 579}, + [2260] = {.lex_state = 579}, + [2261] = {.lex_state = 579}, + [2262] = {.lex_state = 39, .external_lex_state = 2}, + [2263] = {.lex_state = 39, .external_lex_state = 2}, + [2264] = {.lex_state = 579}, + [2265] = {.lex_state = 97}, + [2266] = {.lex_state = 13}, + [2267] = {.lex_state = 39, .external_lex_state = 2}, + [2268] = {.lex_state = 39, .external_lex_state = 2}, + [2269] = {.lex_state = 580}, + [2270] = {.lex_state = 39, .external_lex_state = 2}, + [2271] = {.lex_state = 39, .external_lex_state = 2}, + [2272] = {.lex_state = 39, .external_lex_state = 2}, + [2273] = {.lex_state = 39, .external_lex_state = 2}, + [2274] = {.lex_state = 39, .external_lex_state = 2}, + [2275] = {.lex_state = 39, .external_lex_state = 2}, + [2276] = {.lex_state = 39, .external_lex_state = 2}, + [2277] = {.lex_state = 39, .external_lex_state = 2}, + [2278] = {.lex_state = 39, .external_lex_state = 2}, + [2279] = {.lex_state = 39, .external_lex_state = 2}, + [2280] = {.lex_state = 39, .external_lex_state = 2}, + [2281] = {.lex_state = 39, .external_lex_state = 2}, + [2282] = {.lex_state = 39, .external_lex_state = 2}, + [2283] = {.lex_state = 39, .external_lex_state = 2}, + [2284] = {.lex_state = 39, .external_lex_state = 2}, + [2285] = {.lex_state = 39, .external_lex_state = 2}, + [2286] = {.lex_state = 39, .external_lex_state = 2}, + [2287] = {.lex_state = 39, .external_lex_state = 2}, + [2288] = {.lex_state = 39, .external_lex_state = 2}, + [2289] = {.lex_state = 39, .external_lex_state = 2}, + [2290] = {.lex_state = 39, .external_lex_state = 2}, + [2291] = {.lex_state = 39, .external_lex_state = 2}, + [2292] = {.lex_state = 39, .external_lex_state = 2}, + [2293] = {.lex_state = 39, .external_lex_state = 2}, + [2294] = {.lex_state = 580}, + [2295] = {.lex_state = 580}, + [2296] = {.lex_state = 580}, + [2297] = {.lex_state = 580}, + [2298] = {.lex_state = 635}, + [2299] = {.lex_state = 635}, + [2300] = {.lex_state = 4, .external_lex_state = 2}, + [2301] = {.lex_state = 1, .external_lex_state = 2}, + [2302] = {.lex_state = 636}, + [2303] = {.lex_state = 4, .external_lex_state = 2}, + [2304] = {.lex_state = 4, .external_lex_state = 2}, + [2305] = {.lex_state = 583}, + [2306] = {.lex_state = 4, .external_lex_state = 2}, + [2307] = {.lex_state = 13}, + [2308] = {.lex_state = 4, .external_lex_state = 2}, + [2309] = {.lex_state = 636}, + [2310] = {.lex_state = 39, .external_lex_state = 2}, + [2311] = {.lex_state = 4, .external_lex_state = 2}, + [2312] = {.lex_state = 39, .external_lex_state = 2}, + [2313] = {.lex_state = 39, .external_lex_state = 2}, + [2314] = {.lex_state = 39, .external_lex_state = 2}, + [2315] = {.lex_state = 39, .external_lex_state = 2}, + [2316] = {.lex_state = 39, .external_lex_state = 2}, + [2317] = {.lex_state = 39, .external_lex_state = 2}, + [2318] = {.lex_state = 39, .external_lex_state = 2}, + [2319] = {.lex_state = 1, .external_lex_state = 2}, + [2320] = {.lex_state = 1, .external_lex_state = 2}, + [2321] = {.lex_state = 1, .external_lex_state = 2}, [2322] = {.lex_state = 639}, - [2323] = {.lex_state = 581}, - [2324] = {.lex_state = 641}, - [2325] = {.lex_state = 630}, - [2326] = {.lex_state = 630}, - [2327] = {.lex_state = 639}, - [2328] = {.lex_state = 635}, - [2329] = {.lex_state = 633}, - [2330] = {.lex_state = 633}, - [2331] = {.lex_state = 643}, - [2332] = {.lex_state = 581}, - [2333] = {.lex_state = 581}, - [2334] = {.lex_state = 581}, - [2335] = {.lex_state = 641}, - [2336] = {.lex_state = 643}, - [2337] = {.lex_state = 645}, - [2338] = {.lex_state = 643}, - [2339] = {.lex_state = 643}, - [2340] = {.lex_state = 630}, - [2341] = {.lex_state = 630}, - [2342] = {.lex_state = 643}, - [2343] = {.lex_state = 630}, - [2344] = {.lex_state = 630}, - [2345] = {.lex_state = 630}, - [2346] = {.lex_state = 633}, - [2347] = {.lex_state = 641}, - [2348] = {.lex_state = 637}, - [2349] = {.lex_state = 578}, - [2350] = {.lex_state = 640}, - [2351] = {.lex_state = 578}, - [2352] = {.lex_state = 636}, - [2353] = {.lex_state = 633}, - [2354] = {.lex_state = 641}, - [2355] = {.lex_state = 643}, - [2356] = {.lex_state = 630}, - [2357] = {.lex_state = 636}, - [2358] = {.lex_state = 630}, - [2359] = {.lex_state = 575}, - [2360] = {.lex_state = 647}, - [2361] = {.lex_state = 172, .external_lex_state = 2}, - [2362] = {.lex_state = 172, .external_lex_state = 2}, - [2363] = {.lex_state = 644}, - [2364] = {.lex_state = 577}, - [2365] = {.lex_state = 645}, - [2366] = {.lex_state = 647}, - [2367] = {.lex_state = 577}, - [2368] = {.lex_state = 640}, - [2369] = {.lex_state = 637}, - [2370] = {.lex_state = 577}, - [2371] = {.lex_state = 642}, - [2372] = {.lex_state = 172, .external_lex_state = 2}, - [2373] = {.lex_state = 172, .external_lex_state = 2}, - [2374] = {.lex_state = 2}, - [2375] = {.lex_state = 643}, - [2376] = {.lex_state = 172, .external_lex_state = 2}, - [2377] = {.lex_state = 630}, - [2378] = {.lex_state = 51}, - [2379] = {.lex_state = 643}, - [2380] = {.lex_state = 642}, - [2381] = {.lex_state = 630}, - [2382] = {.lex_state = 577}, - [2383] = {.lex_state = 52}, - [2384] = {.lex_state = 646}, - [2385] = {.lex_state = 172, .external_lex_state = 2}, - [2386] = {.lex_state = 49, .external_lex_state = 2}, - [2387] = {.lex_state = 577}, - [2388] = {.lex_state = 576}, - [2389] = {.lex_state = 577}, - [2390] = {.lex_state = 575}, - [2391] = {.lex_state = 644}, - [2392] = {.lex_state = 51}, - [2393] = {.lex_state = 642}, - [2394] = {.lex_state = 576}, - [2395] = {.lex_state = 53}, - [2396] = {.lex_state = 55}, - [2397] = {.lex_state = 644}, - [2398] = {.lex_state = 649}, - [2399] = {.lex_state = 642}, - [2400] = {.lex_state = 649}, - [2401] = {.lex_state = 649}, - [2402] = {.lex_state = 172, .external_lex_state = 2}, - [2403] = {.lex_state = 575}, - [2404] = {.lex_state = 576}, - [2405] = {.lex_state = 647}, - [2406] = {.lex_state = 649}, - [2407] = {.lex_state = 577}, - [2408] = {.lex_state = 575}, - [2409] = {.lex_state = 649}, - [2410] = {.lex_state = 644}, - [2411] = {.lex_state = 575}, - [2412] = {.lex_state = 576}, - [2413] = {.lex_state = 577}, - [2414] = {.lex_state = 577}, - [2415] = {.lex_state = 577}, - [2416] = {.lex_state = 577}, - [2417] = {.lex_state = 577}, - [2418] = {.lex_state = 52}, - [2419] = {.lex_state = 647}, - [2420] = {.lex_state = 575}, - [2421] = {.lex_state = 644}, - [2422] = {.lex_state = 575}, - [2423] = {.lex_state = 638}, - [2424] = {.lex_state = 649}, - [2425] = {.lex_state = 576}, - [2426] = {.lex_state = 644}, - [2427] = {.lex_state = 51}, - [2428] = {.lex_state = 51}, - [2429] = {.lex_state = 51}, - [2430] = {.lex_state = 576}, - [2431] = {.lex_state = 638}, - [2432] = {.lex_state = 576}, - [2433] = {.lex_state = 649}, - [2434] = {.lex_state = 576}, - [2435] = {.lex_state = 653}, - [2436] = {.lex_state = 649}, - [2437] = {.lex_state = 51}, - [2438] = {.lex_state = 649}, - [2439] = {.lex_state = 49, .external_lex_state = 2}, - [2440] = {.lex_state = 644}, - [2441] = {.lex_state = 576}, - [2442] = {.lex_state = 56}, - [2443] = {.lex_state = 646}, - [2444] = {.lex_state = 57}, - [2445] = {.lex_state = 2}, - [2446] = {.lex_state = 576}, - [2447] = {.lex_state = 651}, - [2448] = {.lex_state = 644}, - [2449] = {.lex_state = 648}, - [2450] = {.lex_state = 644}, - [2451] = {.lex_state = 576}, - [2452] = {.lex_state = 56}, - [2453] = {.lex_state = 649}, - [2454] = {.lex_state = 576}, - [2455] = {.lex_state = 576}, - [2456] = {.lex_state = 576}, - [2457] = {.lex_state = 576}, - [2458] = {.lex_state = 576}, - [2459] = {.lex_state = 575}, - [2460] = {.lex_state = 648}, - [2461] = {.lex_state = 2}, - [2462] = {.lex_state = 576}, - [2463] = {.lex_state = 576}, - [2464] = {.lex_state = 156, .external_lex_state = 2}, - [2465] = {.lex_state = 576}, + [2323] = {.lex_state = 1, .external_lex_state = 2}, + [2324] = {.lex_state = 1, .external_lex_state = 2}, + [2325] = {.lex_state = 583}, + [2326] = {.lex_state = 636}, + [2327] = {.lex_state = 1, .external_lex_state = 2}, + [2328] = {.lex_state = 583}, + [2329] = {.lex_state = 583}, + [2330] = {.lex_state = 583}, + [2331] = {.lex_state = 636}, + [2332] = {.lex_state = 583}, + [2333] = {.lex_state = 634}, + [2334] = {.lex_state = 643}, + [2335] = {.lex_state = 39, .external_lex_state = 2}, + [2336] = {.lex_state = 39, .external_lex_state = 2}, + [2337] = {.lex_state = 4, .external_lex_state = 2}, + [2338] = {.lex_state = 39, .external_lex_state = 2}, + [2339] = {.lex_state = 39, .external_lex_state = 2}, + [2340] = {.lex_state = 637}, + [2341] = {.lex_state = 5, .external_lex_state = 2}, + [2342] = {.lex_state = 5, .external_lex_state = 2}, + [2343] = {.lex_state = 2, .external_lex_state = 2}, + [2344] = {.lex_state = 6, .external_lex_state = 2}, + [2345] = {.lex_state = 645}, + [2346] = {.lex_state = 634}, + [2347] = {.lex_state = 634}, + [2348] = {.lex_state = 7, .external_lex_state = 2}, + [2349] = {.lex_state = 647}, + [2350] = {.lex_state = 6, .external_lex_state = 2}, + [2351] = {.lex_state = 639}, + [2352] = {.lex_state = 643}, + [2353] = {.lex_state = 637}, + [2354] = {.lex_state = 583}, + [2355] = {.lex_state = 583}, + [2356] = {.lex_state = 583}, + [2357] = {.lex_state = 583}, + [2358] = {.lex_state = 3, .external_lex_state = 2}, + [2359] = {.lex_state = 645}, + [2360] = {.lex_state = 640}, + [2361] = {.lex_state = 5, .external_lex_state = 2}, + [2362] = {.lex_state = 634}, + [2363] = {.lex_state = 5, .external_lex_state = 2}, + [2364] = {.lex_state = 5, .external_lex_state = 2}, + [2365] = {.lex_state = 634}, + [2366] = {.lex_state = 634}, + [2367] = {.lex_state = 637}, + [2368] = {.lex_state = 4, .external_lex_state = 2}, + [2369] = {.lex_state = 641}, + [2370] = {.lex_state = 634}, + [2371] = {.lex_state = 647}, + [2372] = {.lex_state = 5, .external_lex_state = 2}, + [2373] = {.lex_state = 5, .external_lex_state = 2}, + [2374] = {.lex_state = 7, .external_lex_state = 2}, + [2375] = {.lex_state = 7, .external_lex_state = 2}, + [2376] = {.lex_state = 5, .external_lex_state = 2}, + [2377] = {.lex_state = 647}, + [2378] = {.lex_state = 5, .external_lex_state = 2}, + [2379] = {.lex_state = 5, .external_lex_state = 2}, + [2380] = {.lex_state = 647}, + [2381] = {.lex_state = 637}, + [2382] = {.lex_state = 634}, + [2383] = {.lex_state = 7, .external_lex_state = 2}, + [2384] = {.lex_state = 7, .external_lex_state = 2}, + [2385] = {.lex_state = 7, .external_lex_state = 2}, + [2386] = {.lex_state = 7, .external_lex_state = 2}, + [2387] = {.lex_state = 645}, + [2388] = {.lex_state = 7, .external_lex_state = 2}, + [2389] = {.lex_state = 647}, + [2390] = {.lex_state = 644}, + [2391] = {.lex_state = 580}, + [2392] = {.lex_state = 7, .external_lex_state = 2}, + [2393] = {.lex_state = 580}, + [2394] = {.lex_state = 649}, + [2395] = {.lex_state = 4, .external_lex_state = 2}, + [2396] = {.lex_state = 7, .external_lex_state = 2}, + [2397] = {.lex_state = 4, .external_lex_state = 2}, + [2398] = {.lex_state = 645}, + [2399] = {.lex_state = 577}, + [2400] = {.lex_state = 5, .external_lex_state = 2}, + [2401] = {.lex_state = 634}, + [2402] = {.lex_state = 634}, + [2403] = {.lex_state = 634}, + [2404] = {.lex_state = 644}, + [2405] = {.lex_state = 579}, + [2406] = {.lex_state = 56}, + [2407] = {.lex_state = 5, .external_lex_state = 2}, + [2408] = {.lex_state = 647}, + [2409] = {.lex_state = 5, .external_lex_state = 2}, + [2410] = {.lex_state = 647}, + [2411] = {.lex_state = 5, .external_lex_state = 2}, + [2412] = {.lex_state = 579}, + [2413] = {.lex_state = 579}, + [2414] = {.lex_state = 5, .external_lex_state = 2}, + [2415] = {.lex_state = 5, .external_lex_state = 2}, + [2416] = {.lex_state = 646}, + [2417] = {.lex_state = 634}, + [2418] = {.lex_state = 640}, + [2419] = {.lex_state = 579}, + [2420] = {.lex_state = 646}, + [2421] = {.lex_state = 5, .external_lex_state = 2}, + [2422] = {.lex_state = 651}, + [2423] = {.lex_state = 5, .external_lex_state = 2}, + [2424] = {.lex_state = 5, .external_lex_state = 2}, + [2425] = {.lex_state = 649}, + [2426] = {.lex_state = 5, .external_lex_state = 2}, + [2427] = {.lex_state = 5, .external_lex_state = 2}, + [2428] = {.lex_state = 5, .external_lex_state = 2}, + [2429] = {.lex_state = 651}, + [2430] = {.lex_state = 5, .external_lex_state = 2}, + [2431] = {.lex_state = 647}, + [2432] = {.lex_state = 5, .external_lex_state = 2}, + [2433] = {.lex_state = 10}, + [2434] = {.lex_state = 5, .external_lex_state = 2}, + [2435] = {.lex_state = 5, .external_lex_state = 2}, + [2436] = {.lex_state = 641}, + [2437] = {.lex_state = 5, .external_lex_state = 2}, + [2438] = {.lex_state = 5, .external_lex_state = 2}, + [2439] = {.lex_state = 648}, + [2440] = {.lex_state = 653}, + [2441] = {.lex_state = 579}, + [2442] = {.lex_state = 648}, + [2443] = {.lex_state = 579}, + [2444] = {.lex_state = 579}, + [2445] = {.lex_state = 646}, + [2446] = {.lex_state = 653}, + [2447] = {.lex_state = 578}, + [2448] = {.lex_state = 653}, + [2449] = {.lex_state = 577}, + [2450] = {.lex_state = 56}, + [2451] = {.lex_state = 646}, + [2452] = {.lex_state = 57}, + [2453] = {.lex_state = 578}, + [2454] = {.lex_state = 648}, + [2455] = {.lex_state = 577}, + [2456] = {.lex_state = 60}, + [2457] = {.lex_state = 58}, + [2458] = {.lex_state = 57}, + [2459] = {.lex_state = 648}, + [2460] = {.lex_state = 577}, + [2461] = {.lex_state = 577}, + [2462] = {.lex_state = 648}, + [2463] = {.lex_state = 642}, + [2464] = {.lex_state = 578}, + [2465] = {.lex_state = 651}, [2466] = {.lex_state = 577}, - [2467] = {.lex_state = 2}, - [2468] = {.lex_state = 650}, - [2469] = {.lex_state = 644}, - [2470] = {.lex_state = 577}, - [2471] = {.lex_state = 655}, - [2472] = {.lex_state = 576}, - [2473] = {.lex_state = 57}, - [2474] = {.lex_state = 577}, - [2475] = {.lex_state = 577}, - [2476] = {.lex_state = 2}, + [2467] = {.lex_state = 578}, + [2468] = {.lex_state = 579}, + [2469] = {.lex_state = 579}, + [2470] = {.lex_state = 579}, + [2471] = {.lex_state = 653}, + [2472] = {.lex_state = 579}, + [2473] = {.lex_state = 579}, + [2474] = {.lex_state = 651}, + [2475] = {.lex_state = 650}, + [2476] = {.lex_state = 653}, [2477] = {.lex_state = 577}, - [2478] = {.lex_state = 577}, - [2479] = {.lex_state = 577}, - [2480] = {.lex_state = 651}, - [2481] = {.lex_state = 577}, - [2482] = {.lex_state = 58}, - [2483] = {.lex_state = 57}, - [2484] = {.lex_state = 156, .external_lex_state = 2}, - [2485] = {.lex_state = 156, .external_lex_state = 2}, - [2486] = {.lex_state = 576}, - [2487] = {.lex_state = 650}, - [2488] = {.lex_state = 54}, - [2489] = {.lex_state = 576}, - [2490] = {.lex_state = 576}, - [2491] = {.lex_state = 2}, - [2492] = {.lex_state = 576}, - [2493] = {.lex_state = 648}, - [2494] = {.lex_state = 2}, - [2495] = {.lex_state = 156, .external_lex_state = 2}, - [2496] = {.lex_state = 577}, - [2497] = {.lex_state = 577}, - [2498] = {.lex_state = 2}, - [2499] = {.lex_state = 655}, - [2500] = {.lex_state = 577}, - [2501] = {.lex_state = 577}, - [2502] = {.lex_state = 577}, - [2503] = {.lex_state = 577}, - [2504] = {.lex_state = 653}, - [2505] = {.lex_state = 650}, - [2506] = {.lex_state = 576}, - [2507] = {.lex_state = 57}, - [2508] = {.lex_state = 2}, - [2509] = {.lex_state = 650}, - [2510] = {.lex_state = 648}, - [2511] = {.lex_state = 2}, - [2512] = {.lex_state = 576}, - [2513] = {.lex_state = 577}, - [2514] = {.lex_state = 650}, - [2515] = {.lex_state = 657}, - [2516] = {.lex_state = 576}, - [2517] = {.lex_state = 2}, - [2518] = {.lex_state = 576}, - [2519] = {.lex_state = 576}, - [2520] = {.lex_state = 577}, - [2521] = {.lex_state = 576}, - [2522] = {.lex_state = 657}, - [2523] = {.lex_state = 657}, - [2524] = {.lex_state = 657}, - [2525] = {.lex_state = 59}, - [2526] = {.lex_state = 2}, - [2527] = {.lex_state = 657}, - [2528] = {.lex_state = 657}, - [2529] = {.lex_state = 650}, - [2530] = {.lex_state = 2}, - [2531] = {.lex_state = 650}, - [2532] = {.lex_state = 576}, - [2533] = {.lex_state = 657}, - [2534] = {.lex_state = 657}, - [2535] = {.lex_state = 657}, - [2536] = {.lex_state = 2}, - [2537] = {.lex_state = 577}, - [2538] = {.lex_state = 576}, - [2539] = {.lex_state = 576}, - [2540] = {.lex_state = 2}, - [2541] = {.lex_state = 2}, - [2542] = {.lex_state = 576}, - [2543] = {.lex_state = 654}, - [2544] = {.lex_state = 2}, - [2545] = {.lex_state = 576}, - [2546] = {.lex_state = 657}, - [2547] = {.lex_state = 577}, - [2548] = {.lex_state = 2}, - [2549] = {.lex_state = 576}, - [2550] = {.lex_state = 652}, - [2551] = {.lex_state = 576}, - [2552] = {.lex_state = 2}, - [2553] = {.lex_state = 576}, - [2554] = {.lex_state = 576}, - [2555] = {.lex_state = 655}, - [2556] = {.lex_state = 2}, - [2557] = {.lex_state = 576}, - [2558] = {.lex_state = 657}, - [2559] = {.lex_state = 650}, - [2560] = {.lex_state = 650}, - [2561] = {.lex_state = 2}, - [2562] = {.lex_state = 577}, - [2563] = {.lex_state = 577}, - [2564] = {.lex_state = 577}, - [2565] = {.lex_state = 650}, - [2566] = {.lex_state = 576}, - [2567] = {.lex_state = 577}, - [2568] = {.lex_state = 2}, - [2569] = {.lex_state = 657}, - [2570] = {.lex_state = 2}, - [2571] = {.lex_state = 657}, - [2572] = {.lex_state = 655}, - [2573] = {.lex_state = 576}, - [2574] = {.lex_state = 577}, - [2575] = {.lex_state = 2}, - [2576] = {.lex_state = 577}, - [2577] = {.lex_state = 59}, - [2578] = {.lex_state = 577}, - [2579] = {.lex_state = 577}, - [2580] = {.lex_state = 577}, - [2581] = {.lex_state = 577}, - [2582] = {.lex_state = 652}, - [2583] = {.lex_state = 657}, - [2584] = {.lex_state = 2}, - [2585] = {.lex_state = 576}, - [2586] = {.lex_state = 656}, - [2587] = {.lex_state = 657}, - [2588] = {.lex_state = 60}, - [2589] = {.lex_state = 60}, - [2590] = {.lex_state = 112}, - [2591] = {.lex_state = 657}, - [2592] = {.lex_state = 2}, - [2593] = {.lex_state = 577}, - [2594] = {.lex_state = 576}, - [2595] = {.lex_state = 657}, - [2596] = {.lex_state = 640}, - [2597] = {.lex_state = 659}, - [2598] = {.lex_state = 640}, - [2599] = {.lex_state = 576}, - [2600] = {.lex_state = 657}, - [2601] = {.lex_state = 640}, - [2602] = {.lex_state = 576}, - [2603] = {.lex_state = 657}, - [2604] = {.lex_state = 640}, - [2605] = {.lex_state = 640}, - [2606] = {.lex_state = 640}, - [2607] = {.lex_state = 640}, - [2608] = {.lex_state = 640}, - [2609] = {.lex_state = 576}, - [2610] = {.lex_state = 60}, - [2611] = {.lex_state = 576}, - [2612] = {.lex_state = 60}, - [2613] = {.lex_state = 577}, - [2614] = {.lex_state = 657}, - [2615] = {.lex_state = 640}, - [2616] = {.lex_state = 2}, - [2617] = {.lex_state = 576}, - [2618] = {.lex_state = 657}, - [2619] = {.lex_state = 657}, - [2620] = {.lex_state = 657}, - [2621] = {.lex_state = 2}, - [2622] = {.lex_state = 640}, - [2623] = {.lex_state = 2}, - [2624] = {.lex_state = 2}, - [2625] = {.lex_state = 576}, - [2626] = {.lex_state = 657}, - [2627] = {.lex_state = 640}, - [2628] = {.lex_state = 576}, - [2629] = {.lex_state = 654}, - [2630] = {.lex_state = 576}, - [2631] = {.lex_state = 2}, - [2632] = {.lex_state = 577}, - [2633] = {.lex_state = 576}, - [2634] = {.lex_state = 576}, - [2635] = {.lex_state = 576}, - [2636] = {.lex_state = 576}, - [2637] = {.lex_state = 60}, - [2638] = {.lex_state = 656}, - [2639] = {.lex_state = 657}, - [2640] = {.lex_state = 576}, - [2641] = {.lex_state = 657}, - [2642] = {.lex_state = 657}, - [2643] = {.lex_state = 577}, - [2644] = {.lex_state = 640}, - [2645] = {.lex_state = 640}, - [2646] = {.lex_state = 577}, - [2647] = {.lex_state = 577}, - [2648] = {.lex_state = 577}, - [2649] = {.lex_state = 577}, - [2650] = {.lex_state = 577}, - [2651] = {.lex_state = 62}, - [2652] = {.lex_state = 577}, - [2653] = {.lex_state = 577}, - [2654] = {.lex_state = 577}, - [2655] = {.lex_state = 577}, - [2656] = {.lex_state = 577}, - [2657] = {.lex_state = 577}, - [2658] = {.lex_state = 577}, - [2659] = {.lex_state = 577}, - [2660] = {.lex_state = 577}, - [2661] = {.lex_state = 577}, - [2662] = {.lex_state = 577}, - [2663] = {.lex_state = 577}, - [2664] = {.lex_state = 577}, - [2665] = {.lex_state = 577}, - [2666] = {.lex_state = 577}, - [2667] = {.lex_state = 577}, - [2668] = {.lex_state = 577}, - [2669] = {.lex_state = 577}, - [2670] = {.lex_state = 577}, - [2671] = {.lex_state = 577}, - [2672] = {.lex_state = 577}, - [2673] = {.lex_state = 577}, - [2674] = {.lex_state = 577}, - [2675] = {.lex_state = 577}, - [2676] = {.lex_state = 577}, - [2677] = {.lex_state = 577}, - [2678] = {.lex_state = 577}, - [2679] = {.lex_state = 577}, - [2680] = {.lex_state = 577}, - [2681] = {.lex_state = 652}, - [2682] = {.lex_state = 640}, - [2683] = {.lex_state = 61}, - [2684] = {.lex_state = 577}, - [2685] = {.lex_state = 577}, - [2686] = {.lex_state = 577}, - [2687] = {.lex_state = 577}, - [2688] = {.lex_state = 577}, - [2689] = {.lex_state = 577}, - [2690] = {.lex_state = 577}, - [2691] = {.lex_state = 577}, - [2692] = {.lex_state = 577}, - [2693] = {.lex_state = 577}, - [2694] = {.lex_state = 577}, - [2695] = {.lex_state = 658}, - [2696] = {.lex_state = 656}, - [2697] = {.lex_state = 577}, - [2698] = {.lex_state = 577}, - [2699] = {.lex_state = 658}, - [2700] = {.lex_state = 577}, - [2701] = {.lex_state = 640}, - [2702] = {.lex_state = 577}, - [2703] = {.lex_state = 577}, - [2704] = {.lex_state = 640}, - [2705] = {.lex_state = 640}, - [2706] = {.lex_state = 640}, - [2707] = {.lex_state = 658}, - [2708] = {.lex_state = 658}, - [2709] = {.lex_state = 656}, - [2710] = {.lex_state = 658}, - [2711] = {.lex_state = 576}, - [2712] = {.lex_state = 577}, - [2713] = {.lex_state = 658}, - [2714] = {.lex_state = 577}, - [2715] = {.lex_state = 577}, - [2716] = {.lex_state = 658}, - [2717] = {.lex_state = 658}, - [2718] = {.lex_state = 577}, - [2719] = {.lex_state = 577}, - [2720] = {.lex_state = 577}, - [2721] = {.lex_state = 659}, - [2722] = {.lex_state = 658}, - [2723] = {.lex_state = 658}, - [2724] = {.lex_state = 577}, - [2725] = {.lex_state = 577}, - [2726] = {.lex_state = 577}, - [2727] = {.lex_state = 577}, - [2728] = {.lex_state = 640}, - [2729] = {.lex_state = 577}, - [2730] = {.lex_state = 577}, - [2731] = {.lex_state = 577}, - [2732] = {.lex_state = 577}, - [2733] = {.lex_state = 630}, - [2734] = {.lex_state = 630}, - [2735] = {.lex_state = 577}, - [2736] = {.lex_state = 630}, - [2737] = {.lex_state = 630}, - [2738] = {.lex_state = 577}, - [2739] = {.lex_state = 577}, - [2740] = {.lex_state = 577}, - [2741] = {.lex_state = 577}, - [2742] = {.lex_state = 577}, - [2743] = {.lex_state = 577}, - [2744] = {.lex_state = 577}, - [2745] = {.lex_state = 577}, - [2746] = {.lex_state = 577}, - [2747] = {.lex_state = 577}, - [2748] = {.lex_state = 577}, - [2749] = {.lex_state = 577}, - [2750] = {.lex_state = 577}, - [2751] = {.lex_state = 577}, - [2752] = {.lex_state = 577}, - [2753] = {.lex_state = 577}, - [2754] = {.lex_state = 577}, - [2755] = {.lex_state = 577}, - [2756] = {.lex_state = 640}, - [2757] = {.lex_state = 577}, - [2758] = {.lex_state = 577}, - [2759] = {.lex_state = 577}, - [2760] = {.lex_state = 576}, + [2478] = {.lex_state = 578}, + [2479] = {.lex_state = 652}, + [2480] = {.lex_state = 577}, + [2481] = {.lex_state = 578}, + [2482] = {.lex_state = 56}, + [2483] = {.lex_state = 653}, + [2484] = {.lex_state = 56}, + [2485] = {.lex_state = 648}, + [2486] = {.lex_state = 655}, + [2487] = {.lex_state = 10}, + [2488] = {.lex_state = 578}, + [2489] = {.lex_state = 578}, + [2490] = {.lex_state = 648}, + [2491] = {.lex_state = 56}, + [2492] = {.lex_state = 648}, + [2493] = {.lex_state = 578}, + [2494] = {.lex_state = 62}, + [2495] = {.lex_state = 56}, + [2496] = {.lex_state = 650}, + [2497] = {.lex_state = 648}, + [2498] = {.lex_state = 578}, + [2499] = {.lex_state = 578}, + [2500] = {.lex_state = 61}, + [2501] = {.lex_state = 578}, + [2502] = {.lex_state = 642}, + [2503] = {.lex_state = 61}, + [2504] = {.lex_state = 578}, + [2505] = {.lex_state = 653}, + [2506] = {.lex_state = 653}, + [2507] = {.lex_state = 653}, + [2508] = {.lex_state = 653}, + [2509] = {.lex_state = 578}, + [2510] = {.lex_state = 657}, + [2511] = {.lex_state = 578}, + [2512] = {.lex_state = 10}, + [2513] = {.lex_state = 652}, + [2514] = {.lex_state = 578}, + [2515] = {.lex_state = 659}, + [2516] = {.lex_state = 578}, + [2517] = {.lex_state = 655}, + [2518] = {.lex_state = 579}, + [2519] = {.lex_state = 10}, + [2520] = {.lex_state = 165, .external_lex_state = 2}, + [2521] = {.lex_state = 63}, + [2522] = {.lex_state = 578}, + [2523] = {.lex_state = 654}, + [2524] = {.lex_state = 578}, + [2525] = {.lex_state = 579}, + [2526] = {.lex_state = 579}, + [2527] = {.lex_state = 654}, + [2528] = {.lex_state = 648}, + [2529] = {.lex_state = 579}, + [2530] = {.lex_state = 579}, + [2531] = {.lex_state = 579}, + [2532] = {.lex_state = 578}, + [2533] = {.lex_state = 10}, + [2534] = {.lex_state = 165, .external_lex_state = 2}, + [2535] = {.lex_state = 59}, + [2536] = {.lex_state = 578}, + [2537] = {.lex_state = 579}, + [2538] = {.lex_state = 62}, + [2539] = {.lex_state = 578}, + [2540] = {.lex_state = 62}, + [2541] = {.lex_state = 578}, + [2542] = {.lex_state = 654}, + [2543] = {.lex_state = 659}, + [2544] = {.lex_state = 579}, + [2545] = {.lex_state = 62}, + [2546] = {.lex_state = 578}, + [2547] = {.lex_state = 579}, + [2548] = {.lex_state = 165, .external_lex_state = 2}, + [2549] = {.lex_state = 10}, + [2550] = {.lex_state = 579}, + [2551] = {.lex_state = 579}, + [2552] = {.lex_state = 579}, + [2553] = {.lex_state = 579}, + [2554] = {.lex_state = 579}, + [2555] = {.lex_state = 657}, + [2556] = {.lex_state = 652}, + [2557] = {.lex_state = 578}, + [2558] = {.lex_state = 578}, + [2559] = {.lex_state = 10}, + [2560] = {.lex_state = 165, .external_lex_state = 2}, + [2561] = {.lex_state = 652}, + [2562] = {.lex_state = 10}, + [2563] = {.lex_state = 654}, + [2564] = {.lex_state = 654}, + [2565] = {.lex_state = 10}, + [2566] = {.lex_state = 579}, + [2567] = {.lex_state = 10}, + [2568] = {.lex_state = 661}, + [2569] = {.lex_state = 10}, + [2570] = {.lex_state = 10}, + [2571] = {.lex_state = 661}, + [2572] = {.lex_state = 661}, + [2573] = {.lex_state = 654}, + [2574] = {.lex_state = 10}, + [2575] = {.lex_state = 578}, + [2576] = {.lex_state = 661}, + [2577] = {.lex_state = 579}, + [2578] = {.lex_state = 64}, + [2579] = {.lex_state = 578}, + [2580] = {.lex_state = 578}, + [2581] = {.lex_state = 64}, + [2582] = {.lex_state = 578}, + [2583] = {.lex_state = 578}, + [2584] = {.lex_state = 654}, + [2585] = {.lex_state = 661}, + [2586] = {.lex_state = 579}, + [2587] = {.lex_state = 578}, + [2588] = {.lex_state = 661}, + [2589] = {.lex_state = 578}, + [2590] = {.lex_state = 10}, + [2591] = {.lex_state = 578}, + [2592] = {.lex_state = 578}, + [2593] = {.lex_state = 10}, + [2594] = {.lex_state = 579}, + [2595] = {.lex_state = 654}, + [2596] = {.lex_state = 578}, + [2597] = {.lex_state = 661}, + [2598] = {.lex_state = 578}, + [2599] = {.lex_state = 658}, + [2600] = {.lex_state = 578}, + [2601] = {.lex_state = 661}, + [2602] = {.lex_state = 654}, + [2603] = {.lex_state = 578}, + [2604] = {.lex_state = 579}, + [2605] = {.lex_state = 10}, + [2606] = {.lex_state = 579}, + [2607] = {.lex_state = 10}, + [2608] = {.lex_state = 578}, + [2609] = {.lex_state = 10}, + [2610] = {.lex_state = 659}, + [2611] = {.lex_state = 10}, + [2612] = {.lex_state = 10}, + [2613] = {.lex_state = 10}, + [2614] = {.lex_state = 661}, + [2615] = {.lex_state = 654}, + [2616] = {.lex_state = 579}, + [2617] = {.lex_state = 661}, + [2618] = {.lex_state = 661}, + [2619] = {.lex_state = 10}, + [2620] = {.lex_state = 578}, + [2621] = {.lex_state = 578}, + [2622] = {.lex_state = 579}, + [2623] = {.lex_state = 10}, + [2624] = {.lex_state = 579}, + [2625] = {.lex_state = 579}, + [2626] = {.lex_state = 661}, + [2627] = {.lex_state = 661}, + [2628] = {.lex_state = 579}, + [2629] = {.lex_state = 579}, + [2630] = {.lex_state = 579}, + [2631] = {.lex_state = 656}, + [2632] = {.lex_state = 579}, + [2633] = {.lex_state = 659}, + [2634] = {.lex_state = 10}, + [2635] = {.lex_state = 640}, + [2636] = {.lex_state = 578}, + [2637] = {.lex_state = 579}, + [2638] = {.lex_state = 640}, + [2639] = {.lex_state = 658}, + [2640] = {.lex_state = 661}, + [2641] = {.lex_state = 663}, + [2642] = {.lex_state = 640}, + [2643] = {.lex_state = 661}, + [2644] = {.lex_state = 10}, + [2645] = {.lex_state = 578}, + [2646] = {.lex_state = 578}, + [2647] = {.lex_state = 661}, + [2648] = {.lex_state = 640}, + [2649] = {.lex_state = 640}, + [2650] = {.lex_state = 640}, + [2651] = {.lex_state = 640}, + [2652] = {.lex_state = 640}, + [2653] = {.lex_state = 65}, + [2654] = {.lex_state = 118}, + [2655] = {.lex_state = 578}, + [2656] = {.lex_state = 578}, + [2657] = {.lex_state = 661}, + [2658] = {.lex_state = 578}, + [2659] = {.lex_state = 661}, + [2660] = {.lex_state = 661}, + [2661] = {.lex_state = 578}, + [2662] = {.lex_state = 10}, + [2663] = {.lex_state = 578}, + [2664] = {.lex_state = 661}, + [2665] = {.lex_state = 578}, + [2666] = {.lex_state = 656}, + [2667] = {.lex_state = 65}, + [2668] = {.lex_state = 640}, + [2669] = {.lex_state = 10}, + [2670] = {.lex_state = 661}, + [2671] = {.lex_state = 578}, + [2672] = {.lex_state = 10}, + [2673] = {.lex_state = 579}, + [2674] = {.lex_state = 578}, + [2675] = {.lex_state = 660}, + [2676] = {.lex_state = 640}, + [2677] = {.lex_state = 661}, + [2678] = {.lex_state = 578}, + [2679] = {.lex_state = 579}, + [2680] = {.lex_state = 640}, + [2681] = {.lex_state = 661}, + [2682] = {.lex_state = 65}, + [2683] = {.lex_state = 661}, + [2684] = {.lex_state = 661}, + [2685] = {.lex_state = 65}, + [2686] = {.lex_state = 661}, + [2687] = {.lex_state = 10}, + [2688] = {.lex_state = 65}, + [2689] = {.lex_state = 578}, + [2690] = {.lex_state = 10}, + [2691] = {.lex_state = 578}, + [2692] = {.lex_state = 661}, + [2693] = {.lex_state = 578}, + [2694] = {.lex_state = 10}, + [2695] = {.lex_state = 660}, + [2696] = {.lex_state = 579}, + [2697] = {.lex_state = 640}, + [2698] = {.lex_state = 579}, + [2699] = {.lex_state = 579}, + [2700] = {.lex_state = 579}, + [2701] = {.lex_state = 579}, + [2702] = {.lex_state = 579}, + [2703] = {.lex_state = 579}, + [2704] = {.lex_state = 579}, + [2705] = {.lex_state = 579}, + [2706] = {.lex_state = 579}, + [2707] = {.lex_state = 640}, + [2708] = {.lex_state = 579}, + [2709] = {.lex_state = 579}, + [2710] = {.lex_state = 634}, + [2711] = {.lex_state = 579}, + [2712] = {.lex_state = 579}, + [2713] = {.lex_state = 640}, + [2714] = {.lex_state = 579}, + [2715] = {.lex_state = 579}, + [2716] = {.lex_state = 634}, + [2717] = {.lex_state = 634}, + [2718] = {.lex_state = 579}, + [2719] = {.lex_state = 579}, + [2720] = {.lex_state = 579}, + [2721] = {.lex_state = 579}, + [2722] = {.lex_state = 579}, + [2723] = {.lex_state = 579}, + [2724] = {.lex_state = 662}, + [2725] = {.lex_state = 579}, + [2726] = {.lex_state = 579}, + [2727] = {.lex_state = 579}, + [2728] = {.lex_state = 634}, + [2729] = {.lex_state = 662}, + [2730] = {.lex_state = 579}, + [2731] = {.lex_state = 579}, + [2732] = {.lex_state = 662}, + [2733] = {.lex_state = 579}, + [2734] = {.lex_state = 634}, + [2735] = {.lex_state = 579}, + [2736] = {.lex_state = 579}, + [2737] = {.lex_state = 579}, + [2738] = {.lex_state = 579}, + [2739] = {.lex_state = 579}, + [2740] = {.lex_state = 579}, + [2741] = {.lex_state = 579}, + [2742] = {.lex_state = 579}, + [2743] = {.lex_state = 579}, + [2744] = {.lex_state = 579}, + [2745] = {.lex_state = 662}, + [2746] = {.lex_state = 579}, + [2747] = {.lex_state = 579}, + [2748] = {.lex_state = 660}, + [2749] = {.lex_state = 662}, + [2750] = {.lex_state = 640}, + [2751] = {.lex_state = 579}, + [2752] = {.lex_state = 579}, + [2753] = {.lex_state = 579}, + [2754] = {.lex_state = 579}, + [2755] = {.lex_state = 579}, + [2756] = {.lex_state = 579}, + [2757] = {.lex_state = 579}, + [2758] = {.lex_state = 579}, + [2759] = {.lex_state = 579}, + [2760] = {.lex_state = 579}, [2761] = {.lex_state = 640}, - [2762] = {.lex_state = 630}, - [2763] = {.lex_state = 577}, - [2764] = {.lex_state = 658}, - [2765] = {.lex_state = 577}, - [2766] = {.lex_state = 577}, - [2767] = {.lex_state = 577}, - [2768] = {.lex_state = 658}, - [2769] = {.lex_state = 658}, - [2770] = {.lex_state = 577}, - [2771] = {.lex_state = 577}, - [2772] = {.lex_state = 577}, - [2773] = {.lex_state = 577}, - [2774] = {.lex_state = 577}, - [2775] = {.lex_state = 577}, - [2776] = {.lex_state = 577}, - [2777] = {.lex_state = 577}, - [2778] = {.lex_state = 577}, - [2779] = {.lex_state = 577}, - [2780] = {.lex_state = 577}, - [2781] = {.lex_state = 577}, - [2782] = {.lex_state = 577}, - [2783] = {.lex_state = 577}, - [2784] = {.lex_state = 640}, - [2785] = {.lex_state = 2}, - [2786] = {.lex_state = 577}, - [2787] = {.lex_state = 2}, - [2788] = {.lex_state = 577}, - [2789] = {.lex_state = 576}, - [2790] = {.lex_state = 576}, - [2791] = {.lex_state = 2}, - [2792] = {.lex_state = 2}, - [2793] = {.lex_state = 2}, - [2794] = {.lex_state = 2}, - [2795] = {.lex_state = 2}, - [2796] = {.lex_state = 2}, - [2797] = {.lex_state = 577}, - [2798] = {.lex_state = 577}, - [2799] = {.lex_state = 577}, - [2800] = {.lex_state = 577}, - [2801] = {.lex_state = 577}, - [2802] = {.lex_state = 577}, - [2803] = {.lex_state = 577}, - [2804] = {.lex_state = 577}, - [2805] = {.lex_state = 577}, - [2806] = {.lex_state = 577}, - [2807] = {.lex_state = 577}, - [2808] = {.lex_state = 577}, - [2809] = {.lex_state = 577}, - [2810] = {.lex_state = 577}, - [2811] = {.lex_state = 577}, - [2812] = {.lex_state = 577}, - [2813] = {.lex_state = 577}, - [2814] = {.lex_state = 577}, - [2815] = {.lex_state = 657}, - [2816] = {.lex_state = 658}, - [2817] = {.lex_state = 658}, - [2818] = {.lex_state = 577}, - [2819] = {.lex_state = 658}, - [2820] = {.lex_state = 630}, - [2821] = {.lex_state = 2}, - [2822] = {.lex_state = 576}, - [2823] = {.lex_state = 577}, - [2824] = {.lex_state = 630}, - [2825] = {.lex_state = 63}, - [2826] = {.lex_state = 2}, - [2827] = {.lex_state = 577}, - [2828] = {.lex_state = 2}, - [2829] = {.lex_state = 112}, - [2830] = {.lex_state = 576}, - [2831] = {.lex_state = 577}, - [2832] = {.lex_state = 630}, - [2833] = {.lex_state = 576}, - [2834] = {.lex_state = 630}, - [2835] = {.lex_state = 112}, - [2836] = {.lex_state = 658}, - [2837] = {.lex_state = 658}, - [2838] = {.lex_state = 658}, - [2839] = {.lex_state = 624}, - [2840] = {.lex_state = 624}, - [2841] = {.lex_state = 577}, - [2842] = {.lex_state = 112}, - [2843] = {.lex_state = 2}, - [2844] = {.lex_state = 577}, - [2845] = {.lex_state = 577}, - [2846] = {.lex_state = 577}, - [2847] = {.lex_state = 2}, - [2848] = {.lex_state = 126, .external_lex_state = 2}, - [2849] = {.lex_state = 577}, - [2850] = {.lex_state = 577}, - [2851] = {.lex_state = 577}, - [2852] = {.lex_state = 2}, - [2853] = {.lex_state = 577}, - [2854] = {.lex_state = 577}, - [2855] = {.lex_state = 577}, - [2856] = {.lex_state = 577}, - [2857] = {.lex_state = 624}, - [2858] = {.lex_state = 577}, - [2859] = {.lex_state = 577}, - [2860] = {.lex_state = 577}, - [2861] = {.lex_state = 577}, - [2862] = {.lex_state = 577}, - [2863] = {.lex_state = 2}, - [2864] = {.lex_state = 577}, - [2865] = {.lex_state = 577}, - [2866] = {.lex_state = 2}, - [2867] = {.lex_state = 624}, - [2868] = {.lex_state = 2}, - [2869] = {.lex_state = 112}, - [2870] = {.lex_state = 112}, - [2871] = {.lex_state = 2}, - [2872] = {.lex_state = 658}, - [2873] = {.lex_state = 658}, - [2874] = {.lex_state = 112}, - [2875] = {.lex_state = 658}, - [2876] = {.lex_state = 658}, - [2877] = {.lex_state = 630}, - [2878] = {.lex_state = 630}, - [2879] = {.lex_state = 2}, - [2880] = {.lex_state = 2}, - [2881] = {.lex_state = 630}, - [2882] = {.lex_state = 652}, - [2883] = {.lex_state = 63}, - [2884] = {.lex_state = 2}, - [2885] = {.lex_state = 576}, - [2886] = {.lex_state = 2}, - [2887] = {.lex_state = 2}, - [2888] = {.lex_state = 658}, - [2889] = {.lex_state = 2}, - [2890] = {.lex_state = 577}, - [2891] = {.lex_state = 577}, - [2892] = {.lex_state = 66}, - [2893] = {.lex_state = 576}, - [2894] = {.lex_state = 658}, - [2895] = {.lex_state = 576}, - [2896] = {.lex_state = 658}, - [2897] = {.lex_state = 576}, - [2898] = {.lex_state = 71}, - [2899] = {.lex_state = 2}, - [2900] = {.lex_state = 2}, - [2901] = {.lex_state = 2}, - [2902] = {.lex_state = 2}, - [2903] = {.lex_state = 658}, - [2904] = {.lex_state = 630}, - [2905] = {.lex_state = 624}, - [2906] = {.lex_state = 2}, - [2907] = {.lex_state = 576}, - [2908] = {.lex_state = 576}, - [2909] = {.lex_state = 2}, - [2910] = {.lex_state = 2}, - [2911] = {.lex_state = 576}, - [2912] = {.lex_state = 2}, - [2913] = {.lex_state = 2}, - [2914] = {.lex_state = 2}, - [2915] = {.lex_state = 577}, - [2916] = {.lex_state = 2}, - [2917] = {.lex_state = 624}, - [2918] = {.lex_state = 577}, - [2919] = {.lex_state = 577}, - [2920] = {.lex_state = 624}, - [2921] = {.lex_state = 624}, - [2922] = {.lex_state = 576}, - [2923] = {.lex_state = 61}, - [2924] = {.lex_state = 2}, - [2925] = {.lex_state = 2}, - [2926] = {.lex_state = 624}, - [2927] = {.lex_state = 60}, - [2928] = {.lex_state = 60}, - [2929] = {.lex_state = 624}, - [2930] = {.lex_state = 624}, - [2931] = {.lex_state = 624}, - [2932] = {.lex_state = 624}, - [2933] = {.lex_state = 624}, - [2934] = {.lex_state = 2}, - [2935] = {.lex_state = 630}, - [2936] = {.lex_state = 2}, - [2937] = {.lex_state = 577}, - [2938] = {.lex_state = 577}, - [2939] = {.lex_state = 577}, - [2940] = {.lex_state = 576}, - [2941] = {.lex_state = 66}, - [2942] = {.lex_state = 2}, - [2943] = {.lex_state = 2}, - [2944] = {.lex_state = 577}, - [2945] = {.lex_state = 60}, - [2946] = {.lex_state = 577}, - [2947] = {.lex_state = 624}, - [2948] = {.lex_state = 60}, - [2949] = {.lex_state = 190}, - [2950] = {.lex_state = 577}, - [2951] = {.lex_state = 2}, - [2952] = {.lex_state = 2}, - [2953] = {.lex_state = 577}, - [2954] = {.lex_state = 2}, - [2955] = {.lex_state = 624}, - [2956] = {.lex_state = 624}, - [2957] = {.lex_state = 624}, - [2958] = {.lex_state = 576}, - [2959] = {.lex_state = 576}, - [2960] = {.lex_state = 65}, - [2961] = {.lex_state = 60}, - [2962] = {.lex_state = 624}, - [2963] = {.lex_state = 577}, - [2964] = {.lex_state = 577}, - [2965] = {.lex_state = 576}, - [2966] = {.lex_state = 577}, - [2967] = {.lex_state = 624}, - [2968] = {.lex_state = 624}, - [2969] = {.lex_state = 60}, - [2970] = {.lex_state = 624}, - [2971] = {.lex_state = 624}, - [2972] = {.lex_state = 624}, - [2973] = {.lex_state = 624}, - [2974] = {.lex_state = 624}, - [2975] = {.lex_state = 624}, - [2976] = {.lex_state = 577}, - [2977] = {.lex_state = 624}, - [2978] = {.lex_state = 64}, - [2979] = {.lex_state = 624}, - [2980] = {.lex_state = 64}, - [2981] = {.lex_state = 624}, - [2982] = {.lex_state = 624}, - [2983] = {.lex_state = 64}, - [2984] = {.lex_state = 64}, - [2985] = {.lex_state = 624}, - [2986] = {.lex_state = 577}, - [2987] = {.lex_state = 624}, - [2988] = {.lex_state = 624}, - [2989] = {.lex_state = 64}, - [2990] = {.lex_state = 2}, - [2991] = {.lex_state = 64}, - [2992] = {.lex_state = 2}, - [2993] = {.lex_state = 64}, - [2994] = {.lex_state = 64}, - [2995] = {.lex_state = 64}, - [2996] = {.lex_state = 624}, - [2997] = {.lex_state = 624}, - [2998] = {.lex_state = 624}, - [2999] = {.lex_state = 67}, - [3000] = {.lex_state = 2}, - [3001] = {.lex_state = 658}, - [3002] = {.lex_state = 2}, - [3003] = {.lex_state = 624}, - [3004] = {.lex_state = 69}, - [3005] = {.lex_state = 624}, - [3006] = {.lex_state = 624}, - [3007] = {.lex_state = 64}, - [3008] = {.lex_state = 624}, - [3009] = {.lex_state = 624}, - [3010] = {.lex_state = 624}, - [3011] = {.lex_state = 624}, - [3012] = {.lex_state = 624}, - [3013] = {.lex_state = 624}, - [3014] = {.lex_state = 64}, - [3015] = {.lex_state = 64}, - [3016] = {.lex_state = 624}, - [3017] = {.lex_state = 624}, - [3018] = {.lex_state = 624}, - [3019] = {.lex_state = 624}, - [3020] = {.lex_state = 624}, - [3021] = {.lex_state = 624}, - [3022] = {.lex_state = 624}, - [3023] = {.lex_state = 624}, - [3024] = {.lex_state = 60}, - [3025] = {.lex_state = 624}, - [3026] = {.lex_state = 2}, - [3027] = {.lex_state = 624}, - [3028] = {.lex_state = 577}, - [3029] = {.lex_state = 577}, - [3030] = {.lex_state = 624}, - [3031] = {.lex_state = 624}, - [3032] = {.lex_state = 2}, - [3033] = {.lex_state = 624}, - [3034] = {.lex_state = 2}, - [3035] = {.lex_state = 2}, - [3036] = {.lex_state = 624}, - [3037] = {.lex_state = 624}, - [3038] = {.lex_state = 2}, - [3039] = {.lex_state = 69}, - [3040] = {.lex_state = 577}, - [3041] = {.lex_state = 577}, - [3042] = {.lex_state = 577}, - [3043] = {.lex_state = 624}, - [3044] = {.lex_state = 577}, - [3045] = {.lex_state = 630}, - [3046] = {.lex_state = 576}, - [3047] = {.lex_state = 577}, - [3048] = {.lex_state = 577}, - [3049] = {.lex_state = 624}, - [3050] = {.lex_state = 624}, - [3051] = {.lex_state = 624}, - [3052] = {.lex_state = 624}, - [3053] = {.lex_state = 2}, - [3054] = {.lex_state = 2}, - [3055] = {.lex_state = 64}, - [3056] = {.lex_state = 2}, - [3057] = {.lex_state = 577}, - [3058] = {.lex_state = 2}, - [3059] = {.lex_state = 624}, - [3060] = {.lex_state = 624}, - [3061] = {.lex_state = 2}, - [3062] = {.lex_state = 2}, - [3063] = {.lex_state = 624}, - [3064] = {.lex_state = 630}, - [3065] = {.lex_state = 48, .external_lex_state = 2}, - [3066] = {.lex_state = 624}, - [3067] = {.lex_state = 624}, - [3068] = {.lex_state = 2}, - [3069] = {.lex_state = 577}, - [3070] = {.lex_state = 624}, - [3071] = {.lex_state = 577}, - [3072] = {.lex_state = 2}, - [3073] = {.lex_state = 624}, - [3074] = {.lex_state = 624}, - [3075] = {.lex_state = 66}, - [3076] = {.lex_state = 577}, - [3077] = {.lex_state = 2}, - [3078] = {.lex_state = 624}, - [3079] = {.lex_state = 577}, - [3080] = {.lex_state = 184}, - [3081] = {.lex_state = 624}, - [3082] = {.lex_state = 66}, - [3083] = {.lex_state = 2}, - [3084] = {.lex_state = 624}, - [3085] = {.lex_state = 624}, - [3086] = {.lex_state = 624}, - [3087] = {.lex_state = 577}, - [3088] = {.lex_state = 2}, - [3089] = {.lex_state = 624}, - [3090] = {.lex_state = 68}, - [3091] = {.lex_state = 624}, - [3092] = {.lex_state = 624}, - [3093] = {.lex_state = 2}, - [3094] = {.lex_state = 624}, - [3095] = {.lex_state = 2}, - [3096] = {.lex_state = 577}, - [3097] = {.lex_state = 624}, - [3098] = {.lex_state = 624}, - [3099] = {.lex_state = 187}, - [3100] = {.lex_state = 577}, - [3101] = {.lex_state = 624}, - [3102] = {.lex_state = 577}, - [3103] = {.lex_state = 624}, - [3104] = {.lex_state = 48, .external_lex_state = 2}, - [3105] = {.lex_state = 2}, - [3106] = {.lex_state = 577}, - [3107] = {.lex_state = 624}, - [3108] = {.lex_state = 630}, - [3109] = {.lex_state = 577}, - [3110] = {.lex_state = 624}, - [3111] = {.lex_state = 624}, - [3112] = {.lex_state = 624}, - [3113] = {.lex_state = 577}, - [3114] = {.lex_state = 577}, - [3115] = {.lex_state = 577}, - [3116] = {.lex_state = 2}, - [3117] = {.lex_state = 71}, - [3118] = {.lex_state = 577}, - [3119] = {.lex_state = 190}, - [3120] = {.lex_state = 2}, - [3121] = {.lex_state = 624}, - [3122] = {.lex_state = 624}, - [3123] = {.lex_state = 624}, - [3124] = {.lex_state = 624}, - [3125] = {.lex_state = 624}, - [3126] = {.lex_state = 624}, - [3127] = {.lex_state = 68}, - [3128] = {.lex_state = 64}, - [3129] = {.lex_state = 60}, - [3130] = {.lex_state = 624}, - [3131] = {.lex_state = 2}, - [3132] = {.lex_state = 624}, - [3133] = {.lex_state = 624}, - [3134] = {.lex_state = 577}, - [3135] = {.lex_state = 624}, - [3136] = {.lex_state = 577}, - [3137] = {.lex_state = 2}, - [3138] = {.lex_state = 624}, - [3139] = {.lex_state = 2}, - [3140] = {.lex_state = 2}, - [3141] = {.lex_state = 624}, - [3142] = {.lex_state = 2}, - [3143] = {.lex_state = 624}, - [3144] = {.lex_state = 2}, - [3145] = {.lex_state = 577}, - [3146] = {.lex_state = 577}, - [3147] = {.lex_state = 624}, - [3148] = {.lex_state = 624}, - [3149] = {.lex_state = 70}, - [3150] = {.lex_state = 624}, - [3151] = {.lex_state = 2}, - [3152] = {.lex_state = 624}, - [3153] = {.lex_state = 624}, - [3154] = {.lex_state = 66}, - [3155] = {.lex_state = 624}, - [3156] = {.lex_state = 624}, - [3157] = {.lex_state = 60}, - [3158] = {.lex_state = 2}, - [3159] = {.lex_state = 577}, - [3160] = {.lex_state = 66}, - [3161] = {.lex_state = 577}, - [3162] = {.lex_state = 624}, - [3163] = {.lex_state = 624}, - [3164] = {.lex_state = 70}, - [3165] = {.lex_state = 624}, - [3166] = {.lex_state = 624}, - [3167] = {.lex_state = 577}, - [3168] = {.lex_state = 624}, - [3169] = {.lex_state = 577}, - [3170] = {.lex_state = 624}, - [3171] = {.lex_state = 2}, - [3172] = {.lex_state = 2}, - [3173] = {.lex_state = 577}, - [3174] = {.lex_state = 2}, - [3175] = {.lex_state = 187}, - [3176] = {.lex_state = 624}, - [3177] = {.lex_state = 624}, - [3178] = {.lex_state = 188}, - [3179] = {.lex_state = 2}, - [3180] = {.lex_state = 624}, - [3181] = {.lex_state = 624}, - [3182] = {.lex_state = 624}, - [3183] = {.lex_state = 577}, - [3184] = {.lex_state = 577}, - [3185] = {.lex_state = 577}, - [3186] = {.lex_state = 577}, - [3187] = {.lex_state = 577}, - [3188] = {.lex_state = 577}, - [3189] = {.lex_state = 577}, - [3190] = {.lex_state = 577}, - [3191] = {.lex_state = 577}, - [3192] = {.lex_state = 577}, - [3193] = {.lex_state = 577}, - [3194] = {.lex_state = 577}, - [3195] = {.lex_state = 624}, - [3196] = {.lex_state = 624}, - [3197] = {.lex_state = 624}, - [3198] = {.lex_state = 2}, - [3199] = {.lex_state = 624}, - [3200] = {.lex_state = 184}, - [3201] = {.lex_state = 624}, - [3202] = {.lex_state = 2}, - [3203] = {.lex_state = 624}, - [3204] = {.lex_state = 624}, - [3205] = {.lex_state = 624}, - [3206] = {.lex_state = 624}, - [3207] = {.lex_state = 577}, - [3208] = {.lex_state = 624}, - [3209] = {.lex_state = 577}, - [3210] = {.lex_state = 624}, - [3211] = {.lex_state = 577}, - [3212] = {.lex_state = 624}, - [3213] = {.lex_state = 624}, - [3214] = {.lex_state = 577}, - [3215] = {.lex_state = 577}, - [3216] = {.lex_state = 2129}, - [3217] = {.lex_state = 577}, - [3218] = {.lex_state = 577}, - [3219] = {.lex_state = 2}, - [3220] = {.lex_state = 2}, - [3221] = {.lex_state = 2}, - [3222] = {.lex_state = 577}, - [3223] = {.lex_state = 577}, - [3224] = {.lex_state = 577}, - [3225] = {.lex_state = 577}, - [3226] = {.lex_state = 2}, - [3227] = {.lex_state = 577}, - [3228] = {.lex_state = 577}, - [3229] = {.lex_state = 577}, - [3230] = {.lex_state = 577}, - [3231] = {.lex_state = 2}, - [3232] = {.lex_state = 577}, - [3233] = {.lex_state = 2}, - [3234] = {.lex_state = 2}, - [3235] = {.lex_state = 190}, - [3236] = {.lex_state = 190}, - [3237] = {.lex_state = 190}, - [3238] = {.lex_state = 630}, - [3239] = {.lex_state = 2}, - [3240] = {.lex_state = 630}, - [3241] = {.lex_state = 2}, - [3242] = {.lex_state = 2}, - [3243] = {.lex_state = 2}, - [3244] = {.lex_state = 2}, - [3245] = {.lex_state = 577}, - [3246] = {.lex_state = 577}, - [3247] = {.lex_state = 577}, - [3248] = {.lex_state = 94}, - [3249] = {.lex_state = 577}, - [3250] = {.lex_state = 577}, - [3251] = {.lex_state = 2}, - [3252] = {.lex_state = 577}, - [3253] = {.lex_state = 98}, - [3254] = {.lex_state = 2}, - [3255] = {.lex_state = 577}, - [3256] = {.lex_state = 2}, - [3257] = {.lex_state = 577}, - [3258] = {.lex_state = 577}, - [3259] = {.lex_state = 577}, - [3260] = {.lex_state = 2}, - [3261] = {.lex_state = 577}, - [3262] = {.lex_state = 577}, - [3263] = {.lex_state = 577}, - [3264] = {.lex_state = 630}, - [3265] = {.lex_state = 577}, - [3266] = {.lex_state = 577}, - [3267] = {.lex_state = 77}, - [3268] = {.lex_state = 130}, - [3269] = {.lex_state = 2}, - [3270] = {.lex_state = 79}, - [3271] = {.lex_state = 2}, - [3272] = {.lex_state = 577}, - [3273] = {.lex_state = 185}, - [3274] = {.lex_state = 2}, - [3275] = {.lex_state = 2}, - [3276] = {.lex_state = 195}, - [3277] = {.lex_state = 190}, - [3278] = {.lex_state = 577}, - [3279] = {.lex_state = 2}, - [3280] = {.lex_state = 577}, - [3281] = {.lex_state = 577}, - [3282] = {.lex_state = 577}, - [3283] = {.lex_state = 577}, - [3284] = {.lex_state = 2}, - [3285] = {.lex_state = 2}, - [3286] = {.lex_state = 185}, - [3287] = {.lex_state = 577}, - [3288] = {.lex_state = 577}, - [3289] = {.lex_state = 577}, - [3290] = {.lex_state = 2}, - [3291] = {.lex_state = 577}, - [3292] = {.lex_state = 630}, - [3293] = {.lex_state = 124}, - [3294] = {.lex_state = 577}, - [3295] = {.lex_state = 577}, - [3296] = {.lex_state = 577}, - [3297] = {.lex_state = 577}, - [3298] = {.lex_state = 203}, - [3299] = {.lex_state = 577}, - [3300] = {.lex_state = 2}, - [3301] = {.lex_state = 577}, - [3302] = {.lex_state = 577}, - [3303] = {.lex_state = 577}, - [3304] = {.lex_state = 2}, - [3305] = {.lex_state = 2}, - [3306] = {.lex_state = 2}, - [3307] = {.lex_state = 577}, - [3308] = {.lex_state = 577}, - [3309] = {.lex_state = 577}, - [3310] = {.lex_state = 577}, - [3311] = {.lex_state = 577}, - [3312] = {.lex_state = 577}, - [3313] = {.lex_state = 577}, - [3314] = {.lex_state = 2}, - [3315] = {.lex_state = 577}, - [3316] = {.lex_state = 577}, - [3317] = {.lex_state = 577}, - [3318] = {.lex_state = 577}, - [3319] = {.lex_state = 577}, - [3320] = {.lex_state = 577}, - [3321] = {.lex_state = 577}, - [3322] = {.lex_state = 577}, - [3323] = {.lex_state = 577}, - [3324] = {.lex_state = 577}, - [3325] = {.lex_state = 577}, - [3326] = {.lex_state = 577}, - [3327] = {.lex_state = 577}, - [3328] = {.lex_state = 2}, - [3329] = {.lex_state = 577}, - [3330] = {.lex_state = 577}, - [3331] = {.lex_state = 183}, - [3332] = {.lex_state = 577}, - [3333] = {.lex_state = 577}, - [3334] = {.lex_state = 577}, - [3335] = {.lex_state = 190}, - [3336] = {.lex_state = 190}, - [3337] = {.lex_state = 190}, - [3338] = {.lex_state = 190}, - [3339] = {.lex_state = 2129}, - [3340] = {.lex_state = 577}, - [3341] = {.lex_state = 577}, - [3342] = {.lex_state = 186}, - [3343] = {.lex_state = 2}, - [3344] = {.lex_state = 184}, - [3345] = {.lex_state = 2}, - [3346] = {.lex_state = 577}, - [3347] = {.lex_state = 2}, - [3348] = {.lex_state = 196}, - [3349] = {.lex_state = 577}, - [3350] = {.lex_state = 204}, - [3351] = {.lex_state = 2}, - [3352] = {.lex_state = 577}, - [3353] = {.lex_state = 186}, - [3354] = {.lex_state = 577}, - [3355] = {.lex_state = 611}, - [3356] = {.lex_state = 2}, - [3357] = {.lex_state = 208}, - [3358] = {.lex_state = 80}, - [3359] = {.lex_state = 611}, - [3360] = {.lex_state = 205}, - [3361] = {.lex_state = 189}, - [3362] = {.lex_state = 95}, - [3363] = {.lex_state = 2}, - [3364] = {.lex_state = 234}, - [3365] = {.lex_state = 577}, - [3366] = {.lex_state = 81}, - [3367] = {.lex_state = 2}, - [3368] = {.lex_state = 100}, - [3369] = {.lex_state = 124}, - [3370] = {.lex_state = 205}, - [3371] = {.lex_state = 2}, - [3372] = {.lex_state = 130}, - [3373] = {.lex_state = 100}, - [3374] = {.lex_state = 2}, - [3375] = {.lex_state = 581}, - [3376] = {.lex_state = 130}, - [3377] = {.lex_state = 130}, - [3378] = {.lex_state = 124}, - [3379] = {.lex_state = 130}, - [3380] = {.lex_state = 124}, - [3381] = {.lex_state = 611}, - [3382] = {.lex_state = 130}, - [3383] = {.lex_state = 130}, - [3384] = {.lex_state = 2}, - [3385] = {.lex_state = 189}, - [3386] = {.lex_state = 124}, - [3387] = {.lex_state = 190}, - [3388] = {.lex_state = 80}, - [3389] = {.lex_state = 190}, - [3390] = {.lex_state = 99}, - [3391] = {.lex_state = 2}, - [3392] = {.lex_state = 197}, - [3393] = {.lex_state = 611}, - [3394] = {.lex_state = 2}, - [3395] = {.lex_state = 577}, - [3396] = {.lex_state = 611}, - [3397] = {.lex_state = 219}, - [3398] = {.lex_state = 206}, - [3399] = {.lex_state = 206}, - [3400] = {.lex_state = 235}, - [3401] = {.lex_state = 2130}, - [3402] = {.lex_state = 1727, .external_lex_state = 2}, - [3403] = {.lex_state = 1727, .external_lex_state = 2}, - [3404] = {.lex_state = 1727, .external_lex_state = 2}, - [3405] = {.lex_state = 2071}, - [3406] = {.lex_state = 2071}, - [3407] = {.lex_state = 81}, - [3408] = {.lex_state = 1727, .external_lex_state = 2}, - [3409] = {.lex_state = 2130}, - [3410] = {.lex_state = 2130}, - [3411] = {.lex_state = 2071}, - [3412] = {.lex_state = 101}, - [3413] = {.lex_state = 82}, - [3414] = {.lex_state = 81}, - [3415] = {.lex_state = 1727, .external_lex_state = 2}, - [3416] = {.lex_state = 199}, - [3417] = {.lex_state = 2}, - [3418] = {.lex_state = 221}, - [3419] = {.lex_state = 236}, - [3420] = {.lex_state = 2071}, - [3421] = {.lex_state = 2071}, - [3422] = {.lex_state = 1727, .external_lex_state = 2}, - [3423] = {.lex_state = 209}, - [3424] = {.lex_state = 207}, - [3425] = {.lex_state = 102}, - [3426] = {.lex_state = 104}, - [3427] = {.lex_state = 581}, - [3428] = {.lex_state = 581}, - [3429] = {.lex_state = 207}, - [3430] = {.lex_state = 2071}, - [3431] = {.lex_state = 2071}, - [3432] = {.lex_state = 581}, - [3433] = {.lex_state = 1727, .external_lex_state = 2}, - [3434] = {.lex_state = 581}, - [3435] = {.lex_state = 130}, - [3436] = {.lex_state = 2071}, - [3437] = {.lex_state = 2071}, - [3438] = {.lex_state = 1727, .external_lex_state = 2}, - [3439] = {.lex_state = 198}, - [3440] = {.lex_state = 236}, - [3441] = {.lex_state = 1727, .external_lex_state = 2}, - [3442] = {.lex_state = 2071}, - [3443] = {.lex_state = 2071}, - [3444] = {.lex_state = 1727, .external_lex_state = 2}, - [3445] = {.lex_state = 101}, - [3446] = {.lex_state = 2071}, - [3447] = {.lex_state = 2071}, - [3448] = {.lex_state = 102}, - [3449] = {.lex_state = 2175}, - [3450] = {.lex_state = 220}, - [3451] = {.lex_state = 2071}, - [3452] = {.lex_state = 207}, - [3453] = {.lex_state = 2071}, - [3454] = {.lex_state = 1727, .external_lex_state = 2}, - [3455] = {.lex_state = 2071}, - [3456] = {.lex_state = 207}, - [3457] = {.lex_state = 2175}, - [3458] = {.lex_state = 2071}, - [3459] = {.lex_state = 1727, .external_lex_state = 2}, - [3460] = {.lex_state = 220}, - [3461] = {.lex_state = 2175}, - [3462] = {.lex_state = 2175}, - [3463] = {.lex_state = 2071}, - [3464] = {.lex_state = 2071}, - [3465] = {.lex_state = 2071}, - [3466] = {.lex_state = 2071}, - [3467] = {.lex_state = 1727, .external_lex_state = 2}, - [3468] = {.lex_state = 2071}, - [3469] = {.lex_state = 2071}, - [3470] = {.lex_state = 78}, - [3471] = {.lex_state = 2071}, - [3472] = {.lex_state = 2071}, - [3473] = {.lex_state = 2071}, - [3474] = {.lex_state = 2071}, - [3475] = {.lex_state = 2071}, - [3476] = {.lex_state = 1727, .external_lex_state = 2}, - [3477] = {.lex_state = 1727, .external_lex_state = 2}, - [3478] = {.lex_state = 2130}, - [3479] = {.lex_state = 1727, .external_lex_state = 2}, - [3480] = {.lex_state = 96}, - [3481] = {.lex_state = 208}, - [3482] = {.lex_state = 210}, - [3483] = {.lex_state = 1727, .external_lex_state = 2}, - [3484] = {.lex_state = 208}, - [3485] = {.lex_state = 208}, - [3486] = {.lex_state = 1727, .external_lex_state = 2}, - [3487] = {.lex_state = 102}, - [3488] = {.lex_state = 102}, - [3489] = {.lex_state = 81}, - [3490] = {.lex_state = 1727, .external_lex_state = 2}, - [3491] = {.lex_state = 221}, - [3492] = {.lex_state = 103}, - [3493] = {.lex_state = 89}, - [3494] = {.lex_state = 581}, - [3495] = {.lex_state = 581}, - [3496] = {.lex_state = 89}, - [3497] = {.lex_state = 221}, - [3498] = {.lex_state = 581}, - [3499] = {.lex_state = 581}, - [3500] = {.lex_state = 211}, - [3501] = {.lex_state = 103}, - [3502] = {.lex_state = 581}, - [3503] = {.lex_state = 581}, - [3504] = {.lex_state = 581}, - [3505] = {.lex_state = 131}, - [3506] = {.lex_state = 581}, - [3507] = {.lex_state = 581}, - [3508] = {.lex_state = 131}, - [3509] = {.lex_state = 581}, - [3510] = {.lex_state = 581}, - [3511] = {.lex_state = 131}, - [3512] = {.lex_state = 581}, - [3513] = {.lex_state = 581}, - [3514] = {.lex_state = 105}, - [3515] = {.lex_state = 581}, - [3516] = {.lex_state = 581}, - [3517] = {.lex_state = 581}, - [3518] = {.lex_state = 241}, - [3519] = {.lex_state = 581}, - [3520] = {.lex_state = 581}, - [3521] = {.lex_state = 581}, - [3522] = {.lex_state = 581}, - [3523] = {.lex_state = 581}, - [3524] = {.lex_state = 581}, - [3525] = {.lex_state = 581}, - [3526] = {.lex_state = 81}, - [3527] = {.lex_state = 581}, - [3528] = {.lex_state = 131}, - [3529] = {.lex_state = 581}, - [3530] = {.lex_state = 581}, - [3531] = {.lex_state = 581}, - [3532] = {.lex_state = 625}, - [3533] = {.lex_state = 581}, - [3534] = {.lex_state = 106}, - [3535] = {.lex_state = 581}, - [3536] = {.lex_state = 106}, - [3537] = {.lex_state = 581}, - [3538] = {.lex_state = 237}, - [3539] = {.lex_state = 581}, - [3540] = {.lex_state = 581}, - [3541] = {.lex_state = 237}, - [3542] = {.lex_state = 221}, - [3543] = {.lex_state = 581}, - [3544] = {.lex_state = 237}, - [3545] = {.lex_state = 581}, - [3546] = {.lex_state = 237}, - [3547] = {.lex_state = 581}, - [3548] = {.lex_state = 83}, - [3549] = {.lex_state = 103}, - [3550] = {.lex_state = 581}, - [3551] = {.lex_state = 581}, - [3552] = {.lex_state = 581}, - [3553] = {.lex_state = 211}, - [3554] = {.lex_state = 97}, - [3555] = {.lex_state = 208}, - [3556] = {.lex_state = 581}, - [3557] = {.lex_state = 581}, - [3558] = {.lex_state = 581}, - [3559] = {.lex_state = 222}, - [3560] = {.lex_state = 131}, - [3561] = {.lex_state = 103}, - [3562] = {.lex_state = 89}, - [3563] = {.lex_state = 83}, - [3564] = {.lex_state = 247}, - [3565] = {.lex_state = 213}, - [3566] = {.lex_state = 581}, - [3567] = {.lex_state = 581}, - [3568] = {.lex_state = 131}, - [3569] = {.lex_state = 213}, - [3570] = {.lex_state = 625}, - [3571] = {.lex_state = 200}, - [3572] = {.lex_state = 89}, - [3573] = {.lex_state = 245}, - [3574] = {.lex_state = 245}, - [3575] = {.lex_state = 108}, - [3576] = {.lex_state = 245}, - [3577] = {.lex_state = 107}, - [3578] = {.lex_state = 212}, - [3579] = {.lex_state = 107}, - [3580] = {.lex_state = 245}, - [3581] = {.lex_state = 129}, - [3582] = {.lex_state = 2}, - [3583] = {.lex_state = 212}, - [3584] = {.lex_state = 212}, - [3585] = {.lex_state = 107}, - [3586] = {.lex_state = 245}, - [3587] = {.lex_state = 245}, - [3588] = {.lex_state = 107}, - [3589] = {.lex_state = 248}, - [3590] = {.lex_state = 223}, - [3591] = {.lex_state = 578}, - [3592] = {.lex_state = 89}, - [3593] = {.lex_state = 89}, - [3594] = {.lex_state = 245}, - [3595] = {.lex_state = 108}, - [3596] = {.lex_state = 84}, - [3597] = {.lex_state = 84}, - [3598] = {.lex_state = 84}, - [3599] = {.lex_state = 277}, - [3600] = {.lex_state = 107}, - [3601] = {.lex_state = 248}, - [3602] = {.lex_state = 245}, - [3603] = {.lex_state = 214}, - [3604] = {.lex_state = 223}, - [3605] = {.lex_state = 245}, - [3606] = {.lex_state = 214}, - [3607] = {.lex_state = 245}, - [3608] = {.lex_state = 84}, - [3609] = {.lex_state = 259}, - [3610] = {.lex_state = 131}, - [3611] = {.lex_state = 242}, - [3612] = {.lex_state = 245}, - [3613] = {.lex_state = 578}, - [3614] = {.lex_state = 84}, - [3615] = {.lex_state = 245}, - [3616] = {.lex_state = 214}, - [3617] = {.lex_state = 214}, - [3618] = {.lex_state = 214}, - [3619] = {.lex_state = 245}, - [3620] = {.lex_state = 129}, - [3621] = {.lex_state = 131}, - [3622] = {.lex_state = 243}, - [3623] = {.lex_state = 276}, - [3624] = {.lex_state = 131}, - [3625] = {.lex_state = 578}, - [3626] = {.lex_state = 224}, - [3627] = {.lex_state = 46}, - [3628] = {.lex_state = 46}, - [3629] = {.lex_state = 46}, - [3630] = {.lex_state = 86}, - [3631] = {.lex_state = 110}, - [3632] = {.lex_state = 124}, - [3633] = {.lex_state = 46}, - [3634] = {.lex_state = 578}, - [3635] = {.lex_state = 578}, - [3636] = {.lex_state = 578}, - [3637] = {.lex_state = 215}, - [3638] = {.lex_state = 124}, - [3639] = {.lex_state = 224}, - [3640] = {.lex_state = 131}, - [3641] = {.lex_state = 46}, - [3642] = {.lex_state = 46}, - [3643] = {.lex_state = 246}, - [3644] = {.lex_state = 260}, - [3645] = {.lex_state = 109}, - [3646] = {.lex_state = 31}, - [3647] = {.lex_state = 124}, - [3648] = {.lex_state = 46}, - [3649] = {.lex_state = 224}, - [3650] = {.lex_state = 31}, - [3651] = {.lex_state = 46}, - [3652] = {.lex_state = 249}, - [3653] = {.lex_state = 89}, - [3654] = {.lex_state = 46}, - [3655] = {.lex_state = 124}, - [3656] = {.lex_state = 31}, - [3657] = {.lex_state = 46}, - [3658] = {.lex_state = 46}, - [3659] = {.lex_state = 46}, - [3660] = {.lex_state = 129}, - [3661] = {.lex_state = 124}, - [3662] = {.lex_state = 276}, - [3663] = {.lex_state = 124}, - [3664] = {.lex_state = 124}, - [3665] = {.lex_state = 31}, - [3666] = {.lex_state = 46}, - [3667] = {.lex_state = 131}, - [3668] = {.lex_state = 131}, - [3669] = {.lex_state = 124}, - [3670] = {.lex_state = 31}, - [3671] = {.lex_state = 277}, - [3672] = {.lex_state = 207}, - [3673] = {.lex_state = 212}, - [3674] = {.lex_state = 46}, - [3675] = {.lex_state = 31}, - [3676] = {.lex_state = 130}, - [3677] = {.lex_state = 129}, - [3678] = {.lex_state = 85}, - [3679] = {.lex_state = 218}, - [3680] = {.lex_state = 109}, - [3681] = {.lex_state = 250}, - [3682] = {.lex_state = 124}, - [3683] = {.lex_state = 109}, - [3684] = {.lex_state = 124}, - [3685] = {.lex_state = 31}, - [3686] = {.lex_state = 277}, - [3687] = {.lex_state = 109}, - [3688] = {.lex_state = 46}, - [3689] = {.lex_state = 276}, - [3690] = {.lex_state = 89}, - [3691] = {.lex_state = 46}, - [3692] = {.lex_state = 124}, - [3693] = {.lex_state = 224}, - [3694] = {.lex_state = 224}, - [3695] = {.lex_state = 277}, - [3696] = {.lex_state = 131}, - [3697] = {.lex_state = 31}, - [3698] = {.lex_state = 257}, - [3699] = {.lex_state = 89}, - [3700] = {.lex_state = 117}, - [3701] = {.lex_state = 131}, - [3702] = {.lex_state = 31}, - [3703] = {.lex_state = 89}, - [3704] = {.lex_state = 129}, - [3705] = {.lex_state = 109}, - [3706] = {.lex_state = 46}, - [3707] = {.lex_state = 131}, - [3708] = {.lex_state = 46}, - [3709] = {.lex_state = 31}, - [3710] = {.lex_state = 249}, - [3711] = {.lex_state = 124}, - [3712] = {.lex_state = 131}, - [3713] = {.lex_state = 46}, - [3714] = {.lex_state = 578}, - [3715] = {.lex_state = 578}, - [3716] = {.lex_state = 46}, - [3717] = {.lex_state = 249}, - [3718] = {.lex_state = 124}, - [3719] = {.lex_state = 212}, - [3720] = {.lex_state = 277}, - [3721] = {.lex_state = 46}, - [3722] = {.lex_state = 277}, - [3723] = {.lex_state = 260}, - [3724] = {.lex_state = 46}, - [3725] = {.lex_state = 277}, - [3726] = {.lex_state = 124}, - [3727] = {.lex_state = 46}, - [3728] = {.lex_state = 31}, - [3729] = {.lex_state = 46}, - [3730] = {.lex_state = 249}, - [3731] = {.lex_state = 276}, - [3732] = {.lex_state = 0}, - [3733] = {.lex_state = 577}, - [3734] = {.lex_state = 0}, - [3735] = {.lex_state = 0}, - [3736] = {.lex_state = 0}, - [3737] = {.lex_state = 659}, - [3738] = {.lex_state = 640}, - [3739] = {.lex_state = 625}, - [3740] = {.lex_state = 625}, - [3741] = {.lex_state = 244}, - [3742] = {.lex_state = 111}, - [3743] = {.lex_state = 276}, - [3744] = {.lex_state = 276}, - [3745] = {.lex_state = 276}, - [3746] = {.lex_state = 225}, - [3747] = {.lex_state = 182}, - [3748] = {.lex_state = 2072}, - [3749] = {.lex_state = 2072}, - [3750] = {.lex_state = 249}, - [3751] = {.lex_state = 258}, - [3752] = {.lex_state = 182}, - [3753] = {.lex_state = 31}, - [3754] = {.lex_state = 31}, - [3755] = {.lex_state = 129}, - [3756] = {.lex_state = 124}, - [3757] = {.lex_state = 124}, - [3758] = {.lex_state = 129}, - [3759] = {.lex_state = 251}, - [3760] = {.lex_state = 182}, - [3761] = {.lex_state = 0}, - [3762] = {.lex_state = 31}, - [3763] = {.lex_state = 0}, - [3764] = {.lex_state = 0}, - [3765] = {.lex_state = 201}, - [3766] = {.lex_state = 256}, - [3767] = {.lex_state = 31}, - [3768] = {.lex_state = 31}, - [3769] = {.lex_state = 31}, - [3770] = {.lex_state = 124}, - [3771] = {.lex_state = 89}, - [3772] = {.lex_state = 130}, - [3773] = {.lex_state = 124}, - [3774] = {.lex_state = 190}, - [3775] = {.lex_state = 276}, - [3776] = {.lex_state = 130}, + [2762] = {.lex_state = 579}, + [2763] = {.lex_state = 662}, + [2764] = {.lex_state = 579}, + [2765] = {.lex_state = 662}, + [2766] = {.lex_state = 660}, + [2767] = {.lex_state = 579}, + [2768] = {.lex_state = 662}, + [2769] = {.lex_state = 579}, + [2770] = {.lex_state = 662}, + [2771] = {.lex_state = 579}, + [2772] = {.lex_state = 640}, + [2773] = {.lex_state = 579}, + [2774] = {.lex_state = 579}, + [2775] = {.lex_state = 579}, + [2776] = {.lex_state = 579}, + [2777] = {.lex_state = 662}, + [2778] = {.lex_state = 662}, + [2779] = {.lex_state = 640}, + [2780] = {.lex_state = 579}, + [2781] = {.lex_state = 579}, + [2782] = {.lex_state = 663}, + [2783] = {.lex_state = 640}, + [2784] = {.lex_state = 67}, + [2785] = {.lex_state = 579}, + [2786] = {.lex_state = 578}, + [2787] = {.lex_state = 579}, + [2788] = {.lex_state = 579}, + [2789] = {.lex_state = 579}, + [2790] = {.lex_state = 662}, + [2791] = {.lex_state = 579}, + [2792] = {.lex_state = 579}, + [2793] = {.lex_state = 579}, + [2794] = {.lex_state = 579}, + [2795] = {.lex_state = 579}, + [2796] = {.lex_state = 579}, + [2797] = {.lex_state = 579}, + [2798] = {.lex_state = 579}, + [2799] = {.lex_state = 579}, + [2800] = {.lex_state = 579}, + [2801] = {.lex_state = 579}, + [2802] = {.lex_state = 579}, + [2803] = {.lex_state = 579}, + [2804] = {.lex_state = 579}, + [2805] = {.lex_state = 579}, + [2806] = {.lex_state = 579}, + [2807] = {.lex_state = 640}, + [2808] = {.lex_state = 579}, + [2809] = {.lex_state = 10}, + [2810] = {.lex_state = 579}, + [2811] = {.lex_state = 656}, + [2812] = {.lex_state = 579}, + [2813] = {.lex_state = 579}, + [2814] = {.lex_state = 579}, + [2815] = {.lex_state = 579}, + [2816] = {.lex_state = 579}, + [2817] = {.lex_state = 579}, + [2818] = {.lex_state = 579}, + [2819] = {.lex_state = 579}, + [2820] = {.lex_state = 579}, + [2821] = {.lex_state = 66}, + [2822] = {.lex_state = 579}, + [2823] = {.lex_state = 579}, + [2824] = {.lex_state = 579}, + [2825] = {.lex_state = 579}, + [2826] = {.lex_state = 579}, + [2827] = {.lex_state = 661}, + [2828] = {.lex_state = 578}, + [2829] = {.lex_state = 579}, + [2830] = {.lex_state = 579}, + [2831] = {.lex_state = 579}, + [2832] = {.lex_state = 579}, + [2833] = {.lex_state = 10}, + [2834] = {.lex_state = 579}, + [2835] = {.lex_state = 579}, + [2836] = {.lex_state = 579}, + [2837] = {.lex_state = 579}, + [2838] = {.lex_state = 579}, + [2839] = {.lex_state = 579}, + [2840] = {.lex_state = 578}, + [2841] = {.lex_state = 579}, + [2842] = {.lex_state = 579}, + [2843] = {.lex_state = 578}, + [2844] = {.lex_state = 579}, + [2845] = {.lex_state = 579}, + [2846] = {.lex_state = 579}, + [2847] = {.lex_state = 10}, + [2848] = {.lex_state = 10}, + [2849] = {.lex_state = 10}, + [2850] = {.lex_state = 10}, + [2851] = {.lex_state = 10}, + [2852] = {.lex_state = 10}, + [2853] = {.lex_state = 579}, + [2854] = {.lex_state = 579}, + [2855] = {.lex_state = 579}, + [2856] = {.lex_state = 579}, + [2857] = {.lex_state = 579}, + [2858] = {.lex_state = 579}, + [2859] = {.lex_state = 579}, + [2860] = {.lex_state = 579}, + [2861] = {.lex_state = 579}, + [2862] = {.lex_state = 579}, + [2863] = {.lex_state = 640}, + [2864] = {.lex_state = 579}, + [2865] = {.lex_state = 640}, + [2866] = {.lex_state = 579}, + [2867] = {.lex_state = 579}, + [2868] = {.lex_state = 662}, + [2869] = {.lex_state = 634}, + [2870] = {.lex_state = 579}, + [2871] = {.lex_state = 10}, + [2872] = {.lex_state = 579}, + [2873] = {.lex_state = 579}, + [2874] = {.lex_state = 579}, + [2875] = {.lex_state = 10}, + [2876] = {.lex_state = 662}, + [2877] = {.lex_state = 10}, + [2878] = {.lex_state = 10}, + [2879] = {.lex_state = 579}, + [2880] = {.lex_state = 579}, + [2881] = {.lex_state = 628}, + [2882] = {.lex_state = 10}, + [2883] = {.lex_state = 662}, + [2884] = {.lex_state = 10}, + [2885] = {.lex_state = 662}, + [2886] = {.lex_state = 662}, + [2887] = {.lex_state = 662}, + [2888] = {.lex_state = 579}, + [2889] = {.lex_state = 10}, + [2890] = {.lex_state = 118}, + [2891] = {.lex_state = 578}, + [2892] = {.lex_state = 662}, + [2893] = {.lex_state = 10}, + [2894] = {.lex_state = 579}, + [2895] = {.lex_state = 579}, + [2896] = {.lex_state = 579}, + [2897] = {.lex_state = 118}, + [2898] = {.lex_state = 662}, + [2899] = {.lex_state = 579}, + [2900] = {.lex_state = 662}, + [2901] = {.lex_state = 662}, + [2902] = {.lex_state = 77}, + [2903] = {.lex_state = 578}, + [2904] = {.lex_state = 579}, + [2905] = {.lex_state = 579}, + [2906] = {.lex_state = 628}, + [2907] = {.lex_state = 10}, + [2908] = {.lex_state = 10}, + [2909] = {.lex_state = 71}, + [2910] = {.lex_state = 578}, + [2911] = {.lex_state = 634}, + [2912] = {.lex_state = 578}, + [2913] = {.lex_state = 628}, + [2914] = {.lex_state = 578}, + [2915] = {.lex_state = 634}, + [2916] = {.lex_state = 634}, + [2917] = {.lex_state = 662}, + [2918] = {.lex_state = 579}, + [2919] = {.lex_state = 662}, + [2920] = {.lex_state = 10}, + [2921] = {.lex_state = 579}, + [2922] = {.lex_state = 68}, + [2923] = {.lex_state = 578}, + [2924] = {.lex_state = 628}, + [2925] = {.lex_state = 10}, + [2926] = {.lex_state = 68}, + [2927] = {.lex_state = 634}, + [2928] = {.lex_state = 579}, + [2929] = {.lex_state = 579}, + [2930] = {.lex_state = 628}, + [2931] = {.lex_state = 579}, + [2932] = {.lex_state = 118}, + [2933] = {.lex_state = 10}, + [2934] = {.lex_state = 10}, + [2935] = {.lex_state = 10}, + [2936] = {.lex_state = 118}, + [2937] = {.lex_state = 10}, + [2938] = {.lex_state = 578}, + [2939] = {.lex_state = 662}, + [2940] = {.lex_state = 662}, + [2941] = {.lex_state = 579}, + [2942] = {.lex_state = 579}, + [2943] = {.lex_state = 10}, + [2944] = {.lex_state = 10}, + [2945] = {.lex_state = 118}, + [2946] = {.lex_state = 578}, + [2947] = {.lex_state = 634}, + [2948] = {.lex_state = 634}, + [2949] = {.lex_state = 579}, + [2950] = {.lex_state = 578}, + [2951] = {.lex_state = 10}, + [2952] = {.lex_state = 634}, + [2953] = {.lex_state = 10}, + [2954] = {.lex_state = 10}, + [2955] = {.lex_state = 10}, + [2956] = {.lex_state = 579}, + [2957] = {.lex_state = 662}, + [2958] = {.lex_state = 118}, + [2959] = {.lex_state = 579}, + [2960] = {.lex_state = 10}, + [2961] = {.lex_state = 10}, + [2962] = {.lex_state = 579}, + [2963] = {.lex_state = 579}, + [2964] = {.lex_state = 10}, + [2965] = {.lex_state = 132, .external_lex_state = 2}, + [2966] = {.lex_state = 10}, + [2967] = {.lex_state = 578}, + [2968] = {.lex_state = 656}, + [2969] = {.lex_state = 628}, + [2970] = {.lex_state = 10}, + [2971] = {.lex_state = 579}, + [2972] = {.lex_state = 628}, + [2973] = {.lex_state = 65}, + [2974] = {.lex_state = 628}, + [2975] = {.lex_state = 579}, + [2976] = {.lex_state = 579}, + [2977] = {.lex_state = 634}, + [2978] = {.lex_state = 579}, + [2979] = {.lex_state = 628}, + [2980] = {.lex_state = 579}, + [2981] = {.lex_state = 579}, + [2982] = {.lex_state = 628}, + [2983] = {.lex_state = 628}, + [2984] = {.lex_state = 628}, + [2985] = {.lex_state = 579}, + [2986] = {.lex_state = 578}, + [2987] = {.lex_state = 628}, + [2988] = {.lex_state = 628}, + [2989] = {.lex_state = 628}, + [2990] = {.lex_state = 628}, + [2991] = {.lex_state = 579}, + [2992] = {.lex_state = 628}, + [2993] = {.lex_state = 634}, + [2994] = {.lex_state = 628}, + [2995] = {.lex_state = 74}, + [2996] = {.lex_state = 628}, + [2997] = {.lex_state = 69}, + [2998] = {.lex_state = 628}, + [2999] = {.lex_state = 69}, + [3000] = {.lex_state = 578}, + [3001] = {.lex_state = 69}, + [3002] = {.lex_state = 578}, + [3003] = {.lex_state = 10}, + [3004] = {.lex_state = 10}, + [3005] = {.lex_state = 10}, + [3006] = {.lex_state = 10}, + [3007] = {.lex_state = 628}, + [3008] = {.lex_state = 10}, + [3009] = {.lex_state = 628}, + [3010] = {.lex_state = 69}, + [3011] = {.lex_state = 628}, + [3012] = {.lex_state = 628}, + [3013] = {.lex_state = 69}, + [3014] = {.lex_state = 69}, + [3015] = {.lex_state = 69}, + [3016] = {.lex_state = 69}, + [3017] = {.lex_state = 10}, + [3018] = {.lex_state = 69}, + [3019] = {.lex_state = 69}, + [3020] = {.lex_state = 628}, + [3021] = {.lex_state = 578}, + [3022] = {.lex_state = 10}, + [3023] = {.lex_state = 10}, + [3024] = {.lex_state = 39, .external_lex_state = 2}, + [3025] = {.lex_state = 579}, + [3026] = {.lex_state = 579}, + [3027] = {.lex_state = 10}, + [3028] = {.lex_state = 579}, + [3029] = {.lex_state = 579}, + [3030] = {.lex_state = 579}, + [3031] = {.lex_state = 10}, + [3032] = {.lex_state = 579}, + [3033] = {.lex_state = 628}, + [3034] = {.lex_state = 579}, + [3035] = {.lex_state = 628}, + [3036] = {.lex_state = 628}, + [3037] = {.lex_state = 628}, + [3038] = {.lex_state = 628}, + [3039] = {.lex_state = 72}, + [3040] = {.lex_state = 628}, + [3041] = {.lex_state = 628}, + [3042] = {.lex_state = 628}, + [3043] = {.lex_state = 579}, + [3044] = {.lex_state = 74}, + [3045] = {.lex_state = 628}, + [3046] = {.lex_state = 70}, + [3047] = {.lex_state = 579}, + [3048] = {.lex_state = 628}, + [3049] = {.lex_state = 628}, + [3050] = {.lex_state = 69}, + [3051] = {.lex_state = 628}, + [3052] = {.lex_state = 628}, + [3053] = {.lex_state = 628}, + [3054] = {.lex_state = 634}, + [3055] = {.lex_state = 579}, + [3056] = {.lex_state = 579}, + [3057] = {.lex_state = 662}, + [3058] = {.lex_state = 628}, + [3059] = {.lex_state = 10}, + [3060] = {.lex_state = 579}, + [3061] = {.lex_state = 10}, + [3062] = {.lex_state = 69}, + [3063] = {.lex_state = 69}, + [3064] = {.lex_state = 628}, + [3065] = {.lex_state = 628}, + [3066] = {.lex_state = 628}, + [3067] = {.lex_state = 628}, + [3068] = {.lex_state = 10}, + [3069] = {.lex_state = 10}, + [3070] = {.lex_state = 628}, + [3071] = {.lex_state = 578}, + [3072] = {.lex_state = 628}, + [3073] = {.lex_state = 628}, + [3074] = {.lex_state = 10}, + [3075] = {.lex_state = 579}, + [3076] = {.lex_state = 195}, + [3077] = {.lex_state = 65}, + [3078] = {.lex_state = 10}, + [3079] = {.lex_state = 579}, + [3080] = {.lex_state = 65}, + [3081] = {.lex_state = 65}, + [3082] = {.lex_state = 628}, + [3083] = {.lex_state = 65}, + [3084] = {.lex_state = 65}, + [3085] = {.lex_state = 628}, + [3086] = {.lex_state = 628}, + [3087] = {.lex_state = 628}, + [3088] = {.lex_state = 66}, + [3089] = {.lex_state = 628}, + [3090] = {.lex_state = 628}, + [3091] = {.lex_state = 628}, + [3092] = {.lex_state = 10}, + [3093] = {.lex_state = 628}, + [3094] = {.lex_state = 578}, + [3095] = {.lex_state = 628}, + [3096] = {.lex_state = 628}, + [3097] = {.lex_state = 10}, + [3098] = {.lex_state = 10}, + [3099] = {.lex_state = 628}, + [3100] = {.lex_state = 628}, + [3101] = {.lex_state = 628}, + [3102] = {.lex_state = 628}, + [3103] = {.lex_state = 628}, + [3104] = {.lex_state = 10}, + [3105] = {.lex_state = 628}, + [3106] = {.lex_state = 628}, + [3107] = {.lex_state = 579}, + [3108] = {.lex_state = 10}, + [3109] = {.lex_state = 10}, + [3110] = {.lex_state = 10}, + [3111] = {.lex_state = 628}, + [3112] = {.lex_state = 628}, + [3113] = {.lex_state = 10}, + [3114] = {.lex_state = 628}, + [3115] = {.lex_state = 65}, + [3116] = {.lex_state = 71}, + [3117] = {.lex_state = 628}, + [3118] = {.lex_state = 628}, + [3119] = {.lex_state = 628}, + [3120] = {.lex_state = 579}, + [3121] = {.lex_state = 10}, + [3122] = {.lex_state = 10}, + [3123] = {.lex_state = 628}, + [3124] = {.lex_state = 628}, + [3125] = {.lex_state = 579}, + [3126] = {.lex_state = 628}, + [3127] = {.lex_state = 628}, + [3128] = {.lex_state = 10}, + [3129] = {.lex_state = 579}, + [3130] = {.lex_state = 39, .external_lex_state = 2}, + [3131] = {.lex_state = 628}, + [3132] = {.lex_state = 628}, + [3133] = {.lex_state = 10}, + [3134] = {.lex_state = 10}, + [3135] = {.lex_state = 189}, + [3136] = {.lex_state = 628}, + [3137] = {.lex_state = 628}, + [3138] = {.lex_state = 628}, + [3139] = {.lex_state = 628}, + [3140] = {.lex_state = 628}, + [3141] = {.lex_state = 628}, + [3142] = {.lex_state = 10}, + [3143] = {.lex_state = 579}, + [3144] = {.lex_state = 579}, + [3145] = {.lex_state = 628}, + [3146] = {.lex_state = 628}, + [3147] = {.lex_state = 628}, + [3148] = {.lex_state = 579}, + [3149] = {.lex_state = 579}, + [3150] = {.lex_state = 628}, + [3151] = {.lex_state = 579}, + [3152] = {.lex_state = 75}, + [3153] = {.lex_state = 77}, + [3154] = {.lex_state = 628}, + [3155] = {.lex_state = 579}, + [3156] = {.lex_state = 65}, + [3157] = {.lex_state = 10}, + [3158] = {.lex_state = 195}, + [3159] = {.lex_state = 628}, + [3160] = {.lex_state = 628}, + [3161] = {.lex_state = 75}, + [3162] = {.lex_state = 73}, + [3163] = {.lex_state = 628}, + [3164] = {.lex_state = 579}, + [3165] = {.lex_state = 10}, + [3166] = {.lex_state = 628}, + [3167] = {.lex_state = 628}, + [3168] = {.lex_state = 628}, + [3169] = {.lex_state = 628}, + [3170] = {.lex_state = 10}, + [3171] = {.lex_state = 10}, + [3172] = {.lex_state = 579}, + [3173] = {.lex_state = 579}, + [3174] = {.lex_state = 579}, + [3175] = {.lex_state = 579}, + [3176] = {.lex_state = 579}, + [3177] = {.lex_state = 628}, + [3178] = {.lex_state = 628}, + [3179] = {.lex_state = 628}, + [3180] = {.lex_state = 65}, + [3181] = {.lex_state = 10}, + [3182] = {.lex_state = 579}, + [3183] = {.lex_state = 10}, + [3184] = {.lex_state = 628}, + [3185] = {.lex_state = 192}, + [3186] = {.lex_state = 10}, + [3187] = {.lex_state = 628}, + [3188] = {.lex_state = 628}, + [3189] = {.lex_state = 628}, + [3190] = {.lex_state = 628}, + [3191] = {.lex_state = 628}, + [3192] = {.lex_state = 628}, + [3193] = {.lex_state = 579}, + [3194] = {.lex_state = 10}, + [3195] = {.lex_state = 628}, + [3196] = {.lex_state = 10}, + [3197] = {.lex_state = 10}, + [3198] = {.lex_state = 628}, + [3199] = {.lex_state = 628}, + [3200] = {.lex_state = 628}, + [3201] = {.lex_state = 628}, + [3202] = {.lex_state = 628}, + [3203] = {.lex_state = 628}, + [3204] = {.lex_state = 628}, + [3205] = {.lex_state = 628}, + [3206] = {.lex_state = 628}, + [3207] = {.lex_state = 10}, + [3208] = {.lex_state = 10}, + [3209] = {.lex_state = 10}, + [3210] = {.lex_state = 579}, + [3211] = {.lex_state = 579}, + [3212] = {.lex_state = 189}, + [3213] = {.lex_state = 628}, + [3214] = {.lex_state = 579}, + [3215] = {.lex_state = 628}, + [3216] = {.lex_state = 628}, + [3217] = {.lex_state = 628}, + [3218] = {.lex_state = 192}, + [3219] = {.lex_state = 628}, + [3220] = {.lex_state = 628}, + [3221] = {.lex_state = 628}, + [3222] = {.lex_state = 10}, + [3223] = {.lex_state = 628}, + [3224] = {.lex_state = 579}, + [3225] = {.lex_state = 628}, + [3226] = {.lex_state = 71}, + [3227] = {.lex_state = 628}, + [3228] = {.lex_state = 628}, + [3229] = {.lex_state = 10}, + [3230] = {.lex_state = 579}, + [3231] = {.lex_state = 628}, + [3232] = {.lex_state = 579}, + [3233] = {.lex_state = 579}, + [3234] = {.lex_state = 579}, + [3235] = {.lex_state = 579}, + [3236] = {.lex_state = 579}, + [3237] = {.lex_state = 579}, + [3238] = {.lex_state = 579}, + [3239] = {.lex_state = 579}, + [3240] = {.lex_state = 579}, + [3241] = {.lex_state = 579}, + [3242] = {.lex_state = 579}, + [3243] = {.lex_state = 628}, + [3244] = {.lex_state = 73}, + [3245] = {.lex_state = 579}, + [3246] = {.lex_state = 579}, + [3247] = {.lex_state = 579}, + [3248] = {.lex_state = 634}, + [3249] = {.lex_state = 579}, + [3250] = {.lex_state = 628}, + [3251] = {.lex_state = 10}, + [3252] = {.lex_state = 628}, + [3253] = {.lex_state = 628}, + [3254] = {.lex_state = 628}, + [3255] = {.lex_state = 10}, + [3256] = {.lex_state = 579}, + [3257] = {.lex_state = 193}, + [3258] = {.lex_state = 628}, + [3259] = {.lex_state = 71}, + [3260] = {.lex_state = 79}, + [3261] = {.lex_state = 71}, + [3262] = {.lex_state = 628}, + [3263] = {.lex_state = 71}, + [3264] = {.lex_state = 628}, + [3265] = {.lex_state = 628}, + [3266] = {.lex_state = 10}, + [3267] = {.lex_state = 191}, + [3268] = {.lex_state = 10}, + [3269] = {.lex_state = 10}, + [3270] = {.lex_state = 10}, + [3271] = {.lex_state = 10}, + [3272] = {.lex_state = 579}, + [3273] = {.lex_state = 579}, + [3274] = {.lex_state = 579}, + [3275] = {.lex_state = 579}, + [3276] = {.lex_state = 208}, + [3277] = {.lex_state = 10}, + [3278] = {.lex_state = 10}, + [3279] = {.lex_state = 10}, + [3280] = {.lex_state = 10}, + [3281] = {.lex_state = 10}, + [3282] = {.lex_state = 579}, + [3283] = {.lex_state = 579}, + [3284] = {.lex_state = 85}, + [3285] = {.lex_state = 579}, + [3286] = {.lex_state = 579}, + [3287] = {.lex_state = 579}, + [3288] = {.lex_state = 579}, + [3289] = {.lex_state = 579}, + [3290] = {.lex_state = 579}, + [3291] = {.lex_state = 579}, + [3292] = {.lex_state = 10}, + [3293] = {.lex_state = 579}, + [3294] = {.lex_state = 10}, + [3295] = {.lex_state = 579}, + [3296] = {.lex_state = 579}, + [3297] = {.lex_state = 579}, + [3298] = {.lex_state = 579}, + [3299] = {.lex_state = 579}, + [3300] = {.lex_state = 579}, + [3301] = {.lex_state = 579}, + [3302] = {.lex_state = 579}, + [3303] = {.lex_state = 579}, + [3304] = {.lex_state = 579}, + [3305] = {.lex_state = 579}, + [3306] = {.lex_state = 579}, + [3307] = {.lex_state = 579}, + [3308] = {.lex_state = 579}, + [3309] = {.lex_state = 579}, + [3310] = {.lex_state = 579}, + [3311] = {.lex_state = 579}, + [3312] = {.lex_state = 2134}, + [3313] = {.lex_state = 579}, + [3314] = {.lex_state = 190}, + [3315] = {.lex_state = 579}, + [3316] = {.lex_state = 188}, + [3317] = {.lex_state = 579}, + [3318] = {.lex_state = 579}, + [3319] = {.lex_state = 10}, + [3320] = {.lex_state = 195}, + [3321] = {.lex_state = 10}, + [3322] = {.lex_state = 579}, + [3323] = {.lex_state = 579}, + [3324] = {.lex_state = 195}, + [3325] = {.lex_state = 579}, + [3326] = {.lex_state = 579}, + [3327] = {.lex_state = 579}, + [3328] = {.lex_state = 579}, + [3329] = {.lex_state = 579}, + [3330] = {.lex_state = 579}, + [3331] = {.lex_state = 579}, + [3332] = {.lex_state = 579}, + [3333] = {.lex_state = 579}, + [3334] = {.lex_state = 579}, + [3335] = {.lex_state = 200}, + [3336] = {.lex_state = 10}, + [3337] = {.lex_state = 579}, + [3338] = {.lex_state = 579}, + [3339] = {.lex_state = 579}, + [3340] = {.lex_state = 10}, + [3341] = {.lex_state = 195}, + [3342] = {.lex_state = 579}, + [3343] = {.lex_state = 579}, + [3344] = {.lex_state = 10}, + [3345] = {.lex_state = 195}, + [3346] = {.lex_state = 579}, + [3347] = {.lex_state = 191}, + [3348] = {.lex_state = 10}, + [3349] = {.lex_state = 10}, + [3350] = {.lex_state = 10}, + [3351] = {.lex_state = 10}, + [3352] = {.lex_state = 579}, + [3353] = {.lex_state = 579}, + [3354] = {.lex_state = 2134}, + [3355] = {.lex_state = 10}, + [3356] = {.lex_state = 634}, + [3357] = {.lex_state = 634}, + [3358] = {.lex_state = 195}, + [3359] = {.lex_state = 201}, + [3360] = {.lex_state = 579}, + [3361] = {.lex_state = 579}, + [3362] = {.lex_state = 209}, + [3363] = {.lex_state = 634}, + [3364] = {.lex_state = 579}, + [3365] = {.lex_state = 579}, + [3366] = {.lex_state = 579}, + [3367] = {.lex_state = 100}, + [3368] = {.lex_state = 579}, + [3369] = {.lex_state = 579}, + [3370] = {.lex_state = 189}, + [3371] = {.lex_state = 634}, + [3372] = {.lex_state = 579}, + [3373] = {.lex_state = 579}, + [3374] = {.lex_state = 579}, + [3375] = {.lex_state = 195}, + [3376] = {.lex_state = 195}, + [3377] = {.lex_state = 579}, + [3378] = {.lex_state = 10}, + [3379] = {.lex_state = 195}, + [3380] = {.lex_state = 579}, + [3381] = {.lex_state = 579}, + [3382] = {.lex_state = 10}, + [3383] = {.lex_state = 83}, + [3384] = {.lex_state = 10}, + [3385] = {.lex_state = 579}, + [3386] = {.lex_state = 579}, + [3387] = {.lex_state = 579}, + [3388] = {.lex_state = 10}, + [3389] = {.lex_state = 579}, + [3390] = {.lex_state = 10}, + [3391] = {.lex_state = 579}, + [3392] = {.lex_state = 136}, + [3393] = {.lex_state = 579}, + [3394] = {.lex_state = 579}, + [3395] = {.lex_state = 190}, + [3396] = {.lex_state = 104}, + [3397] = {.lex_state = 10}, + [3398] = {.lex_state = 10}, + [3399] = {.lex_state = 10}, + [3400] = {.lex_state = 10}, + [3401] = {.lex_state = 10}, + [3402] = {.lex_state = 579}, + [3403] = {.lex_state = 10}, + [3404] = {.lex_state = 579}, + [3405] = {.lex_state = 10}, + [3406] = {.lex_state = 10}, + [3407] = {.lex_state = 194}, + [3408] = {.lex_state = 86}, + [3409] = {.lex_state = 86}, + [3410] = {.lex_state = 202}, + [3411] = {.lex_state = 224}, + [3412] = {.lex_state = 194}, + [3413] = {.lex_state = 239}, + [3414] = {.lex_state = 240}, + [3415] = {.lex_state = 195}, + [3416] = {.lex_state = 211}, + [3417] = {.lex_state = 211}, + [3418] = {.lex_state = 101}, + [3419] = {.lex_state = 130}, + [3420] = {.lex_state = 105}, + [3421] = {.lex_state = 10}, + [3422] = {.lex_state = 130}, + [3423] = {.lex_state = 583}, + [3424] = {.lex_state = 210}, + [3425] = {.lex_state = 613}, + [3426] = {.lex_state = 130}, + [3427] = {.lex_state = 10}, + [3428] = {.lex_state = 210}, + [3429] = {.lex_state = 10}, + [3430] = {.lex_state = 10}, + [3431] = {.lex_state = 10}, + [3432] = {.lex_state = 213}, + [3433] = {.lex_state = 579}, + [3434] = {.lex_state = 613}, + [3435] = {.lex_state = 10}, + [3436] = {.lex_state = 10}, + [3437] = {.lex_state = 613}, + [3438] = {.lex_state = 613}, + [3439] = {.lex_state = 613}, + [3440] = {.lex_state = 106}, + [3441] = {.lex_state = 195}, + [3442] = {.lex_state = 579}, + [3443] = {.lex_state = 106}, + [3444] = {.lex_state = 10}, + [3445] = {.lex_state = 87}, + [3446] = {.lex_state = 88}, + [3447] = {.lex_state = 241}, + [3448] = {.lex_state = 87}, + [3449] = {.lex_state = 136}, + [3450] = {.lex_state = 583}, + [3451] = {.lex_state = 583}, + [3452] = {.lex_state = 241}, + [3453] = {.lex_state = 2076}, + [3454] = {.lex_state = 2076}, + [3455] = {.lex_state = 2135}, + [3456] = {.lex_state = 2135}, + [3457] = {.lex_state = 1732, .external_lex_state = 2}, + [3458] = {.lex_state = 583}, + [3459] = {.lex_state = 212}, + [3460] = {.lex_state = 225}, + [3461] = {.lex_state = 2076}, + [3462] = {.lex_state = 2076}, + [3463] = {.lex_state = 214}, + [3464] = {.lex_state = 84}, + [3465] = {.lex_state = 212}, + [3466] = {.lex_state = 136}, + [3467] = {.lex_state = 212}, + [3468] = {.lex_state = 213}, + [3469] = {.lex_state = 108}, + [3470] = {.lex_state = 136}, + [3471] = {.lex_state = 136}, + [3472] = {.lex_state = 2180}, + [3473] = {.lex_state = 2180}, + [3474] = {.lex_state = 10}, + [3475] = {.lex_state = 2135}, + [3476] = {.lex_state = 215}, + [3477] = {.lex_state = 2135}, + [3478] = {.lex_state = 203}, + [3479] = {.lex_state = 2180}, + [3480] = {.lex_state = 2180}, + [3481] = {.lex_state = 226}, + [3482] = {.lex_state = 102}, + [3483] = {.lex_state = 2076}, + [3484] = {.lex_state = 2076}, + [3485] = {.lex_state = 1732, .external_lex_state = 2}, + [3486] = {.lex_state = 212}, + [3487] = {.lex_state = 213}, + [3488] = {.lex_state = 136}, + [3489] = {.lex_state = 136}, + [3490] = {.lex_state = 1732, .external_lex_state = 2}, + [3491] = {.lex_state = 136}, + [3492] = {.lex_state = 110}, + [3493] = {.lex_state = 2076}, + [3494] = {.lex_state = 2076}, + [3495] = {.lex_state = 1732, .external_lex_state = 2}, + [3496] = {.lex_state = 2076}, + [3497] = {.lex_state = 2076}, + [3498] = {.lex_state = 108}, + [3499] = {.lex_state = 2076}, + [3500] = {.lex_state = 2076}, + [3501] = {.lex_state = 1732, .external_lex_state = 2}, + [3502] = {.lex_state = 2076}, + [3503] = {.lex_state = 2076}, + [3504] = {.lex_state = 1732, .external_lex_state = 2}, + [3505] = {.lex_state = 2076}, + [3506] = {.lex_state = 2076}, + [3507] = {.lex_state = 1732, .external_lex_state = 2}, + [3508] = {.lex_state = 2076}, + [3509] = {.lex_state = 2076}, + [3510] = {.lex_state = 1732, .external_lex_state = 2}, + [3511] = {.lex_state = 2076}, + [3512] = {.lex_state = 2076}, + [3513] = {.lex_state = 1732, .external_lex_state = 2}, + [3514] = {.lex_state = 2076}, + [3515] = {.lex_state = 2076}, + [3516] = {.lex_state = 1732, .external_lex_state = 2}, + [3517] = {.lex_state = 2076}, + [3518] = {.lex_state = 2076}, + [3519] = {.lex_state = 1732, .external_lex_state = 2}, + [3520] = {.lex_state = 2076}, + [3521] = {.lex_state = 2076}, + [3522] = {.lex_state = 1732, .external_lex_state = 2}, + [3523] = {.lex_state = 2076}, + [3524] = {.lex_state = 2076}, + [3525] = {.lex_state = 1732, .external_lex_state = 2}, + [3526] = {.lex_state = 1732, .external_lex_state = 2}, + [3527] = {.lex_state = 1732, .external_lex_state = 2}, + [3528] = {.lex_state = 1732, .external_lex_state = 2}, + [3529] = {.lex_state = 1732, .external_lex_state = 2}, + [3530] = {.lex_state = 1732, .external_lex_state = 2}, + [3531] = {.lex_state = 1732, .external_lex_state = 2}, + [3532] = {.lex_state = 213}, + [3533] = {.lex_state = 225}, + [3534] = {.lex_state = 583}, + [3535] = {.lex_state = 130}, + [3536] = {.lex_state = 130}, + [3537] = {.lex_state = 107}, + [3538] = {.lex_state = 87}, + [3539] = {.lex_state = 87}, + [3540] = {.lex_state = 107}, + [3541] = {.lex_state = 108}, + [3542] = {.lex_state = 108}, + [3543] = {.lex_state = 204}, + [3544] = {.lex_state = 1732, .external_lex_state = 2}, + [3545] = {.lex_state = 252}, + [3546] = {.lex_state = 583}, + [3547] = {.lex_state = 216}, + [3548] = {.lex_state = 218}, + [3549] = {.lex_state = 583}, + [3550] = {.lex_state = 583}, + [3551] = {.lex_state = 226}, + [3552] = {.lex_state = 227}, + [3553] = {.lex_state = 218}, + [3554] = {.lex_state = 583}, + [3555] = {.lex_state = 583}, + [3556] = {.lex_state = 95}, + [3557] = {.lex_state = 583}, + [3558] = {.lex_state = 583}, + [3559] = {.lex_state = 205}, + [3560] = {.lex_state = 583}, + [3561] = {.lex_state = 583}, + [3562] = {.lex_state = 629}, + [3563] = {.lex_state = 95}, + [3564] = {.lex_state = 583}, + [3565] = {.lex_state = 583}, + [3566] = {.lex_state = 95}, + [3567] = {.lex_state = 242}, + [3568] = {.lex_state = 583}, + [3569] = {.lex_state = 583}, + [3570] = {.lex_state = 583}, + [3571] = {.lex_state = 112}, + [3572] = {.lex_state = 583}, + [3573] = {.lex_state = 583}, + [3574] = {.lex_state = 213}, + [3575] = {.lex_state = 226}, + [3576] = {.lex_state = 583}, + [3577] = {.lex_state = 112}, + [3578] = {.lex_state = 583}, + [3579] = {.lex_state = 109}, + [3580] = {.lex_state = 226}, + [3581] = {.lex_state = 583}, + [3582] = {.lex_state = 583}, + [3583] = {.lex_state = 109}, + [3584] = {.lex_state = 109}, + [3585] = {.lex_state = 242}, + [3586] = {.lex_state = 583}, + [3587] = {.lex_state = 583}, + [3588] = {.lex_state = 583}, + [3589] = {.lex_state = 111}, + [3590] = {.lex_state = 583}, + [3591] = {.lex_state = 583}, + [3592] = {.lex_state = 583}, + [3593] = {.lex_state = 583}, + [3594] = {.lex_state = 583}, + [3595] = {.lex_state = 583}, + [3596] = {.lex_state = 583}, + [3597] = {.lex_state = 583}, + [3598] = {.lex_state = 87}, + [3599] = {.lex_state = 583}, + [3600] = {.lex_state = 103}, + [3601] = {.lex_state = 583}, + [3602] = {.lex_state = 583}, + [3603] = {.lex_state = 583}, + [3604] = {.lex_state = 583}, + [3605] = {.lex_state = 583}, + [3606] = {.lex_state = 583}, + [3607] = {.lex_state = 583}, + [3608] = {.lex_state = 583}, + [3609] = {.lex_state = 242}, + [3610] = {.lex_state = 583}, + [3611] = {.lex_state = 89}, + [3612] = {.lex_state = 583}, + [3613] = {.lex_state = 95}, + [3614] = {.lex_state = 246}, + [3615] = {.lex_state = 89}, + [3616] = {.lex_state = 629}, + [3617] = {.lex_state = 109}, + [3618] = {.lex_state = 216}, + [3619] = {.lex_state = 242}, + [3620] = {.lex_state = 583}, + [3621] = {.lex_state = 137}, + [3622] = {.lex_state = 114}, + [3623] = {.lex_state = 135}, + [3624] = {.lex_state = 219}, + [3625] = {.lex_state = 90}, + [3626] = {.lex_state = 250}, + [3627] = {.lex_state = 219}, + [3628] = {.lex_state = 250}, + [3629] = {.lex_state = 580}, + [3630] = {.lex_state = 250}, + [3631] = {.lex_state = 114}, + [3632] = {.lex_state = 580}, + [3633] = {.lex_state = 228}, + [3634] = {.lex_state = 250}, + [3635] = {.lex_state = 113}, + [3636] = {.lex_state = 250}, + [3637] = {.lex_state = 250}, + [3638] = {.lex_state = 228}, + [3639] = {.lex_state = 135}, + [3640] = {.lex_state = 113}, + [3641] = {.lex_state = 250}, + [3642] = {.lex_state = 90}, + [3643] = {.lex_state = 113}, + [3644] = {.lex_state = 250}, + [3645] = {.lex_state = 217}, + [3646] = {.lex_state = 250}, + [3647] = {.lex_state = 10}, + [3648] = {.lex_state = 137}, + [3649] = {.lex_state = 137}, + [3650] = {.lex_state = 250}, + [3651] = {.lex_state = 137}, + [3652] = {.lex_state = 219}, + [3653] = {.lex_state = 247}, + [3654] = {.lex_state = 250}, + [3655] = {.lex_state = 217}, + [3656] = {.lex_state = 90}, + [3657] = {.lex_state = 264}, + [3658] = {.lex_state = 219}, + [3659] = {.lex_state = 253}, + [3660] = {.lex_state = 113}, + [3661] = {.lex_state = 90}, + [3662] = {.lex_state = 253}, + [3663] = {.lex_state = 90}, + [3664] = {.lex_state = 130}, + [3665] = {.lex_state = 95}, + [3666] = {.lex_state = 95}, + [3667] = {.lex_state = 137}, + [3668] = {.lex_state = 250}, + [3669] = {.lex_state = 217}, + [3670] = {.lex_state = 219}, + [3671] = {.lex_state = 250}, + [3672] = {.lex_state = 137}, + [3673] = {.lex_state = 282}, + [3674] = {.lex_state = 113}, + [3675] = {.lex_state = 626}, + [3676] = {.lex_state = 123}, + [3677] = {.lex_state = 282}, + [3678] = {.lex_state = 281}, + [3679] = {.lex_state = 95}, + [3680] = {.lex_state = 130}, + [3681] = {.lex_state = 37}, + [3682] = {.lex_state = 115}, + [3683] = {.lex_state = 282}, + [3684] = {.lex_state = 37}, + [3685] = {.lex_state = 37}, + [3686] = {.lex_state = 37}, + [3687] = {.lex_state = 115}, + [3688] = {.lex_state = 251}, + [3689] = {.lex_state = 130}, + [3690] = {.lex_state = 37}, + [3691] = {.lex_state = 229}, + [3692] = {.lex_state = 212}, + [3693] = {.lex_state = 137}, + [3694] = {.lex_state = 115}, + [3695] = {.lex_state = 91}, + [3696] = {.lex_state = 229}, + [3697] = {.lex_state = 37}, + [3698] = {.lex_state = 137}, + [3699] = {.lex_state = 115}, + [3700] = {.lex_state = 130}, + [3701] = {.lex_state = 130}, + [3702] = {.lex_state = 130}, + [3703] = {.lex_state = 265}, + [3704] = {.lex_state = 580}, + [3705] = {.lex_state = 580}, + [3706] = {.lex_state = 254}, + [3707] = {.lex_state = 261}, + [3708] = {.lex_state = 130}, + [3709] = {.lex_state = 130}, + [3710] = {.lex_state = 281}, + [3711] = {.lex_state = 95}, + [3712] = {.lex_state = 282}, + [3713] = {.lex_state = 37}, + [3714] = {.lex_state = 95}, + [3715] = {.lex_state = 137}, + [3716] = {.lex_state = 130}, + [3717] = {.lex_state = 137}, + [3718] = {.lex_state = 130}, + [3719] = {.lex_state = 626}, + [3720] = {.lex_state = 135}, + [3721] = {.lex_state = 217}, + [3722] = {.lex_state = 130}, + [3723] = {.lex_state = 220}, + [3724] = {.lex_state = 137}, + [3725] = {.lex_state = 130}, + [3726] = {.lex_state = 255}, + [3727] = {.lex_state = 130}, + [3728] = {.lex_state = 137}, + [3729] = {.lex_state = 37}, + [3730] = {.lex_state = 626}, + [3731] = {.lex_state = 137}, + [3732] = {.lex_state = 37}, + [3733] = {.lex_state = 37}, + [3734] = {.lex_state = 626}, + [3735] = {.lex_state = 37}, + [3736] = {.lex_state = 37}, + [3737] = {.lex_state = 37}, + [3738] = {.lex_state = 37}, + [3739] = {.lex_state = 37}, + [3740] = {.lex_state = 281}, + [3741] = {.lex_state = 37}, + [3742] = {.lex_state = 37}, + [3743] = {.lex_state = 37}, + [3744] = {.lex_state = 254}, + [3745] = {.lex_state = 229}, + [3746] = {.lex_state = 37}, + [3747] = {.lex_state = 626}, + [3748] = {.lex_state = 580}, + [3749] = {.lex_state = 37}, + [3750] = {.lex_state = 137}, + [3751] = {.lex_state = 580}, + [3752] = {.lex_state = 580}, + [3753] = {.lex_state = 580}, + [3754] = {.lex_state = 265}, + [3755] = {.lex_state = 95}, + [3756] = {.lex_state = 626}, + [3757] = {.lex_state = 208}, + [3758] = {.lex_state = 626}, + [3759] = {.lex_state = 229}, + [3760] = {.lex_state = 626}, + [3761] = {.lex_state = 37}, + [3762] = {.lex_state = 37}, + [3763] = {.lex_state = 135}, + [3764] = {.lex_state = 626}, + [3765] = {.lex_state = 135}, + [3766] = {.lex_state = 626}, + [3767] = {.lex_state = 130}, + [3768] = {.lex_state = 130}, + [3769] = {.lex_state = 92}, + [3770] = {.lex_state = 248}, + [3771] = {.lex_state = 254}, + [3772] = {.lex_state = 254}, + [3773] = {.lex_state = 37}, + [3774] = {.lex_state = 217}, + [3775] = {.lex_state = 229}, + [3776] = {.lex_state = 116}, [3777] = {.lex_state = 130}, - [3778] = {.lex_state = 124}, - [3779] = {.lex_state = 130}, - [3780] = {.lex_state = 124}, - [3781] = {.lex_state = 182}, - [3782] = {.lex_state = 2072}, - [3783] = {.lex_state = 2072}, - [3784] = {.lex_state = 276}, - [3785] = {.lex_state = 182}, - [3786] = {.lex_state = 276}, - [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 0}, - [3789] = {.lex_state = 0}, - [3790] = {.lex_state = 0}, - [3791] = {.lex_state = 129}, - [3792] = {.lex_state = 31}, - [3793] = {.lex_state = 119}, - [3794] = {.lex_state = 124}, - [3795] = {.lex_state = 129}, - [3796] = {.lex_state = 129}, - [3797] = {.lex_state = 124}, - [3798] = {.lex_state = 129}, - [3799] = {.lex_state = 129}, - [3800] = {.lex_state = 129}, - [3801] = {.lex_state = 119}, - [3802] = {.lex_state = 276}, - [3803] = {.lex_state = 577}, - [3804] = {.lex_state = 276}, - [3805] = {.lex_state = 2072}, - [3806] = {.lex_state = 2072}, - [3807] = {.lex_state = 124}, - [3808] = {.lex_state = 124}, - [3809] = {.lex_state = 124}, - [3810] = {.lex_state = 87}, - [3811] = {.lex_state = 249}, - [3812] = {.lex_state = 131}, - [3813] = {.lex_state = 87}, - [3814] = {.lex_state = 182}, - [3815] = {.lex_state = 276}, - [3816] = {.lex_state = 276}, - [3817] = {.lex_state = 114}, - [3818] = {.lex_state = 258}, - [3819] = {.lex_state = 182}, - [3820] = {.lex_state = 31}, - [3821] = {.lex_state = 2072}, - [3822] = {.lex_state = 2072}, - [3823] = {.lex_state = 182}, - [3824] = {.lex_state = 0}, - [3825] = {.lex_state = 182}, - [3826] = {.lex_state = 2072}, - [3827] = {.lex_state = 2072}, - [3828] = {.lex_state = 182}, - [3829] = {.lex_state = 182}, - [3830] = {.lex_state = 2072}, - [3831] = {.lex_state = 2072}, - [3832] = {.lex_state = 182}, - [3833] = {.lex_state = 182}, - [3834] = {.lex_state = 182}, - [3835] = {.lex_state = 182}, - [3836] = {.lex_state = 124}, - [3837] = {.lex_state = 182}, - [3838] = {.lex_state = 228}, - [3839] = {.lex_state = 182}, - [3840] = {.lex_state = 182}, - [3841] = {.lex_state = 2176}, - [3842] = {.lex_state = 2176}, - [3843] = {.lex_state = 261}, - [3844] = {.lex_state = 239}, - [3845] = {.lex_state = 31}, - [3846] = {.lex_state = 124}, - [3847] = {.lex_state = 124}, - [3848] = {.lex_state = 640}, - [3849] = {.lex_state = 216}, - [3850] = {.lex_state = 216}, - [3851] = {.lex_state = 202}, - [3852] = {.lex_state = 251}, - [3853] = {.lex_state = 640}, - [3854] = {.lex_state = 261}, - [3855] = {.lex_state = 261}, - [3856] = {.lex_state = 261}, - [3857] = {.lex_state = 124}, - [3858] = {.lex_state = 124}, - [3859] = {.lex_state = 190}, - [3860] = {.lex_state = 124}, - [3861] = {.lex_state = 124}, - [3862] = {.lex_state = 124}, - [3863] = {.lex_state = 124}, - [3864] = {.lex_state = 182}, - [3865] = {.lex_state = 276}, - [3866] = {.lex_state = 276}, - [3867] = {.lex_state = 276}, - [3868] = {.lex_state = 262}, - [3869] = {.lex_state = 640}, - [3870] = {.lex_state = 640}, - [3871] = {.lex_state = 31}, - [3872] = {.lex_state = 640}, - [3873] = {.lex_state = 611}, - [3874] = {.lex_state = 256}, - [3875] = {.lex_state = 31}, - [3876] = {.lex_state = 276}, - [3877] = {.lex_state = 276}, - [3878] = {.lex_state = 276}, - [3879] = {.lex_state = 31}, - [3880] = {.lex_state = 118}, - [3881] = {.lex_state = 276}, - [3882] = {.lex_state = 276}, - [3883] = {.lex_state = 131}, - [3884] = {.lex_state = 131}, - [3885] = {.lex_state = 88}, - [3886] = {.lex_state = 88}, - [3887] = {.lex_state = 278}, - [3888] = {.lex_state = 625}, - [3889] = {.lex_state = 129}, - [3890] = {.lex_state = 252}, - [3891] = {.lex_state = 625}, - [3892] = {.lex_state = 252}, - [3893] = {.lex_state = 2}, - [3894] = {.lex_state = 625}, - [3895] = {.lex_state = 625}, - [3896] = {.lex_state = 126}, - [3897] = {.lex_state = 622}, - [3898] = {.lex_state = 625}, - [3899] = {.lex_state = 126}, - [3900] = {.lex_state = 120}, - [3901] = {.lex_state = 201}, - [3902] = {.lex_state = 0}, - [3903] = {.lex_state = 190}, - [3904] = {.lex_state = 226}, - [3905] = {.lex_state = 124}, - [3906] = {.lex_state = 124}, - [3907] = {.lex_state = 124}, - [3908] = {.lex_state = 120}, - [3909] = {.lex_state = 120}, - [3910] = {.lex_state = 278}, - [3911] = {.lex_state = 124}, - [3912] = {.lex_state = 180}, - [3913] = {.lex_state = 278}, - [3914] = {.lex_state = 120}, - [3915] = {.lex_state = 622}, - [3916] = {.lex_state = 227}, - [3917] = {.lex_state = 278}, - [3918] = {.lex_state = 31}, - [3919] = {.lex_state = 120}, - [3920] = {.lex_state = 123}, - [3921] = {.lex_state = 217}, - [3922] = {.lex_state = 217}, - [3923] = {.lex_state = 120}, - [3924] = {.lex_state = 149}, - [3925] = {.lex_state = 149}, - [3926] = {.lex_state = 120}, - [3927] = {.lex_state = 217}, - [3928] = {.lex_state = 217}, - [3929] = {.lex_state = 120}, - [3930] = {.lex_state = 217}, - [3931] = {.lex_state = 120}, - [3932] = {.lex_state = 217}, - [3933] = {.lex_state = 622}, - [3934] = {.lex_state = 126}, - [3935] = {.lex_state = 120}, - [3936] = {.lex_state = 120}, - [3937] = {.lex_state = 124}, - [3938] = {.lex_state = 217}, - [3939] = {.lex_state = 276}, - [3940] = {.lex_state = 622}, - [3941] = {.lex_state = 88}, - [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 217}, - [3944] = {.lex_state = 217}, - [3945] = {.lex_state = 278}, - [3946] = {.lex_state = 88}, - [3947] = {.lex_state = 131}, - [3948] = {.lex_state = 88}, - [3949] = {.lex_state = 131}, - [3950] = {.lex_state = 88}, - [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 625}, - [3953] = {.lex_state = 581}, - [3954] = {.lex_state = 124}, - [3955] = {.lex_state = 180}, - [3956] = {.lex_state = 278}, - [3957] = {.lex_state = 622}, - [3958] = {.lex_state = 89}, - [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 278}, - [3961] = {.lex_state = 88}, - [3962] = {.lex_state = 160}, - [3963] = {.lex_state = 0}, - [3964] = {.lex_state = 160}, - [3965] = {.lex_state = 124}, - [3966] = {.lex_state = 180}, - [3967] = {.lex_state = 278}, - [3968] = {.lex_state = 33}, - [3969] = {.lex_state = 180}, - [3970] = {.lex_state = 581}, - [3971] = {.lex_state = 120}, - [3972] = {.lex_state = 89}, - [3973] = {.lex_state = 120}, - [3974] = {.lex_state = 180}, - [3975] = {.lex_state = 278}, - [3976] = {.lex_state = 124}, - [3977] = {.lex_state = 252}, - [3978] = {.lex_state = 278}, - [3979] = {.lex_state = 180}, - [3980] = {.lex_state = 278}, - [3981] = {.lex_state = 278}, - [3982] = {.lex_state = 278}, - [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 0}, - [3985] = {.lex_state = 230}, - [3986] = {.lex_state = 180}, - [3987] = {.lex_state = 278}, - [3988] = {.lex_state = 278}, - [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 252}, - [3991] = {.lex_state = 180}, - [3992] = {.lex_state = 278}, - [3993] = {.lex_state = 129}, - [3994] = {.lex_state = 278}, - [3995] = {.lex_state = 230}, - [3996] = {.lex_state = 180}, - [3997] = {.lex_state = 31}, - [3998] = {.lex_state = 180}, - [3999] = {.lex_state = 180}, - [4000] = {.lex_state = 180}, - [4001] = {.lex_state = 625}, - [4002] = {.lex_state = 227}, - [4003] = {.lex_state = 180}, - [4004] = {.lex_state = 180}, - [4005] = {.lex_state = 124}, - [4006] = {.lex_state = 180}, - [4007] = {.lex_state = 625}, - [4008] = {.lex_state = 180}, - [4009] = {.lex_state = 180}, - [4010] = {.lex_state = 180}, - [4011] = {.lex_state = 180}, - [4012] = {.lex_state = 88}, - [4013] = {.lex_state = 88}, - [4014] = {.lex_state = 622}, - [4015] = {.lex_state = 217}, - [4016] = {.lex_state = 120}, - [4017] = {.lex_state = 217}, - [4018] = {.lex_state = 217}, - [4019] = {.lex_state = 278}, - [4020] = {.lex_state = 88}, - [4021] = {.lex_state = 31}, - [4022] = {.lex_state = 217}, - [4023] = {.lex_state = 276}, - [4024] = {.lex_state = 252}, - [4025] = {.lex_state = 89}, - [4026] = {.lex_state = 88}, - [4027] = {.lex_state = 33}, - [4028] = {.lex_state = 577}, - [4029] = {.lex_state = 31}, - [4030] = {.lex_state = 88}, - [4031] = {.lex_state = 88}, - [4032] = {.lex_state = 263}, - [4033] = {.lex_state = 124}, - [4034] = {.lex_state = 2}, - [4035] = {.lex_state = 263}, - [4036] = {.lex_state = 180}, - [4037] = {.lex_state = 124}, - [4038] = {.lex_state = 37}, - [4039] = {.lex_state = 46}, - [4040] = {.lex_state = 2}, - [4041] = {.lex_state = 2}, - [4042] = {.lex_state = 652}, - [4043] = {.lex_state = 121}, - [4044] = {.lex_state = 121}, - [4045] = {.lex_state = 2}, - [4046] = {.lex_state = 2}, - [4047] = {.lex_state = 278}, - [4048] = {.lex_state = 124}, - [4049] = {.lex_state = 31}, - [4050] = {.lex_state = 245}, - [4051] = {.lex_state = 268}, - [4052] = {.lex_state = 31}, - [4053] = {.lex_state = 31}, - [4054] = {.lex_state = 31}, - [4055] = {.lex_state = 149}, - [4056] = {.lex_state = 238}, - [4057] = {.lex_state = 122}, - [4058] = {.lex_state = 190}, - [4059] = {.lex_state = 126}, - [4060] = {.lex_state = 93}, - [4061] = {.lex_state = 238}, - [4062] = {.lex_state = 238}, - [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 149}, + [3778] = {.lex_state = 115}, + [3779] = {.lex_state = 282}, + [3780] = {.lex_state = 282}, + [3781] = {.lex_state = 626}, + [3782] = {.lex_state = 282}, + [3783] = {.lex_state = 223}, + [3784] = {.lex_state = 37}, + [3785] = {.lex_state = 281}, + [3786] = {.lex_state = 626}, + [3787] = {.lex_state = 221}, + [3788] = {.lex_state = 640}, + [3789] = {.lex_state = 281}, + [3790] = {.lex_state = 130}, + [3791] = {.lex_state = 130}, + [3792] = {.lex_state = 281}, + [3793] = {.lex_state = 626}, + [3794] = {.lex_state = 254}, + [3795] = {.lex_state = 281}, + [3796] = {.lex_state = 626}, + [3797] = {.lex_state = 281}, + [3798] = {.lex_state = 579}, + [3799] = {.lex_state = 626}, + [3800] = {.lex_state = 256}, + [3801] = {.lex_state = 267}, + [3802] = {.lex_state = 579}, + [3803] = {.lex_state = 626}, + [3804] = {.lex_state = 262}, + [3805] = {.lex_state = 626}, + [3806] = {.lex_state = 233}, + [3807] = {.lex_state = 263}, + [3808] = {.lex_state = 187}, + [3809] = {.lex_state = 626}, + [3810] = {.lex_state = 626}, + [3811] = {.lex_state = 281}, + [3812] = {.lex_state = 613}, + [3813] = {.lex_state = 626}, + [3814] = {.lex_state = 640}, + [3815] = {.lex_state = 640}, + [3816] = {.lex_state = 640}, + [3817] = {.lex_state = 221}, + [3818] = {.lex_state = 187}, + [3819] = {.lex_state = 130}, + [3820] = {.lex_state = 2077}, + [3821] = {.lex_state = 2077}, + [3822] = {.lex_state = 244}, + [3823] = {.lex_state = 187}, + [3824] = {.lex_state = 130}, + [3825] = {.lex_state = 206}, + [3826] = {.lex_state = 629}, + [3827] = {.lex_state = 626}, + [3828] = {.lex_state = 130}, + [3829] = {.lex_state = 626}, + [3830] = {.lex_state = 130}, + [3831] = {.lex_state = 187}, + [3832] = {.lex_state = 135}, + [3833] = {.lex_state = 2077}, + [3834] = {.lex_state = 2077}, + [3835] = {.lex_state = 124}, + [3836] = {.lex_state = 187}, + [3837] = {.lex_state = 256}, + [3838] = {.lex_state = 125}, + [3839] = {.lex_state = 626}, + [3840] = {.lex_state = 187}, + [3841] = {.lex_state = 135}, + [3842] = {.lex_state = 2077}, + [3843] = {.lex_state = 2077}, + [3844] = {.lex_state = 626}, + [3845] = {.lex_state = 626}, + [3846] = {.lex_state = 135}, + [3847] = {.lex_state = 187}, + [3848] = {.lex_state = 187}, + [3849] = {.lex_state = 187}, + [3850] = {.lex_state = 130}, + [3851] = {.lex_state = 130}, + [3852] = {.lex_state = 2181}, + [3853] = {.lex_state = 187}, + [3854] = {.lex_state = 2181}, + [3855] = {.lex_state = 120}, + [3856] = {.lex_state = 187}, + [3857] = {.lex_state = 266}, + [3858] = {.lex_state = 230}, + [3859] = {.lex_state = 187}, + [3860] = {.lex_state = 626}, + [3861] = {.lex_state = 187}, + [3862] = {.lex_state = 130}, + [3863] = {.lex_state = 130}, + [3864] = {.lex_state = 135}, + [3865] = {.lex_state = 187}, + [3866] = {.lex_state = 262}, + [3867] = {.lex_state = 249}, + [3868] = {.lex_state = 626}, + [3869] = {.lex_state = 626}, + [3870] = {.lex_state = 135}, + [3871] = {.lex_state = 266}, + [3872] = {.lex_state = 117}, + [3873] = {.lex_state = 281}, + [3874] = {.lex_state = 135}, + [3875] = {.lex_state = 626}, + [3876] = {.lex_state = 626}, + [3877] = {.lex_state = 281}, + [3878] = {.lex_state = 130}, + [3879] = {.lex_state = 135}, + [3880] = {.lex_state = 281}, + [3881] = {.lex_state = 281}, + [3882] = {.lex_state = 130}, + [3883] = {.lex_state = 195}, + [3884] = {.lex_state = 663}, + [3885] = {.lex_state = 640}, + [3886] = {.lex_state = 626}, + [3887] = {.lex_state = 266}, + [3888] = {.lex_state = 95}, + [3889] = {.lex_state = 125}, + [3890] = {.lex_state = 266}, + [3891] = {.lex_state = 135}, + [3892] = {.lex_state = 187}, + [3893] = {.lex_state = 2077}, + [3894] = {.lex_state = 2077}, + [3895] = {.lex_state = 254}, + [3896] = {.lex_state = 187}, + [3897] = {.lex_state = 130}, + [3898] = {.lex_state = 2077}, + [3899] = {.lex_state = 130}, + [3900] = {.lex_state = 130}, + [3901] = {.lex_state = 130}, + [3902] = {.lex_state = 2077}, + [3903] = {.lex_state = 263}, + [3904] = {.lex_state = 281}, + [3905] = {.lex_state = 281}, + [3906] = {.lex_state = 281}, + [3907] = {.lex_state = 93}, + [3908] = {.lex_state = 195}, + [3909] = {.lex_state = 629}, + [3910] = {.lex_state = 626}, + [3911] = {.lex_state = 187}, + [3912] = {.lex_state = 626}, + [3913] = {.lex_state = 130}, + [3914] = {.lex_state = 626}, + [3915] = {.lex_state = 626}, + [3916] = {.lex_state = 93}, + [3917] = {.lex_state = 281}, + [3918] = {.lex_state = 281}, + [3919] = {.lex_state = 281}, + [3920] = {.lex_state = 640}, + [3921] = {.lex_state = 137}, + [3922] = {.lex_state = 281}, + [3923] = {.lex_state = 281}, + [3924] = {.lex_state = 207}, + [3925] = {.lex_state = 187}, + [3926] = {.lex_state = 187}, + [3927] = {.lex_state = 130}, + [3928] = {.lex_state = 2077}, + [3929] = {.lex_state = 137}, + [3930] = {.lex_state = 2077}, + [3931] = {.lex_state = 281}, + [3932] = {.lex_state = 624}, + [3933] = {.lex_state = 37}, + [3934] = {.lex_state = 135}, + [3935] = {.lex_state = 94}, + [3936] = {.lex_state = 626}, + [3937] = {.lex_state = 283}, + [3938] = {.lex_state = 130}, + [3939] = {.lex_state = 656}, + [3940] = {.lex_state = 126}, + [3941] = {.lex_state = 127}, + [3942] = {.lex_state = 185}, + [3943] = {.lex_state = 126}, + [3944] = {.lex_state = 185}, + [3945] = {.lex_state = 283}, + [3946] = {.lex_state = 626}, + [3947] = {.lex_state = 626}, + [3948] = {.lex_state = 222}, + [3949] = {.lex_state = 232}, + [3950] = {.lex_state = 185}, + [3951] = {.lex_state = 257}, + [3952] = {.lex_state = 126}, + [3953] = {.lex_state = 95}, + [3954] = {.lex_state = 222}, + [3955] = {.lex_state = 126}, + [3956] = {.lex_state = 624}, + [3957] = {.lex_state = 185}, + [3958] = {.lex_state = 257}, + [3959] = {.lex_state = 257}, + [3960] = {.lex_state = 130}, + [3961] = {.lex_state = 626}, + [3962] = {.lex_state = 185}, + [3963] = {.lex_state = 126}, + [3964] = {.lex_state = 126}, + [3965] = {.lex_state = 94}, + [3966] = {.lex_state = 130}, + [3967] = {.lex_state = 185}, + [3968] = {.lex_state = 130}, + [3969] = {.lex_state = 222}, + [3970] = {.lex_state = 126}, + [3971] = {.lex_state = 283}, + [3972] = {.lex_state = 185}, + [3973] = {.lex_state = 626}, + [3974] = {.lex_state = 283}, + [3975] = {.lex_state = 185}, + [3976] = {.lex_state = 583}, + [3977] = {.lex_state = 127}, + [3978] = {.lex_state = 185}, + [3979] = {.lex_state = 95}, + [3980] = {.lex_state = 185}, + [3981] = {.lex_state = 185}, + [3982] = {.lex_state = 94}, + [3983] = {.lex_state = 281}, + [3984] = {.lex_state = 185}, + [3985] = {.lex_state = 185}, + [3986] = {.lex_state = 185}, + [3987] = {.lex_state = 94}, + [3988] = {.lex_state = 185}, + [3989] = {.lex_state = 185}, + [3990] = {.lex_state = 283}, + [3991] = {.lex_state = 222}, + [3992] = {.lex_state = 126}, + [3993] = {.lex_state = 126}, + [3994] = {.lex_state = 222}, + [3995] = {.lex_state = 10}, + [3996] = {.lex_state = 268}, + [3997] = {.lex_state = 126}, + [3998] = {.lex_state = 281}, + [3999] = {.lex_state = 222}, + [4000] = {.lex_state = 126}, + [4001] = {.lex_state = 222}, + [4002] = {.lex_state = 42}, + [4003] = {.lex_state = 130}, + [4004] = {.lex_state = 629}, + [4005] = {.lex_state = 624}, + [4006] = {.lex_state = 629}, + [4007] = {.lex_state = 185}, + [4008] = {.lex_state = 135}, + [4009] = {.lex_state = 130}, + [4010] = {.lex_state = 130}, + [4011] = {.lex_state = 283}, + [4012] = {.lex_state = 94}, + [4013] = {.lex_state = 126}, + [4014] = {.lex_state = 94}, + [4015] = {.lex_state = 10}, + [4016] = {.lex_state = 132}, + [4017] = {.lex_state = 132}, + [4018] = {.lex_state = 130}, + [4019] = {.lex_state = 283}, + [4020] = {.lex_state = 95}, + [4021] = {.lex_state = 283}, + [4022] = {.lex_state = 185}, + [4023] = {.lex_state = 626}, + [4024] = {.lex_state = 195}, + [4025] = {.lex_state = 257}, + [4026] = {.lex_state = 629}, + [4027] = {.lex_state = 185}, + [4028] = {.lex_state = 283}, + [4029] = {.lex_state = 283}, + [4030] = {.lex_state = 94}, + [4031] = {.lex_state = 624}, + [4032] = {.lex_state = 626}, + [4033] = {.lex_state = 222}, + [4034] = {.lex_state = 283}, + [4035] = {.lex_state = 10}, + [4036] = {.lex_state = 583}, + [4037] = {.lex_state = 579}, + [4038] = {.lex_state = 232}, + [4039] = {.lex_state = 629}, + [4040] = {.lex_state = 235}, + [4041] = {.lex_state = 629}, + [4042] = {.lex_state = 231}, + [4043] = {.lex_state = 222}, + [4044] = {.lex_state = 94}, + [4045] = {.lex_state = 235}, + [4046] = {.lex_state = 185}, + [4047] = {.lex_state = 283}, + [4048] = {.lex_state = 42}, + [4049] = {.lex_state = 624}, + [4050] = {.lex_state = 126}, + [4051] = {.lex_state = 10}, + [4052] = {.lex_state = 132}, + [4053] = {.lex_state = 629}, + [4054] = {.lex_state = 283}, + [4055] = {.lex_state = 222}, + [4056] = {.lex_state = 222}, + [4057] = {.lex_state = 206}, + [4058] = {.lex_state = 283}, + [4059] = {.lex_state = 283}, + [4060] = {.lex_state = 94}, + [4061] = {.lex_state = 94}, + [4062] = {.lex_state = 222}, + [4063] = {.lex_state = 130}, + [4064] = {.lex_state = 94}, [4065] = {.lex_state = 126}, - [4066] = {.lex_state = 0}, - [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 31}, - [4069] = {.lex_state = 31}, - [4070] = {.lex_state = 31}, - [4071] = {.lex_state = 190}, - [4072] = {.lex_state = 149}, - [4073] = {.lex_state = 149}, - [4074] = {.lex_state = 190}, - [4075] = {.lex_state = 190}, - [4076] = {.lex_state = 0}, - [4077] = {.lex_state = 88}, - [4078] = {.lex_state = 31}, - [4079] = {.lex_state = 190}, - [4080] = {.lex_state = 0}, - [4081] = {.lex_state = 31}, - [4082] = {.lex_state = 31}, - [4083] = {.lex_state = 31}, - [4084] = {.lex_state = 31}, - [4085] = {.lex_state = 31}, - [4086] = {.lex_state = 31}, - [4087] = {.lex_state = 122}, - [4088] = {.lex_state = 264}, - [4089] = {.lex_state = 180}, - [4090] = {.lex_state = 31}, - [4091] = {.lex_state = 31}, - [4092] = {.lex_state = 31}, - [4093] = {.lex_state = 31}, - [4094] = {.lex_state = 31}, - [4095] = {.lex_state = 31}, - [4096] = {.lex_state = 190}, - [4097] = {.lex_state = 124}, - [4098] = {.lex_state = 31}, - [4099] = {.lex_state = 31}, - [4100] = {.lex_state = 149}, - [4101] = {.lex_state = 31}, - [4102] = {.lex_state = 149}, - [4103] = {.lex_state = 124}, - [4104] = {.lex_state = 231}, - [4105] = {.lex_state = 190}, - [4106] = {.lex_state = 190}, - [4107] = {.lex_state = 190}, - [4108] = {.lex_state = 129}, - [4109] = {.lex_state = 190}, - [4110] = {.lex_state = 31}, - [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 122}, - [4113] = {.lex_state = 190}, - [4114] = {.lex_state = 31}, - [4115] = {.lex_state = 190}, - [4116] = {.lex_state = 190}, - [4117] = {.lex_state = 190}, - [4118] = {.lex_state = 122}, - [4119] = {.lex_state = 190}, - [4120] = {.lex_state = 122}, - [4121] = {.lex_state = 190}, - [4122] = {.lex_state = 190}, - [4123] = {.lex_state = 190}, - [4124] = {.lex_state = 122}, - [4125] = {.lex_state = 122}, - [4126] = {.lex_state = 123}, - [4127] = {.lex_state = 122}, - [4128] = {.lex_state = 149}, - [4129] = {.lex_state = 31}, - [4130] = {.lex_state = 231}, - [4131] = {.lex_state = 123}, - [4132] = {.lex_state = 123}, - [4133] = {.lex_state = 252}, - [4134] = {.lex_state = 217}, - [4135] = {.lex_state = 577}, - [4136] = {.lex_state = 31}, - [4137] = {.lex_state = 31}, - [4138] = {.lex_state = 31}, - [4139] = {.lex_state = 31}, - [4140] = {.lex_state = 126}, - [4141] = {.lex_state = 245}, - [4142] = {.lex_state = 31}, - [4143] = {.lex_state = 226}, - [4144] = {.lex_state = 31}, - [4145] = {.lex_state = 226}, - [4146] = {.lex_state = 122}, - [4147] = {.lex_state = 0}, - [4148] = {.lex_state = 253}, - [4149] = {.lex_state = 31}, - [4150] = {.lex_state = 126}, - [4151] = {.lex_state = 31}, - [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 126}, - [4154] = {.lex_state = 31}, - [4155] = {.lex_state = 0}, - [4156] = {.lex_state = 31}, - [4157] = {.lex_state = 122}, - [4158] = {.lex_state = 122}, - [4159] = {.lex_state = 231}, - [4160] = {.lex_state = 126}, - [4161] = {.lex_state = 126}, - [4162] = {.lex_state = 126}, - [4163] = {.lex_state = 190}, - [4164] = {.lex_state = 31}, - [4165] = {.lex_state = 190}, - [4166] = {.lex_state = 124}, - [4167] = {.lex_state = 0}, - [4168] = {.lex_state = 0}, - [4169] = {.lex_state = 245}, - [4170] = {.lex_state = 31}, - [4171] = {.lex_state = 31}, - [4172] = {.lex_state = 31}, - [4173] = {.lex_state = 124}, - [4174] = {.lex_state = 231}, - [4175] = {.lex_state = 31}, - [4176] = {.lex_state = 149}, - [4177] = {.lex_state = 231}, - [4178] = {.lex_state = 577}, - [4179] = {.lex_state = 252}, - [4180] = {.lex_state = 245}, - [4181] = {.lex_state = 42}, - [4182] = {.lex_state = 31}, - [4183] = {.lex_state = 577}, - [4184] = {.lex_state = 124}, - [4185] = {.lex_state = 0}, - [4186] = {.lex_state = 577}, - [4187] = {.lex_state = 577}, - [4188] = {.lex_state = 31}, - [4189] = {.lex_state = 622}, - [4190] = {.lex_state = 190}, - [4191] = {.lex_state = 124}, - [4192] = {.lex_state = 124}, - [4193] = {.lex_state = 245}, - [4194] = {.lex_state = 190}, - [4195] = {.lex_state = 182}, - [4196] = {.lex_state = 124}, - [4197] = {.lex_state = 190}, - [4198] = {.lex_state = 624}, - [4199] = {.lex_state = 190}, - [4200] = {.lex_state = 231}, - [4201] = {.lex_state = 31}, - [4202] = {.lex_state = 31}, - [4203] = {.lex_state = 124}, - [4204] = {.lex_state = 245}, - [4205] = {.lex_state = 182}, - [4206] = {.lex_state = 149}, - [4207] = {.lex_state = 577}, - [4208] = {.lex_state = 231}, - [4209] = {.lex_state = 231}, - [4210] = {.lex_state = 149}, - [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 31}, - [4213] = {.lex_state = 245}, - [4214] = {.lex_state = 149}, - [4215] = {.lex_state = 624}, - [4216] = {.lex_state = 124}, - [4217] = {.lex_state = 31}, - [4218] = {.lex_state = 231}, - [4219] = {.lex_state = 238}, - [4220] = {.lex_state = 31}, - [4221] = {.lex_state = 231}, - [4222] = {.lex_state = 231}, - [4223] = {.lex_state = 238}, - [4224] = {.lex_state = 245}, - [4225] = {.lex_state = 31}, - [4226] = {.lex_state = 31}, - [4227] = {.lex_state = 31}, - [4228] = {.lex_state = 31}, - [4229] = {.lex_state = 226}, - [4230] = {.lex_state = 245}, - [4231] = {.lex_state = 31}, - [4232] = {.lex_state = 577}, - [4233] = {.lex_state = 0}, - [4234] = {.lex_state = 190}, - [4235] = {.lex_state = 124}, - [4236] = {.lex_state = 124}, - [4237] = {.lex_state = 31}, - [4238] = {.lex_state = 124}, - [4239] = {.lex_state = 149}, - [4240] = {.lex_state = 31}, - [4241] = {.lex_state = 31}, - [4242] = {.lex_state = 245}, - [4243] = {.lex_state = 31}, - [4244] = {.lex_state = 31}, - [4245] = {.lex_state = 226}, - [4246] = {.lex_state = 0}, - [4247] = {.lex_state = 124}, - [4248] = {.lex_state = 0}, - [4249] = {.lex_state = 231}, - [4250] = {.lex_state = 31}, - [4251] = {.lex_state = 31}, - [4252] = {.lex_state = 31}, - [4253] = {.lex_state = 231}, - [4254] = {.lex_state = 245}, - [4255] = {.lex_state = 577}, - [4256] = {.lex_state = 124}, - [4257] = {.lex_state = 31}, - [4258] = {.lex_state = 180}, - [4259] = {.lex_state = 31}, - [4260] = {.lex_state = 124}, - [4261] = {.lex_state = 0}, - [4262] = {.lex_state = 226}, - [4263] = {.lex_state = 226}, - [4264] = {.lex_state = 217}, - [4265] = {.lex_state = 31}, - [4266] = {.lex_state = 129}, - [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 89}, - [4269] = {.lex_state = 31}, - [4270] = {.lex_state = 31}, - [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 0}, - [4273] = {.lex_state = 31}, - [4274] = {.lex_state = 129}, - [4275] = {.lex_state = 124}, - [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 124}, - [4278] = {.lex_state = 624}, - [4279] = {.lex_state = 31}, - [4280] = {.lex_state = 0}, - [4281] = {.lex_state = 625}, - [4282] = {.lex_state = 31}, - [4283] = {.lex_state = 245}, - [4284] = {.lex_state = 190}, - [4285] = {.lex_state = 31}, - [4286] = {.lex_state = 226}, - [4287] = {.lex_state = 31}, - [4288] = {.lex_state = 31}, - [4289] = {.lex_state = 31}, - [4290] = {.lex_state = 190}, - [4291] = {.lex_state = 226}, - [4292] = {.lex_state = 182}, - [4293] = {.lex_state = 31}, - [4294] = {.lex_state = 31}, - [4295] = {.lex_state = 190}, - [4296] = {.lex_state = 190}, - [4297] = {.lex_state = 31}, - [4298] = {.lex_state = 124}, - [4299] = {.lex_state = 31}, - [4300] = {.lex_state = 124}, - [4301] = {.lex_state = 238}, - [4302] = {.lex_state = 31}, - [4303] = {.lex_state = 226}, - [4304] = {.lex_state = 31}, - [4305] = {.lex_state = 0}, - [4306] = {.lex_state = 149}, - [4307] = {.lex_state = 31}, - [4308] = {.lex_state = 42}, - [4309] = {.lex_state = 31}, - [4310] = {.lex_state = 264}, - [4311] = {.lex_state = 31}, - [4312] = {.lex_state = 0}, - [4313] = {.lex_state = 245}, - [4314] = {.lex_state = 264}, - [4315] = {.lex_state = 245}, - [4316] = {.lex_state = 31}, - [4317] = {.lex_state = 264}, - [4318] = {.lex_state = 131}, - [4319] = {.lex_state = 42}, - [4320] = {.lex_state = 31}, - [4321] = {.lex_state = 31}, - [4322] = {.lex_state = 31}, - [4323] = {.lex_state = 264}, - [4324] = {.lex_state = 31}, - [4325] = {.lex_state = 31}, - [4326] = {.lex_state = 31}, - [4327] = {.lex_state = 31}, - [4328] = {.lex_state = 31}, - [4329] = {.lex_state = 31}, - [4330] = {.lex_state = 31}, - [4331] = {.lex_state = 31}, - [4332] = {.lex_state = 0}, - [4333] = {.lex_state = 0}, - [4334] = {.lex_state = 31}, - [4335] = {.lex_state = 149}, - [4336] = {.lex_state = 31}, - [4337] = {.lex_state = 31}, - [4338] = {.lex_state = 31}, - [4339] = {.lex_state = 31}, - [4340] = {.lex_state = 31}, - [4341] = {.lex_state = 31}, - [4342] = {.lex_state = 122}, - [4343] = {.lex_state = 245}, - [4344] = {.lex_state = 31}, - [4345] = {.lex_state = 31}, - [4346] = {.lex_state = 31}, - [4347] = {.lex_state = 31}, - [4348] = {.lex_state = 31}, - [4349] = {.lex_state = 122}, - [4350] = {.lex_state = 226}, - [4351] = {.lex_state = 31}, - [4352] = {.lex_state = 0}, - [4353] = {.lex_state = 122}, - [4354] = {.lex_state = 226}, - [4355] = {.lex_state = 0}, - [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 226}, - [4358] = {.lex_state = 0}, - [4359] = {.lex_state = 124}, - [4360] = {.lex_state = 0}, - [4361] = {.lex_state = 0}, - [4362] = {.lex_state = 0}, - [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 93}, - [4365] = {.lex_state = 190}, - [4366] = {.lex_state = 245}, - [4367] = {.lex_state = 124}, - [4368] = {.lex_state = 129}, - [4369] = {.lex_state = 31}, - [4370] = {.lex_state = 31}, - [4371] = {.lex_state = 31}, - [4372] = {.lex_state = 31}, - [4373] = {.lex_state = 577}, - [4374] = {.lex_state = 124}, - [4375] = {.lex_state = 126}, - [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 124}, - [4378] = {.lex_state = 89}, - [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 124}, - [4381] = {.lex_state = 93}, - [4382] = {.lex_state = 46}, - [4383] = {.lex_state = 0}, - [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 0}, - [4386] = {.lex_state = 124}, - [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 124}, - [4389] = {.lex_state = 0}, - [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 624}, - [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 123}, - [4394] = {.lex_state = 0}, - [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 126}, - [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 46}, - [4401] = {.lex_state = 34}, - [4402] = {.lex_state = 34}, - [4403] = {.lex_state = 0}, - [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 31}, - [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 123}, - [4408] = {.lex_state = 34}, - [4409] = {.lex_state = 0}, - [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 93}, - [4412] = {.lex_state = 0}, - [4413] = {.lex_state = 93}, - [4414] = {.lex_state = 190}, - [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 0}, - [4417] = {.lex_state = 0}, - [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 0}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 129}, - [4422] = {.lex_state = 0}, - [4423] = {.lex_state = 31}, - [4424] = {.lex_state = 124}, - [4425] = {.lex_state = 124}, - [4426] = {.lex_state = 124}, - [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 271}, - [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 34}, - [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 0}, - [4435] = {.lex_state = 0}, - [4436] = {.lex_state = 124}, - [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 233}, - [4439] = {.lex_state = 149}, - [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 149}, - [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 149}, - [4446] = {.lex_state = 229}, - [4447] = {.lex_state = 123}, - [4448] = {.lex_state = 149}, - [4449] = {.lex_state = 190}, - [4450] = {.lex_state = 124}, - [4451] = {.lex_state = 124}, - [4452] = {.lex_state = 124}, - [4453] = {.lex_state = 124}, - [4454] = {.lex_state = 149}, - [4455] = {.lex_state = 0}, - [4456] = {.lex_state = 0}, - [4457] = {.lex_state = 0}, - [4458] = {.lex_state = 0}, - [4459] = {.lex_state = 0}, - [4460] = {.lex_state = 31}, - [4461] = {.lex_state = 129}, - [4462] = {.lex_state = 46}, - [4463] = {.lex_state = 46}, - [4464] = {.lex_state = 149}, - [4465] = {.lex_state = 89}, - [4466] = {.lex_state = 46}, - [4467] = {.lex_state = 93}, - [4468] = {.lex_state = 123}, - [4469] = {.lex_state = 611}, - [4470] = {.lex_state = 149}, - [4471] = {.lex_state = 93}, - [4472] = {.lex_state = 123}, - [4473] = {.lex_state = 231}, - [4474] = {.lex_state = 93}, - [4475] = {.lex_state = 229}, - [4476] = {.lex_state = 190}, - [4477] = {.lex_state = 190}, - [4478] = {.lex_state = 190}, - [4479] = {.lex_state = 124}, - [4480] = {.lex_state = 124}, - [4481] = {.lex_state = 0}, - [4482] = {.lex_state = 149}, - [4483] = {.lex_state = 124}, - [4484] = {.lex_state = 149}, - [4485] = {.lex_state = 232}, - [4486] = {.lex_state = 0}, - [4487] = {.lex_state = 0}, - [4488] = {.lex_state = 0}, - [4489] = {.lex_state = 0}, - [4490] = {.lex_state = 93}, - [4491] = {.lex_state = 278}, - [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 93}, - [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 0}, - [4496] = {.lex_state = 124}, - [4497] = {.lex_state = 93}, - [4498] = {.lex_state = 93}, - [4499] = {.lex_state = 229}, - [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 93}, - [4502] = {.lex_state = 180}, - [4503] = {.lex_state = 31}, - [4504] = {.lex_state = 0}, - [4505] = {.lex_state = 124}, - [4506] = {.lex_state = 124}, - [4507] = {.lex_state = 0}, - [4508] = {.lex_state = 0}, - [4509] = {.lex_state = 93}, - [4510] = {.lex_state = 190}, - [4511] = {.lex_state = 190}, - [4512] = {.lex_state = 93}, - [4513] = {.lex_state = 190}, - [4514] = {.lex_state = 124}, - [4515] = {.lex_state = 190}, - [4516] = {.lex_state = 190}, - [4517] = {.lex_state = 190}, - [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 0}, - [4520] = {.lex_state = 149}, - [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 31}, - [4523] = {.lex_state = 0}, - [4524] = {.lex_state = 124}, - [4525] = {.lex_state = 0}, - [4526] = {.lex_state = 124}, - [4527] = {.lex_state = 0}, - [4528] = {.lex_state = 0}, - [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 278}, - [4531] = {.lex_state = 124}, - [4532] = {.lex_state = 31}, - [4533] = {.lex_state = 0}, - [4534] = {.lex_state = 0}, - [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 124}, - [4537] = {.lex_state = 31}, - [4538] = {.lex_state = 0}, - [4539] = {.lex_state = 149}, - [4540] = {.lex_state = 629}, - [4541] = {.lex_state = 34}, - [4542] = {.lex_state = 124}, - [4543] = {.lex_state = 149}, - [4544] = {.lex_state = 278}, - [4545] = {.lex_state = 0}, - [4546] = {.lex_state = 0}, - [4547] = {.lex_state = 46}, - [4548] = {.lex_state = 0}, - [4549] = {.lex_state = 124}, - [4550] = {.lex_state = 0}, - [4551] = {.lex_state = 124}, - [4552] = {.lex_state = 34}, - [4553] = {.lex_state = 0}, - [4554] = {.lex_state = 124}, - [4555] = {.lex_state = 31}, - [4556] = {.lex_state = 124}, - [4557] = {.lex_state = 124}, - [4558] = {.lex_state = 124}, - [4559] = {.lex_state = 124}, - [4560] = {.lex_state = 0}, - [4561] = {.lex_state = 0}, - [4562] = {.lex_state = 0}, - [4563] = {.lex_state = 0}, - [4564] = {.lex_state = 0}, - [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 124}, - [4567] = {.lex_state = 0}, - [4568] = {.lex_state = 124}, - [4569] = {.lex_state = 124}, - [4570] = {.lex_state = 124}, - [4571] = {.lex_state = 124}, - [4572] = {.lex_state = 149}, - [4573] = {.lex_state = 271}, - [4574] = {.lex_state = 149}, - [4575] = {.lex_state = 190}, - [4576] = {.lex_state = 190}, - [4577] = {.lex_state = 31}, - [4578] = {.lex_state = 124}, - [4579] = {.lex_state = 31}, - [4580] = {.lex_state = 124}, - [4581] = {.lex_state = 124}, - [4582] = {.lex_state = 0}, - [4583] = {.lex_state = 124}, - [4584] = {.lex_state = 226}, - [4585] = {.lex_state = 0}, - [4586] = {.lex_state = 124}, - [4587] = {.lex_state = 31}, - [4588] = {.lex_state = 124}, - [4589] = {.lex_state = 31}, - [4590] = {.lex_state = 124}, - [4591] = {.lex_state = 31}, - [4592] = {.lex_state = 31}, - [4593] = {.lex_state = 31}, - [4594] = {.lex_state = 254}, - [4595] = {.lex_state = 124}, - [4596] = {.lex_state = 190}, - [4597] = {.lex_state = 31}, - [4598] = {.lex_state = 269}, - [4599] = {.lex_state = 46}, - [4600] = {.lex_state = 93}, - [4601] = {.lex_state = 232}, - [4602] = {.lex_state = 31}, - [4603] = {.lex_state = 34}, - [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 577}, - [4606] = {.lex_state = 190}, - [4607] = {.lex_state = 124}, - [4608] = {.lex_state = 124}, - [4609] = {.lex_state = 93}, - [4610] = {.lex_state = 229}, - [4611] = {.lex_state = 0}, - [4612] = {.lex_state = 42}, - [4613] = {.lex_state = 123}, - [4614] = {.lex_state = 629}, - [4615] = {.lex_state = 124}, - [4616] = {.lex_state = 31}, - [4617] = {.lex_state = 31}, - [4618] = {.lex_state = 149}, - [4619] = {.lex_state = 31}, - [4620] = {.lex_state = 149}, - [4621] = {.lex_state = 93}, - [4622] = {.lex_state = 0}, - [4623] = {.lex_state = 2182}, - [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 2182}, - [4626] = {.lex_state = 2182}, - [4627] = {.lex_state = 2182}, - [4628] = {.lex_state = 2182}, - [4629] = {.lex_state = 0}, - [4630] = {.lex_state = 2186}, - [4631] = {.lex_state = 2186}, - [4632] = {.lex_state = 2186}, - [4633] = {.lex_state = 2186}, - [4634] = {.lex_state = 0}, - [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 124}, - [4637] = {.lex_state = 0}, - [4638] = {.lex_state = 0}, - [4639] = {.lex_state = 0}, - [4640] = {.lex_state = 629}, - [4641] = {.lex_state = 126}, - [4642] = {.lex_state = 0}, - [4643] = {.lex_state = 0}, - [4644] = {.lex_state = 0}, - [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 2182}, - [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 0}, - [4649] = {.lex_state = 2186}, - [4650] = {.lex_state = 2186}, - [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 149}, - [4653] = {.lex_state = 229}, - [4654] = {.lex_state = 124}, - [4655] = {.lex_state = 2186}, - [4656] = {.lex_state = 124}, - [4657] = {.lex_state = 2182}, - [4658] = {.lex_state = 2182}, - [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 229}, - [4661] = {.lex_state = 229}, + [4066] = {.lex_state = 129}, + [4067] = {.lex_state = 629}, + [4068] = {.lex_state = 94}, + [4069] = {.lex_state = 94}, + [4070] = {.lex_state = 626}, + [4071] = {.lex_state = 185}, + [4072] = {.lex_state = 283}, + [4073] = {.lex_state = 10}, + [4074] = {.lex_state = 222}, + [4075] = {.lex_state = 283}, + [4076] = {.lex_state = 283}, + [4077] = {.lex_state = 629}, + [4078] = {.lex_state = 626}, + [4079] = {.lex_state = 624}, + [4080] = {.lex_state = 283}, + [4081] = {.lex_state = 10}, + [4082] = {.lex_state = 626}, + [4083] = {.lex_state = 626}, + [4084] = {.lex_state = 268}, + [4085] = {.lex_state = 257}, + [4086] = {.lex_state = 46}, + [4087] = {.lex_state = 626}, + [4088] = {.lex_state = 185}, + [4089] = {.lex_state = 137}, + [4090] = {.lex_state = 137}, + [4091] = {.lex_state = 130}, + [4092] = {.lex_state = 626}, + [4093] = {.lex_state = 132}, + [4094] = {.lex_state = 258}, + [4095] = {.lex_state = 626}, + [4096] = {.lex_state = 231}, + [4097] = {.lex_state = 579}, + [4098] = {.lex_state = 269}, + [4099] = {.lex_state = 626}, + [4100] = {.lex_state = 626}, + [4101] = {.lex_state = 626}, + [4102] = {.lex_state = 626}, + [4103] = {.lex_state = 626}, + [4104] = {.lex_state = 128}, + [4105] = {.lex_state = 132}, + [4106] = {.lex_state = 626}, + [4107] = {.lex_state = 626}, + [4108] = {.lex_state = 231}, + [4109] = {.lex_state = 132}, + [4110] = {.lex_state = 231}, + [4111] = {.lex_state = 231}, + [4112] = {.lex_state = 231}, + [4113] = {.lex_state = 269}, + [4114] = {.lex_state = 626}, + [4115] = {.lex_state = 231}, + [4116] = {.lex_state = 195}, + [4117] = {.lex_state = 269}, + [4118] = {.lex_state = 195}, + [4119] = {.lex_state = 269}, + [4120] = {.lex_state = 257}, + [4121] = {.lex_state = 236}, + [4122] = {.lex_state = 626}, + [4123] = {.lex_state = 94}, + [4124] = {.lex_state = 626}, + [4125] = {.lex_state = 135}, + [4126] = {.lex_state = 626}, + [4127] = {.lex_state = 132}, + [4128] = {.lex_state = 132}, + [4129] = {.lex_state = 132}, + [4130] = {.lex_state = 626}, + [4131] = {.lex_state = 129}, + [4132] = {.lex_state = 579}, + [4133] = {.lex_state = 195}, + [4134] = {.lex_state = 236}, + [4135] = {.lex_state = 236}, + [4136] = {.lex_state = 195}, + [4137] = {.lex_state = 195}, + [4138] = {.lex_state = 628}, + [4139] = {.lex_state = 626}, + [4140] = {.lex_state = 195}, + [4141] = {.lex_state = 130}, + [4142] = {.lex_state = 195}, + [4143] = {.lex_state = 130}, + [4144] = {.lex_state = 195}, + [4145] = {.lex_state = 579}, + [4146] = {.lex_state = 579}, + [4147] = {.lex_state = 579}, + [4148] = {.lex_state = 128}, + [4149] = {.lex_state = 130}, + [4150] = {.lex_state = 130}, + [4151] = {.lex_state = 626}, + [4152] = {.lex_state = 130}, + [4153] = {.lex_state = 135}, + [4154] = {.lex_state = 128}, + [4155] = {.lex_state = 128}, + [4156] = {.lex_state = 130}, + [4157] = {.lex_state = 135}, + [4158] = {.lex_state = 195}, + [4159] = {.lex_state = 626}, + [4160] = {.lex_state = 626}, + [4161] = {.lex_state = 626}, + [4162] = {.lex_state = 250}, + [4163] = {.lex_state = 130}, + [4164] = {.lex_state = 130}, + [4165] = {.lex_state = 185}, + [4166] = {.lex_state = 626}, + [4167] = {.lex_state = 624}, + [4168] = {.lex_state = 626}, + [4169] = {.lex_state = 128}, + [4170] = {.lex_state = 626}, + [4171] = {.lex_state = 130}, + [4172] = {.lex_state = 626}, + [4173] = {.lex_state = 128}, + [4174] = {.lex_state = 626}, + [4175] = {.lex_state = 626}, + [4176] = {.lex_state = 626}, + [4177] = {.lex_state = 158}, + [4178] = {.lex_state = 158}, + [4179] = {.lex_state = 626}, + [4180] = {.lex_state = 99}, + [4181] = {.lex_state = 626}, + [4182] = {.lex_state = 626}, + [4183] = {.lex_state = 626}, + [4184] = {.lex_state = 626}, + [4185] = {.lex_state = 626}, + [4186] = {.lex_state = 269}, + [4187] = {.lex_state = 626}, + [4188] = {.lex_state = 626}, + [4189] = {.lex_state = 130}, + [4190] = {.lex_state = 626}, + [4191] = {.lex_state = 222}, + [4192] = {.lex_state = 231}, + [4193] = {.lex_state = 231}, + [4194] = {.lex_state = 130}, + [4195] = {.lex_state = 626}, + [4196] = {.lex_state = 51}, + [4197] = {.lex_state = 626}, + [4198] = {.lex_state = 626}, + [4199] = {.lex_state = 130}, + [4200] = {.lex_state = 626}, + [4201] = {.lex_state = 626}, + [4202] = {.lex_state = 130}, + [4203] = {.lex_state = 257}, + [4204] = {.lex_state = 129}, + [4205] = {.lex_state = 187}, + [4206] = {.lex_state = 626}, + [4207] = {.lex_state = 626}, + [4208] = {.lex_state = 626}, + [4209] = {.lex_state = 626}, + [4210] = {.lex_state = 626}, + [4211] = {.lex_state = 626}, + [4212] = {.lex_state = 626}, + [4213] = {.lex_state = 236}, + [4214] = {.lex_state = 626}, + [4215] = {.lex_state = 626}, + [4216] = {.lex_state = 236}, + [4217] = {.lex_state = 626}, + [4218] = {.lex_state = 626}, + [4219] = {.lex_state = 130}, + [4220] = {.lex_state = 626}, + [4221] = {.lex_state = 626}, + [4222] = {.lex_state = 626}, + [4223] = {.lex_state = 626}, + [4224] = {.lex_state = 626}, + [4225] = {.lex_state = 195}, + [4226] = {.lex_state = 236}, + [4227] = {.lex_state = 231}, + [4228] = {.lex_state = 130}, + [4229] = {.lex_state = 236}, + [4230] = {.lex_state = 626}, + [4231] = {.lex_state = 236}, + [4232] = {.lex_state = 626}, + [4233] = {.lex_state = 236}, + [4234] = {.lex_state = 236}, + [4235] = {.lex_state = 243}, + [4236] = {.lex_state = 236}, + [4237] = {.lex_state = 195}, + [4238] = {.lex_state = 243}, + [4239] = {.lex_state = 626}, + [4240] = {.lex_state = 626}, + [4241] = {.lex_state = 626}, + [4242] = {.lex_state = 626}, + [4243] = {.lex_state = 626}, + [4244] = {.lex_state = 626}, + [4245] = {.lex_state = 626}, + [4246] = {.lex_state = 626}, + [4247] = {.lex_state = 236}, + [4248] = {.lex_state = 236}, + [4249] = {.lex_state = 626}, + [4250] = {.lex_state = 626}, + [4251] = {.lex_state = 195}, + [4252] = {.lex_state = 626}, + [4253] = {.lex_state = 195}, + [4254] = {.lex_state = 195}, + [4255] = {.lex_state = 195}, + [4256] = {.lex_state = 250}, + [4257] = {.lex_state = 626}, + [4258] = {.lex_state = 195}, + [4259] = {.lex_state = 195}, + [4260] = {.lex_state = 626}, + [4261] = {.lex_state = 626}, + [4262] = {.lex_state = 626}, + [4263] = {.lex_state = 626}, + [4264] = {.lex_state = 130}, + [4265] = {.lex_state = 250}, + [4266] = {.lex_state = 231}, + [4267] = {.lex_state = 626}, + [4268] = {.lex_state = 626}, + [4269] = {.lex_state = 626}, + [4270] = {.lex_state = 250}, + [4271] = {.lex_state = 579}, + [4272] = {.lex_state = 626}, + [4273] = {.lex_state = 137}, + [4274] = {.lex_state = 626}, + [4275] = {.lex_state = 626}, + [4276] = {.lex_state = 243}, + [4277] = {.lex_state = 626}, + [4278] = {.lex_state = 626}, + [4279] = {.lex_state = 626}, + [4280] = {.lex_state = 626}, + [4281] = {.lex_state = 195}, + [4282] = {.lex_state = 626}, + [4283] = {.lex_state = 250}, + [4284] = {.lex_state = 128}, + [4285] = {.lex_state = 626}, + [4286] = {.lex_state = 128}, + [4287] = {.lex_state = 195}, + [4288] = {.lex_state = 195}, + [4289] = {.lex_state = 626}, + [4290] = {.lex_state = 250}, + [4291] = {.lex_state = 195}, + [4292] = {.lex_state = 128}, + [4293] = {.lex_state = 195}, + [4294] = {.lex_state = 626}, + [4295] = {.lex_state = 626}, + [4296] = {.lex_state = 250}, + [4297] = {.lex_state = 626}, + [4298] = {.lex_state = 626}, + [4299] = {.lex_state = 0}, + [4300] = {.lex_state = 626}, + [4301] = {.lex_state = 250}, + [4302] = {.lex_state = 250}, + [4303] = {.lex_state = 128}, + [4304] = {.lex_state = 250}, + [4305] = {.lex_state = 626}, + [4306] = {.lex_state = 626}, + [4307] = {.lex_state = 626}, + [4308] = {.lex_state = 250}, + [4309] = {.lex_state = 626}, + [4310] = {.lex_state = 626}, + [4311] = {.lex_state = 250}, + [4312] = {.lex_state = 626}, + [4313] = {.lex_state = 626}, + [4314] = {.lex_state = 626}, + [4315] = {.lex_state = 195}, + [4316] = {.lex_state = 579}, + [4317] = {.lex_state = 629}, + [4318] = {.lex_state = 195}, + [4319] = {.lex_state = 626}, + [4320] = {.lex_state = 128}, + [4321] = {.lex_state = 185}, + [4322] = {.lex_state = 250}, + [4323] = {.lex_state = 579}, + [4324] = {.lex_state = 626}, + [4325] = {.lex_state = 626}, + [4326] = {.lex_state = 626}, + [4327] = {.lex_state = 626}, + [4328] = {.lex_state = 626}, + [4329] = {.lex_state = 626}, + [4330] = {.lex_state = 626}, + [4331] = {.lex_state = 243}, + [4332] = {.lex_state = 626}, + [4333] = {.lex_state = 626}, + [4334] = {.lex_state = 128}, + [4335] = {.lex_state = 626}, + [4336] = {.lex_state = 626}, + [4337] = {.lex_state = 626}, + [4338] = {.lex_state = 626}, + [4339] = {.lex_state = 626}, + [4340] = {.lex_state = 51}, + [4341] = {.lex_state = 626}, + [4342] = {.lex_state = 626}, + [4343] = {.lex_state = 626}, + [4344] = {.lex_state = 128}, + [4345] = {.lex_state = 626}, + [4346] = {.lex_state = 626}, + [4347] = {.lex_state = 626}, + [4348] = {.lex_state = 626}, + [4349] = {.lex_state = 626}, + [4350] = {.lex_state = 243}, + [4351] = {.lex_state = 243}, + [4352] = {.lex_state = 626}, + [4353] = {.lex_state = 0}, + [4354] = {.lex_state = 626}, + [4355] = {.lex_state = 195}, + [4356] = {.lex_state = 626}, + [4357] = {.lex_state = 231}, + [4358] = {.lex_state = 195}, + [4359] = {.lex_state = 231}, + [4360] = {.lex_state = 130}, + [4361] = {.lex_state = 222}, + [4362] = {.lex_state = 95}, + [4363] = {.lex_state = 626}, + [4364] = {.lex_state = 273}, + [4365] = {.lex_state = 130}, + [4366] = {.lex_state = 626}, + [4367] = {.lex_state = 132}, + [4368] = {.lex_state = 99}, + [4369] = {.lex_state = 51}, + [4370] = {.lex_state = 250}, + [4371] = {.lex_state = 195}, + [4372] = {.lex_state = 250}, + [4373] = {.lex_state = 250}, + [4374] = {.lex_state = 626}, + [4375] = {.lex_state = 132}, + [4376] = {.lex_state = 187}, + [4377] = {.lex_state = 195}, + [4378] = {.lex_state = 137}, + [4379] = {.lex_state = 130}, + [4380] = {.lex_state = 195}, + [4381] = {.lex_state = 187}, + [4382] = {.lex_state = 130}, + [4383] = {.lex_state = 628}, + [4384] = {.lex_state = 626}, + [4385] = {.lex_state = 626}, + [4386] = {.lex_state = 137}, + [4387] = {.lex_state = 130}, + [4388] = {.lex_state = 250}, + [4389] = {.lex_state = 195}, + [4390] = {.lex_state = 628}, + [4391] = {.lex_state = 626}, + [4392] = {.lex_state = 129}, + [4393] = {.lex_state = 128}, + [4394] = {.lex_state = 626}, + [4395] = {.lex_state = 626}, + [4396] = {.lex_state = 626}, + [4397] = {.lex_state = 626}, + [4398] = {.lex_state = 626}, + [4399] = {.lex_state = 626}, + [4400] = {.lex_state = 626}, + [4401] = {.lex_state = 130}, + [4402] = {.lex_state = 129}, + [4403] = {.lex_state = 626}, + [4404] = {.lex_state = 283}, + [4405] = {.lex_state = 43}, + [4406] = {.lex_state = 130}, + [4407] = {.lex_state = 626}, + [4408] = {.lex_state = 626}, + [4409] = {.lex_state = 130}, + [4410] = {.lex_state = 628}, + [4411] = {.lex_state = 195}, + [4412] = {.lex_state = 195}, + [4413] = {.lex_state = 130}, + [4414] = {.lex_state = 626}, + [4415] = {.lex_state = 626}, + [4416] = {.lex_state = 626}, + [4417] = {.lex_state = 626}, + [4418] = {.lex_state = 626}, + [4419] = {.lex_state = 626}, + [4420] = {.lex_state = 130}, + [4421] = {.lex_state = 236}, + [4422] = {.lex_state = 626}, + [4423] = {.lex_state = 626}, + [4424] = {.lex_state = 626}, + [4425] = {.lex_state = 626}, + [4426] = {.lex_state = 43}, + [4427] = {.lex_state = 43}, + [4428] = {.lex_state = 130}, + [4429] = {.lex_state = 276}, + [4430] = {.lex_state = 626}, + [4431] = {.lex_state = 158}, + [4432] = {.lex_state = 626}, + [4433] = {.lex_state = 626}, + [4434] = {.lex_state = 130}, + [4435] = {.lex_state = 195}, + [4436] = {.lex_state = 626}, + [4437] = {.lex_state = 626}, + [4438] = {.lex_state = 626}, + [4439] = {.lex_state = 130}, + [4440] = {.lex_state = 43}, + [4441] = {.lex_state = 130}, + [4442] = {.lex_state = 43}, + [4443] = {.lex_state = 626}, + [4444] = {.lex_state = 626}, + [4445] = {.lex_state = 130}, + [4446] = {.lex_state = 129}, + [4447] = {.lex_state = 129}, + [4448] = {.lex_state = 626}, + [4449] = {.lex_state = 626}, + [4450] = {.lex_state = 130}, + [4451] = {.lex_state = 130}, + [4452] = {.lex_state = 130}, + [4453] = {.lex_state = 130}, + [4454] = {.lex_state = 130}, + [4455] = {.lex_state = 626}, + [4456] = {.lex_state = 158}, + [4457] = {.lex_state = 237}, + [4458] = {.lex_state = 129}, + [4459] = {.lex_state = 158}, + [4460] = {.lex_state = 158}, + [4461] = {.lex_state = 626}, + [4462] = {.lex_state = 626}, + [4463] = {.lex_state = 158}, + [4464] = {.lex_state = 626}, + [4465] = {.lex_state = 633}, + [4466] = {.lex_state = 195}, + [4467] = {.lex_state = 626}, + [4468] = {.lex_state = 43}, + [4469] = {.lex_state = 626}, + [4470] = {.lex_state = 626}, + [4471] = {.lex_state = 130}, + [4472] = {.lex_state = 626}, + [4473] = {.lex_state = 626}, + [4474] = {.lex_state = 626}, + [4475] = {.lex_state = 135}, + [4476] = {.lex_state = 626}, + [4477] = {.lex_state = 99}, + [4478] = {.lex_state = 130}, + [4479] = {.lex_state = 626}, + [4480] = {.lex_state = 626}, + [4481] = {.lex_state = 626}, + [4482] = {.lex_state = 99}, + [4483] = {.lex_state = 234}, + [4484] = {.lex_state = 195}, + [4485] = {.lex_state = 195}, + [4486] = {.lex_state = 195}, + [4487] = {.lex_state = 626}, + [4488] = {.lex_state = 43}, + [4489] = {.lex_state = 195}, + [4490] = {.lex_state = 626}, + [4491] = {.lex_state = 130}, + [4492] = {.lex_state = 626}, + [4493] = {.lex_state = 626}, + [4494] = {.lex_state = 626}, + [4495] = {.lex_state = 626}, + [4496] = {.lex_state = 626}, + [4497] = {.lex_state = 130}, + [4498] = {.lex_state = 130}, + [4499] = {.lex_state = 626}, + [4500] = {.lex_state = 130}, + [4501] = {.lex_state = 626}, + [4502] = {.lex_state = 626}, + [4503] = {.lex_state = 99}, + [4504] = {.lex_state = 626}, + [4505] = {.lex_state = 99}, + [4506] = {.lex_state = 99}, + [4507] = {.lex_state = 626}, + [4508] = {.lex_state = 130}, + [4509] = {.lex_state = 626}, + [4510] = {.lex_state = 130}, + [4511] = {.lex_state = 626}, + [4512] = {.lex_state = 626}, + [4513] = {.lex_state = 130}, + [4514] = {.lex_state = 626}, + [4515] = {.lex_state = 130}, + [4516] = {.lex_state = 99}, + [4517] = {.lex_state = 99}, + [4518] = {.lex_state = 130}, + [4519] = {.lex_state = 158}, + [4520] = {.lex_state = 99}, + [4521] = {.lex_state = 99}, + [4522] = {.lex_state = 158}, + [4523] = {.lex_state = 158}, + [4524] = {.lex_state = 626}, + [4525] = {.lex_state = 130}, + [4526] = {.lex_state = 195}, + [4527] = {.lex_state = 130}, + [4528] = {.lex_state = 130}, + [4529] = {.lex_state = 158}, + [4530] = {.lex_state = 626}, + [4531] = {.lex_state = 238}, + [4532] = {.lex_state = 99}, + [4533] = {.lex_state = 626}, + [4534] = {.lex_state = 626}, + [4535] = {.lex_state = 132}, + [4536] = {.lex_state = 99}, + [4537] = {.lex_state = 626}, + [4538] = {.lex_state = 633}, + [4539] = {.lex_state = 51}, + [4540] = {.lex_state = 626}, + [4541] = {.lex_state = 626}, + [4542] = {.lex_state = 626}, + [4543] = {.lex_state = 626}, + [4544] = {.lex_state = 579}, + [4545] = {.lex_state = 626}, + [4546] = {.lex_state = 195}, + [4547] = {.lex_state = 99}, + [4548] = {.lex_state = 626}, + [4549] = {.lex_state = 626}, + [4550] = {.lex_state = 626}, + [4551] = {.lex_state = 626}, + [4552] = {.lex_state = 626}, + [4553] = {.lex_state = 626}, + [4554] = {.lex_state = 626}, + [4555] = {.lex_state = 135}, + [4556] = {.lex_state = 99}, + [4557] = {.lex_state = 626}, + [4558] = {.lex_state = 626}, + [4559] = {.lex_state = 37}, + [4560] = {.lex_state = 626}, + [4561] = {.lex_state = 626}, + [4562] = {.lex_state = 626}, + [4563] = {.lex_state = 99}, + [4564] = {.lex_state = 234}, + [4565] = {.lex_state = 43}, + [4566] = {.lex_state = 185}, + [4567] = {.lex_state = 99}, + [4568] = {.lex_state = 130}, + [4569] = {.lex_state = 234}, + [4570] = {.lex_state = 130}, + [4571] = {.lex_state = 130}, + [4572] = {.lex_state = 626}, + [4573] = {.lex_state = 195}, + [4574] = {.lex_state = 130}, + [4575] = {.lex_state = 626}, + [4576] = {.lex_state = 195}, + [4577] = {.lex_state = 130}, + [4578] = {.lex_state = 626}, + [4579] = {.lex_state = 626}, + [4580] = {.lex_state = 130}, + [4581] = {.lex_state = 626}, + [4582] = {.lex_state = 626}, + [4583] = {.lex_state = 37}, + [4584] = {.lex_state = 37}, + [4585] = {.lex_state = 158}, + [4586] = {.lex_state = 158}, + [4587] = {.lex_state = 626}, + [4588] = {.lex_state = 37}, + [4589] = {.lex_state = 158}, + [4590] = {.lex_state = 37}, + [4591] = {.lex_state = 37}, + [4592] = {.lex_state = 130}, + [4593] = {.lex_state = 130}, + [4594] = {.lex_state = 37}, + [4595] = {.lex_state = 130}, + [4596] = {.lex_state = 130}, + [4597] = {.lex_state = 626}, + [4598] = {.lex_state = 626}, + [4599] = {.lex_state = 626}, + [4600] = {.lex_state = 130}, + [4601] = {.lex_state = 130}, + [4602] = {.lex_state = 130}, + [4603] = {.lex_state = 234}, + [4604] = {.lex_state = 130}, + [4605] = {.lex_state = 626}, + [4606] = {.lex_state = 626}, + [4607] = {.lex_state = 130}, + [4608] = {.lex_state = 626}, + [4609] = {.lex_state = 195}, + [4610] = {.lex_state = 195}, + [4611] = {.lex_state = 195}, + [4612] = {.lex_state = 130}, + [4613] = {.lex_state = 283}, + [4614] = {.lex_state = 195}, + [4615] = {.lex_state = 130}, + [4616] = {.lex_state = 283}, + [4617] = {.lex_state = 626}, + [4618] = {.lex_state = 130}, + [4619] = {.lex_state = 626}, + [4620] = {.lex_state = 626}, + [4621] = {.lex_state = 626}, + [4622] = {.lex_state = 130}, + [4623] = {.lex_state = 237}, + [4624] = {.lex_state = 130}, + [4625] = {.lex_state = 130}, + [4626] = {.lex_state = 626}, + [4627] = {.lex_state = 626}, + [4628] = {.lex_state = 132}, + [4629] = {.lex_state = 276}, + [4630] = {.lex_state = 626}, + [4631] = {.lex_state = 135}, + [4632] = {.lex_state = 626}, + [4633] = {.lex_state = 274}, + [4634] = {.lex_state = 130}, + [4635] = {.lex_state = 129}, + [4636] = {.lex_state = 626}, + [4637] = {.lex_state = 613}, + [4638] = {.lex_state = 626}, + [4639] = {.lex_state = 579}, + [4640] = {.lex_state = 626}, + [4641] = {.lex_state = 626}, + [4642] = {.lex_state = 95}, + [4643] = {.lex_state = 130}, + [4644] = {.lex_state = 95}, + [4645] = {.lex_state = 626}, + [4646] = {.lex_state = 626}, + [4647] = {.lex_state = 130}, + [4648] = {.lex_state = 626}, + [4649] = {.lex_state = 130}, + [4650] = {.lex_state = 626}, + [4651] = {.lex_state = 259}, + [4652] = {.lex_state = 626}, + [4653] = {.lex_state = 231}, + [4654] = {.lex_state = 129}, + [4655] = {.lex_state = 626}, + [4656] = {.lex_state = 626}, + [4657] = {.lex_state = 626}, + [4658] = {.lex_state = 99}, + [4659] = {.lex_state = 130}, + [4660] = {.lex_state = 0}, + [4661] = {.lex_state = 2191}, [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 2182}, + [4663] = {.lex_state = 0}, [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 2182}, - [4666] = {.lex_state = 0}, + [4665] = {.lex_state = 234}, + [4666] = {.lex_state = 130}, [4667] = {.lex_state = 0}, [4668] = {.lex_state = 0}, - [4669] = {.lex_state = 229}, - [4670] = {.lex_state = 0}, - [4671] = {.lex_state = 229}, - [4672] = {.lex_state = 0}, - [4673] = {.lex_state = 229}, - [4674] = {.lex_state = 578}, - [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 124}, - [4677] = {.lex_state = 229}, - [4678] = {.lex_state = 124}, - [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 124}, - [4682] = {.lex_state = 124}, + [4669] = {.lex_state = 2187}, + [4670] = {.lex_state = 626}, + [4671] = {.lex_state = 0}, + [4672] = {.lex_state = 130}, + [4673] = {.lex_state = 0}, + [4674] = {.lex_state = 234}, + [4675] = {.lex_state = 130}, + [4676] = {.lex_state = 0}, + [4677] = {.lex_state = 130}, + [4678] = {.lex_state = 0}, + [4679] = {.lex_state = 2189}, + [4680] = {.lex_state = 234}, + [4681] = {.lex_state = 0}, + [4682] = {.lex_state = 130}, [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 124}, - [4685] = {.lex_state = 226}, + [4684] = {.lex_state = 130}, + [4685] = {.lex_state = 0}, [4686] = {.lex_state = 0}, - [4687] = {.lex_state = 0}, + [4687] = {.lex_state = 130}, [4688] = {.lex_state = 0}, [4689] = {.lex_state = 0}, [4690] = {.lex_state = 0}, - [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 0}, - [4693] = {.lex_state = 0}, - [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 229}, - [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 229}, - [4698] = {.lex_state = 229}, + [4691] = {.lex_state = 2191}, + [4692] = {.lex_state = 130}, + [4693] = {.lex_state = 130}, + [4694] = {.lex_state = 234}, + [4695] = {.lex_state = 0}, + [4696] = {.lex_state = 130}, + [4697] = {.lex_state = 1718}, + [4698] = {.lex_state = 130}, [4699] = {.lex_state = 0}, - [4700] = {.lex_state = 123}, - [4701] = {.lex_state = 124}, + [4700] = {.lex_state = 0}, + [4701] = {.lex_state = 2189}, [4702] = {.lex_state = 0}, - [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 0}, + [4703] = {.lex_state = 2191}, + [4704] = {.lex_state = 2191}, [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 577}, - [4707] = {.lex_state = 0}, - [4708] = {.lex_state = 2184}, - [4709] = {.lex_state = 149}, - [4710] = {.lex_state = 124}, - [4711] = {.lex_state = 124}, - [4712] = {.lex_state = 34}, - [4713] = {.lex_state = 229}, - [4714] = {.lex_state = 2186}, - [4715] = {.lex_state = 31}, - [4716] = {.lex_state = 124}, - [4717] = {.lex_state = 124}, - [4718] = {.lex_state = 0}, - [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 124}, - [4721] = {.lex_state = 124}, - [4722] = {.lex_state = 0}, - [4723] = {.lex_state = 229}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 2182}, - [4726] = {.lex_state = 0}, - [4727] = {.lex_state = 124}, - [4728] = {.lex_state = 2184}, - [4729] = {.lex_state = 124}, - [4730] = {.lex_state = 124}, - [4731] = {.lex_state = 124}, - [4732] = {.lex_state = 124}, - [4733] = {.lex_state = 126}, - [4734] = {.lex_state = 0}, - [4735] = {.lex_state = 2184}, - [4736] = {.lex_state = 124}, - [4737] = {.lex_state = 0}, - [4738] = {.lex_state = 0}, - [4739] = {.lex_state = 2182}, - [4740] = {.lex_state = 0}, - [4741] = {.lex_state = 123}, - [4742] = {.lex_state = 124}, - [4743] = {.lex_state = 126}, - [4744] = {.lex_state = 124}, - [4745] = {.lex_state = 624}, - [4746] = {.lex_state = 2182}, + [4706] = {.lex_state = 0}, + [4707] = {.lex_state = 130}, + [4708] = {.lex_state = 130}, + [4709] = {.lex_state = 129}, + [4710] = {.lex_state = 2187}, + [4711] = {.lex_state = 130}, + [4712] = {.lex_state = 2187}, + [4713] = {.lex_state = 130}, + [4714] = {.lex_state = 130}, + [4715] = {.lex_state = 0}, + [4716] = {.lex_state = 130}, + [4717] = {.lex_state = 130}, + [4718] = {.lex_state = 2187}, + [4719] = {.lex_state = 2187}, + [4720] = {.lex_state = 2189}, + [4721] = {.lex_state = 2187}, + [4722] = {.lex_state = 2187}, + [4723] = {.lex_state = 2187}, + [4724] = {.lex_state = 234}, + [4725] = {.lex_state = 278}, + [4726] = {.lex_state = 130}, + [4727] = {.lex_state = 633}, + [4728] = {.lex_state = 130}, + [4729] = {.lex_state = 130}, + [4730] = {.lex_state = 2187}, + [4731] = {.lex_state = 130}, + [4732] = {.lex_state = 130}, + [4733] = {.lex_state = 130}, + [4734] = {.lex_state = 130}, + [4735] = {.lex_state = 0}, + [4736] = {.lex_state = 130}, + [4737] = {.lex_state = 579}, + [4738] = {.lex_state = 130}, + [4739] = {.lex_state = 2187}, + [4740] = {.lex_state = 158}, + [4741] = {.lex_state = 0}, + [4742] = {.lex_state = 234}, + [4743] = {.lex_state = 130}, + [4744] = {.lex_state = 234}, + [4745] = {.lex_state = 132}, + [4746] = {.lex_state = 0}, [4747] = {.lex_state = 0}, - [4748] = {.lex_state = 124}, - [4749] = {.lex_state = 124}, - [4750] = {.lex_state = 124}, - [4751] = {.lex_state = 2184}, - [4752] = {.lex_state = 577}, - [4753] = {.lex_state = 124}, - [4754] = {.lex_state = 124}, - [4755] = {.lex_state = 2182}, - [4756] = {.lex_state = 0}, - [4757] = {.lex_state = 2182}, - [4758] = {.lex_state = 124}, - [4759] = {.lex_state = 624}, - [4760] = {.lex_state = 149}, - [4761] = {.lex_state = 124}, - [4762] = {.lex_state = 149}, + [4748] = {.lex_state = 0}, + [4749] = {.lex_state = 130}, + [4750] = {.lex_state = 579}, + [4751] = {.lex_state = 2187}, + [4752] = {.lex_state = 2191}, + [4753] = {.lex_state = 0}, + [4754] = {.lex_state = 2187}, + [4755] = {.lex_state = 2187}, + [4756] = {.lex_state = 130}, + [4757] = {.lex_state = 130}, + [4758] = {.lex_state = 234}, + [4759] = {.lex_state = 234}, + [4760] = {.lex_state = 130}, + [4761] = {.lex_state = 0}, + [4762] = {.lex_state = 234}, [4763] = {.lex_state = 0}, - [4764] = {.lex_state = 2184}, - [4765] = {.lex_state = 124}, - [4766] = {.lex_state = 93}, - [4767] = {.lex_state = 124}, - [4768] = {.lex_state = 124}, - [4769] = {.lex_state = 273}, - [4770] = {.lex_state = 124}, - [4771] = {.lex_state = 0}, - [4772] = {.lex_state = 1714}, - [4773] = {.lex_state = 273}, - [4774] = {.lex_state = 124}, - [4775] = {.lex_state = 2182}, - [4776] = {.lex_state = 0}, - [4777] = {.lex_state = 2182}, - [4778] = {.lex_state = 124}, + [4764] = {.lex_state = 0}, + [4765] = {.lex_state = 0}, + [4766] = {.lex_state = 2187}, + [4767] = {.lex_state = 0}, + [4768] = {.lex_state = 2187}, + [4769] = {.lex_state = 130}, + [4770] = {.lex_state = 0}, + [4771] = {.lex_state = 234}, + [4772] = {.lex_state = 628}, + [4773] = {.lex_state = 130}, + [4774] = {.lex_state = 234}, + [4775] = {.lex_state = 0}, + [4776] = {.lex_state = 132}, + [4777] = {.lex_state = 2189}, + [4778] = {.lex_state = 0}, [4779] = {.lex_state = 0}, - [4780] = {.lex_state = 124}, - [4781] = {.lex_state = 0}, - [4782] = {.lex_state = 0}, - [4783] = {.lex_state = 2}, - [4784] = {.lex_state = 31}, - [4785] = {.lex_state = 124}, - [4786] = {.lex_state = 229}, - [4787] = {.lex_state = 229}, + [4780] = {.lex_state = 132}, + [4781] = {.lex_state = 234}, + [4782] = {.lex_state = 2191}, + [4783] = {.lex_state = 0}, + [4784] = {.lex_state = 0}, + [4785] = {.lex_state = 2187}, + [4786] = {.lex_state = 0}, + [4787] = {.lex_state = 0}, [4788] = {.lex_state = 0}, - [4789] = {.lex_state = 2186}, - [4790] = {.lex_state = 124}, - [4791] = {.lex_state = 123}, + [4789] = {.lex_state = 130}, + [4790] = {.lex_state = 2191}, + [4791] = {.lex_state = 234}, [4792] = {.lex_state = 0}, - [4793] = {.lex_state = 577}, - [4794] = {.lex_state = 577}, - [4795] = {.lex_state = 31}, + [4793] = {.lex_state = 130}, + [4794] = {.lex_state = 0}, + [4795] = {.lex_state = 130}, [4796] = {.lex_state = 0}, - [4797] = {.lex_state = 0}, - [4798] = {.lex_state = 31}, - [4799] = {.lex_state = 31}, + [4797] = {.lex_state = 130}, + [4798] = {.lex_state = 0}, + [4799] = {.lex_state = 130}, [4800] = {.lex_state = 0}, - [4801] = {.lex_state = 0, .external_lex_state = 3}, - [4802] = {.lex_state = 1189}, - [4803] = {.lex_state = 0}, - [4804] = {.lex_state = 31}, - [4805] = {.lex_state = 0, .external_lex_state = 3}, - [4806] = {.lex_state = 0}, - [4807] = {.lex_state = 31}, - [4808] = {.lex_state = 31}, - [4809] = {.lex_state = 0}, + [4801] = {.lex_state = 0}, + [4802] = {.lex_state = 2189}, + [4803] = {.lex_state = 626}, + [4804] = {.lex_state = 0}, + [4805] = {.lex_state = 10}, + [4806] = {.lex_state = 130}, + [4807] = {.lex_state = 2187}, + [4808] = {.lex_state = 0}, + [4809] = {.lex_state = 129}, [4810] = {.lex_state = 0}, - [4811] = {.lex_state = 0}, + [4811] = {.lex_state = 628}, [4812] = {.lex_state = 0}, - [4813] = {.lex_state = 577}, - [4814] = {.lex_state = 577}, - [4815] = {.lex_state = 0}, + [4813] = {.lex_state = 130}, + [4814] = {.lex_state = 0}, + [4815] = {.lex_state = 580}, [4816] = {.lex_state = 0}, - [4817] = {.lex_state = 31}, - [4818] = {.lex_state = 1189}, - [4819] = {.lex_state = 0}, - [4820] = {.lex_state = 0}, - [4821] = {.lex_state = 46}, - [4822] = {.lex_state = 0, .external_lex_state = 3}, - [4823] = {.lex_state = 1189}, - [4824] = {.lex_state = 0}, - [4825] = {.lex_state = 123}, + [4817] = {.lex_state = 2191}, + [4818] = {.lex_state = 0}, + [4819] = {.lex_state = 2191}, + [4820] = {.lex_state = 99}, + [4821] = {.lex_state = 231}, + [4822] = {.lex_state = 0}, + [4823] = {.lex_state = 278}, + [4824] = {.lex_state = 130}, + [4825] = {.lex_state = 130}, [4826] = {.lex_state = 0}, - [4827] = {.lex_state = 31}, - [4828] = {.lex_state = 0}, + [4827] = {.lex_state = 130}, + [4828] = {.lex_state = 43}, [4829] = {.lex_state = 0}, - [4830] = {.lex_state = 577}, - [4831] = {.lex_state = 577}, - [4832] = {.lex_state = 31}, - [4833] = {.lex_state = 1714}, - [4834] = {.lex_state = 577}, - [4835] = {.lex_state = 31}, - [4836] = {.lex_state = 622}, - [4837] = {.lex_state = 0, .external_lex_state = 3}, - [4838] = {.lex_state = 29}, - [4839] = {.lex_state = 31}, - [4840] = {.lex_state = 0}, - [4841] = {.lex_state = 2184}, + [4830] = {.lex_state = 626}, + [4831] = {.lex_state = 626}, + [4832] = {.lex_state = 579}, + [4833] = {.lex_state = 0}, + [4834] = {.lex_state = 626}, + [4835] = {.lex_state = 1193}, + [4836] = {.lex_state = 1718}, + [4837] = {.lex_state = 0}, + [4838] = {.lex_state = 626}, + [4839] = {.lex_state = 1193}, + [4840] = {.lex_state = 234}, + [4841] = {.lex_state = 626}, [4842] = {.lex_state = 0}, - [4843] = {.lex_state = 0}, - [4844] = {.lex_state = 577}, - [4845] = {.lex_state = 577}, - [4846] = {.lex_state = 31}, - [4847] = {.lex_state = 0, .external_lex_state = 3}, - [4848] = {.lex_state = 2}, - [4849] = {.lex_state = 46}, - [4850] = {.lex_state = 0, .external_lex_state = 3}, - [4851] = {.lex_state = 229}, + [4843] = {.lex_state = 40}, + [4844] = {.lex_state = 0, .external_lex_state = 3}, + [4845] = {.lex_state = 579}, + [4846] = {.lex_state = 0, .external_lex_state = 3}, + [4847] = {.lex_state = 624}, + [4848] = {.lex_state = 626}, + [4849] = {.lex_state = 0}, + [4850] = {.lex_state = 0}, + [4851] = {.lex_state = 237}, [4852] = {.lex_state = 0}, - [4853] = {.lex_state = 233}, - [4854] = {.lex_state = 0}, - [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 577}, - [4857] = {.lex_state = 577}, - [4858] = {.lex_state = 0}, - [4859] = {.lex_state = 0}, - [4860] = {.lex_state = 0, .external_lex_state = 3}, - [4861] = {.lex_state = 232}, - [4862] = {.lex_state = 2}, - [4863] = {.lex_state = 0}, - [4864] = {.lex_state = 0}, - [4865] = {.lex_state = 577}, - [4866] = {.lex_state = 577}, - [4867] = {.lex_state = 229}, - [4868] = {.lex_state = 31}, - [4869] = {.lex_state = 0, .external_lex_state = 3}, + [4853] = {.lex_state = 0}, + [4854] = {.lex_state = 579}, + [4855] = {.lex_state = 579}, + [4856] = {.lex_state = 0}, + [4857] = {.lex_state = 0}, + [4858] = {.lex_state = 626}, + [4859] = {.lex_state = 234}, + [4860] = {.lex_state = 279}, + [4861] = {.lex_state = 2189}, + [4862] = {.lex_state = 0}, + [4863] = {.lex_state = 0, .external_lex_state = 3}, + [4864] = {.lex_state = 626}, + [4865] = {.lex_state = 0}, + [4866] = {.lex_state = 0}, + [4867] = {.lex_state = 0}, + [4868] = {.lex_state = 237}, + [4869] = {.lex_state = 0}, [4870] = {.lex_state = 0}, - [4871] = {.lex_state = 31}, - [4872] = {.lex_state = 229}, - [4873] = {.lex_state = 0}, - [4874] = {.lex_state = 577}, - [4875] = {.lex_state = 577}, - [4876] = {.lex_state = 31}, - [4877] = {.lex_state = 2186}, + [4871] = {.lex_state = 579}, + [4872] = {.lex_state = 579}, + [4873] = {.lex_state = 626}, + [4874] = {.lex_state = 237}, + [4875] = {.lex_state = 626}, + [4876] = {.lex_state = 626}, + [4877] = {.lex_state = 626}, [4878] = {.lex_state = 0, .external_lex_state = 3}, - [4879] = {.lex_state = 0}, + [4879] = {.lex_state = 10}, [4880] = {.lex_state = 0}, - [4881] = {.lex_state = 577}, - [4882] = {.lex_state = 577}, - [4883] = {.lex_state = 0, .external_lex_state = 3}, - [4884] = {.lex_state = 229}, - [4885] = {.lex_state = 0, .external_lex_state = 3}, - [4886] = {.lex_state = 0}, - [4887] = {.lex_state = 0}, - [4888] = {.lex_state = 577}, - [4889] = {.lex_state = 577}, - [4890] = {.lex_state = 577}, - [4891] = {.lex_state = 31}, - [4892] = {.lex_state = 0, .external_lex_state = 3}, - [4893] = {.lex_state = 31}, + [4881] = {.lex_state = 0}, + [4882] = {.lex_state = 579}, + [4883] = {.lex_state = 0}, + [4884] = {.lex_state = 0}, + [4885] = {.lex_state = 579}, + [4886] = {.lex_state = 579}, + [4887] = {.lex_state = 626}, + [4888] = {.lex_state = 626}, + [4889] = {.lex_state = 0}, + [4890] = {.lex_state = 579}, + [4891] = {.lex_state = 0, .external_lex_state = 3}, + [4892] = {.lex_state = 0}, + [4893] = {.lex_state = 0}, [4894] = {.lex_state = 0}, - [4895] = {.lex_state = 577}, - [4896] = {.lex_state = 577}, - [4897] = {.lex_state = 31}, - [4898] = {.lex_state = 0}, - [4899] = {.lex_state = 0, .external_lex_state = 3}, - [4900] = {.lex_state = 0}, - [4901] = {.lex_state = 0}, - [4902] = {.lex_state = 577}, - [4903] = {.lex_state = 577}, - [4904] = {.lex_state = 0}, - [4905] = {.lex_state = 2184}, - [4906] = {.lex_state = 0, .external_lex_state = 3}, - [4907] = {.lex_state = 0}, - [4908] = {.lex_state = 0}, - [4909] = {.lex_state = 577}, - [4910] = {.lex_state = 577}, - [4911] = {.lex_state = 0}, - [4912] = {.lex_state = 0, .external_lex_state = 3}, - [4913] = {.lex_state = 0}, - [4914] = {.lex_state = 577}, - [4915] = {.lex_state = 577}, - [4916] = {.lex_state = 0, .external_lex_state = 4}, - [4917] = {.lex_state = 31}, - [4918] = {.lex_state = 229}, + [4895] = {.lex_state = 626}, + [4896] = {.lex_state = 0}, + [4897] = {.lex_state = 579}, + [4898] = {.lex_state = 579}, + [4899] = {.lex_state = 10}, + [4900] = {.lex_state = 579}, + [4901] = {.lex_state = 0, .external_lex_state = 3}, + [4902] = {.lex_state = 579}, + [4903] = {.lex_state = 0}, + [4904] = {.lex_state = 0, .external_lex_state = 3}, + [4905] = {.lex_state = 0}, + [4906] = {.lex_state = 0}, + [4907] = {.lex_state = 579}, + [4908] = {.lex_state = 579}, + [4909] = {.lex_state = 1193}, + [4910] = {.lex_state = 624}, + [4911] = {.lex_state = 0, .external_lex_state = 3}, + [4912] = {.lex_state = 626}, + [4913] = {.lex_state = 237}, + [4914] = {.lex_state = 624}, + [4915] = {.lex_state = 0}, + [4916] = {.lex_state = 579}, + [4917] = {.lex_state = 579}, + [4918] = {.lex_state = 244}, [4919] = {.lex_state = 0}, - [4920] = {.lex_state = 0}, - [4921] = {.lex_state = 1689}, - [4922] = {.lex_state = 1693}, - [4923] = {.lex_state = 664}, - [4924] = {.lex_state = 577}, - [4925] = {.lex_state = 31}, - [4926] = {.lex_state = 0}, - [4927] = {.lex_state = 232}, - [4928] = {.lex_state = 232}, + [4920] = {.lex_state = 0, .external_lex_state = 3}, + [4921] = {.lex_state = 40}, + [4922] = {.lex_state = 0}, + [4923] = {.lex_state = 579}, + [4924] = {.lex_state = 579}, + [4925] = {.lex_state = 1193}, + [4926] = {.lex_state = 280}, + [4927] = {.lex_state = 0, .external_lex_state = 3}, + [4928] = {.lex_state = 0}, [4929] = {.lex_state = 0}, - [4930] = {.lex_state = 0}, - [4931] = {.lex_state = 0}, + [4930] = {.lex_state = 579}, + [4931] = {.lex_state = 579}, [4932] = {.lex_state = 0}, - [4933] = {.lex_state = 31}, - [4934] = {.lex_state = 0}, - [4935] = {.lex_state = 29}, - [4936] = {.lex_state = 2186}, - [4937] = {.lex_state = 29}, - [4938] = {.lex_state = 31}, - [4939] = {.lex_state = 0}, - [4940] = {.lex_state = 577}, - [4941] = {.lex_state = 0}, - [4942] = {.lex_state = 0}, - [4943] = {.lex_state = 624}, - [4944] = {.lex_state = 0}, - [4945] = {.lex_state = 577}, - [4946] = {.lex_state = 229}, - [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 2182}, + [4933] = {.lex_state = 624}, + [4934] = {.lex_state = 0, .external_lex_state = 3}, + [4935] = {.lex_state = 0}, + [4936] = {.lex_state = 0}, + [4937] = {.lex_state = 579}, + [4938] = {.lex_state = 579}, + [4939] = {.lex_state = 626}, + [4940] = {.lex_state = 0}, + [4941] = {.lex_state = 0, .external_lex_state = 3}, + [4942] = {.lex_state = 626}, + [4943] = {.lex_state = 0}, + [4944] = {.lex_state = 579}, + [4945] = {.lex_state = 579}, + [4946] = {.lex_state = 1193}, + [4947] = {.lex_state = 624}, + [4948] = {.lex_state = 0, .external_lex_state = 3}, [4949] = {.lex_state = 0}, - [4950] = {.lex_state = 622}, - [4951] = {.lex_state = 148}, - [4952] = {.lex_state = 1189}, - [4953] = {.lex_state = 31}, - [4954] = {.lex_state = 274}, - [4955] = {.lex_state = 0}, - [4956] = {.lex_state = 577}, - [4957] = {.lex_state = 148}, - [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 622}, - [4960] = {.lex_state = 622}, + [4950] = {.lex_state = 0}, + [4951] = {.lex_state = 579}, + [4952] = {.lex_state = 579}, + [4953] = {.lex_state = 0}, + [4954] = {.lex_state = 0, .external_lex_state = 3}, + [4955] = {.lex_state = 1193}, + [4956] = {.lex_state = 0}, + [4957] = {.lex_state = 579}, + [4958] = {.lex_state = 579}, + [4959] = {.lex_state = 0}, + [4960] = {.lex_state = 0, .external_lex_state = 3}, [4961] = {.lex_state = 0}, - [4962] = {.lex_state = 1189}, - [4963] = {.lex_state = 148}, - [4964] = {.lex_state = 0}, - [4965] = {.lex_state = 0}, - [4966] = {.lex_state = 2184}, - [4967] = {.lex_state = 622}, - [4968] = {.lex_state = 31}, - [4969] = {.lex_state = 29}, - [4970] = {.lex_state = 1189}, - [4971] = {.lex_state = 29}, - [4972] = {.lex_state = 0}, - [4973] = {.lex_state = 1689}, - [4974] = {.lex_state = 0}, - [4975] = {.lex_state = 0}, - [4976] = {.lex_state = 0}, - [4977] = {.lex_state = 2197}, - [4978] = {.lex_state = 123}, - [4979] = {.lex_state = 1189}, + [4962] = {.lex_state = 579}, + [4963] = {.lex_state = 579}, + [4964] = {.lex_state = 624}, + [4965] = {.lex_state = 0, .external_lex_state = 3}, + [4966] = {.lex_state = 0}, + [4967] = {.lex_state = 579}, + [4968] = {.lex_state = 579}, + [4969] = {.lex_state = 0, .external_lex_state = 4}, + [4970] = {.lex_state = 579}, + [4971] = {.lex_state = 0}, + [4972] = {.lex_state = 37}, + [4973] = {.lex_state = 0}, + [4974] = {.lex_state = 1693}, + [4975] = {.lex_state = 1697}, + [4976] = {.lex_state = 237}, + [4977] = {.lex_state = 579}, + [4978] = {.lex_state = 0}, + [4979] = {.lex_state = 626}, [4980] = {.lex_state = 0}, - [4981] = {.lex_state = 1693}, - [4982] = {.lex_state = 31}, - [4983] = {.lex_state = 31}, + [4981] = {.lex_state = 40}, + [4982] = {.lex_state = 0}, + [4983] = {.lex_state = 668}, [4984] = {.lex_state = 0}, [4985] = {.lex_state = 0}, [4986] = {.lex_state = 0}, - [4987] = {.lex_state = 29}, - [4988] = {.lex_state = 0, .external_lex_state = 3}, - [4989] = {.lex_state = 229}, - [4990] = {.lex_state = 0, .external_lex_state = 3}, - [4991] = {.lex_state = 664}, - [4992] = {.lex_state = 229}, - [4993] = {.lex_state = 0}, + [4987] = {.lex_state = 0}, + [4988] = {.lex_state = 626}, + [4989] = {.lex_state = 0}, + [4990] = {.lex_state = 0}, + [4991] = {.lex_state = 626}, + [4992] = {.lex_state = 626}, + [4993] = {.lex_state = 626}, [4994] = {.lex_state = 0}, [4995] = {.lex_state = 0}, - [4996] = {.lex_state = 229}, - [4997] = {.lex_state = 232}, - [4998] = {.lex_state = 0, .external_lex_state = 4}, - [4999] = {.lex_state = 29}, - [5000] = {.lex_state = 2}, - [5001] = {.lex_state = 123}, - [5002] = {.lex_state = 622}, + [4996] = {.lex_state = 628}, + [4997] = {.lex_state = 626}, + [4998] = {.lex_state = 0}, + [4999] = {.lex_state = 237}, + [5000] = {.lex_state = 237}, + [5001] = {.lex_state = 234}, + [5002] = {.lex_state = 2187}, [5003] = {.lex_state = 0}, - [5004] = {.lex_state = 31}, - [5005] = {.lex_state = 2}, - [5006] = {.lex_state = 31}, + [5004] = {.lex_state = 624}, + [5005] = {.lex_state = 0}, + [5006] = {.lex_state = 2187}, [5007] = {.lex_state = 0}, - [5008] = {.lex_state = 0}, - [5009] = {.lex_state = 123}, - [5010] = {.lex_state = 0}, - [5011] = {.lex_state = 0}, - [5012] = {.lex_state = 0}, - [5013] = {.lex_state = 0}, - [5014] = {.lex_state = 0}, - [5015] = {.lex_state = 0}, + [5008] = {.lex_state = 40}, + [5009] = {.lex_state = 234}, + [5010] = {.lex_state = 129}, + [5011] = {.lex_state = 237}, + [5012] = {.lex_state = 624}, + [5013] = {.lex_state = 624}, + [5014] = {.lex_state = 624}, + [5015] = {.lex_state = 624}, [5016] = {.lex_state = 0}, - [5017] = {.lex_state = 0}, - [5018] = {.lex_state = 0}, - [5019] = {.lex_state = 31}, - [5020] = {.lex_state = 0, .external_lex_state = 3}, - [5021] = {.lex_state = 229}, - [5022] = {.lex_state = 0}, - [5023] = {.lex_state = 622}, - [5024] = {.lex_state = 2182}, - [5025] = {.lex_state = 31}, - [5026] = {.lex_state = 29}, - [5027] = {.lex_state = 31}, - [5028] = {.lex_state = 577}, - [5029] = {.lex_state = 0, .external_lex_state = 3}, - [5030] = {.lex_state = 31}, - [5031] = {.lex_state = 577}, - [5032] = {.lex_state = 229}, - [5033] = {.lex_state = 622}, - [5034] = {.lex_state = 31}, - [5035] = {.lex_state = 0}, - [5036] = {.lex_state = 622}, - [5037] = {.lex_state = 577}, - [5038] = {.lex_state = 229}, - [5039] = {.lex_state = 2}, - [5040] = {.lex_state = 0}, + [5017] = {.lex_state = 2189}, + [5018] = {.lex_state = 626}, + [5019] = {.lex_state = 626}, + [5020] = {.lex_state = 238}, + [5021] = {.lex_state = 0}, + [5022] = {.lex_state = 0, .external_lex_state = 3}, + [5023] = {.lex_state = 157}, + [5024] = {.lex_state = 129}, + [5025] = {.lex_state = 234}, + [5026] = {.lex_state = 0}, + [5027] = {.lex_state = 0}, + [5028] = {.lex_state = 129}, + [5029] = {.lex_state = 2191}, + [5030] = {.lex_state = 234}, + [5031] = {.lex_state = 0}, + [5032] = {.lex_state = 237}, + [5033] = {.lex_state = 626}, + [5034] = {.lex_state = 626}, + [5035] = {.lex_state = 0, .external_lex_state = 4}, + [5036] = {.lex_state = 237}, + [5037] = {.lex_state = 0}, + [5038] = {.lex_state = 0}, + [5039] = {.lex_state = 626}, + [5040] = {.lex_state = 157}, [5041] = {.lex_state = 0}, - [5042] = {.lex_state = 1189}, - [5043] = {.lex_state = 0}, - [5044] = {.lex_state = 0}, - [5045] = {.lex_state = 148}, - [5046] = {.lex_state = 31}, - [5047] = {.lex_state = 0}, - [5048] = {.lex_state = 2182}, - [5049] = {.lex_state = 31}, - [5050] = {.lex_state = 229}, - [5051] = {.lex_state = 0}, - [5052] = {.lex_state = 31}, - [5053] = {.lex_state = 0}, + [5042] = {.lex_state = 0}, + [5043] = {.lex_state = 668}, + [5044] = {.lex_state = 626}, + [5045] = {.lex_state = 0}, + [5046] = {.lex_state = 579}, + [5047] = {.lex_state = 579}, + [5048] = {.lex_state = 624}, + [5049] = {.lex_state = 10}, + [5050] = {.lex_state = 1193}, + [5051] = {.lex_state = 2189}, + [5052] = {.lex_state = 624}, + [5053] = {.lex_state = 40}, [5054] = {.lex_state = 0}, [5055] = {.lex_state = 0}, - [5056] = {.lex_state = 0}, - [5057] = {.lex_state = 0, .external_lex_state = 4}, - [5058] = {.lex_state = 0}, - [5059] = {.lex_state = 1689}, - [5060] = {.lex_state = 1693}, - [5061] = {.lex_state = 0}, - [5062] = {.lex_state = 232}, - [5063] = {.lex_state = 622}, - [5064] = {.lex_state = 624}, - [5065] = {.lex_state = 0}, - [5066] = {.lex_state = 0}, - [5067] = {.lex_state = 31}, - [5068] = {.lex_state = 229}, - [5069] = {.lex_state = 232}, - [5070] = {.lex_state = 577}, - [5071] = {.lex_state = 1189}, - [5072] = {.lex_state = 577}, - [5073] = {.lex_state = 232}, - [5074] = {.lex_state = 0}, - [5075] = {.lex_state = 232}, + [5056] = {.lex_state = 40}, + [5057] = {.lex_state = 0}, + [5058] = {.lex_state = 626}, + [5059] = {.lex_state = 234}, + [5060] = {.lex_state = 626}, + [5061] = {.lex_state = 1193}, + [5062] = {.lex_state = 0}, + [5063] = {.lex_state = 0}, + [5064] = {.lex_state = 1193}, + [5065] = {.lex_state = 129}, + [5066] = {.lex_state = 157}, + [5067] = {.lex_state = 579}, + [5068] = {.lex_state = 0}, + [5069] = {.lex_state = 2191}, + [5070] = {.lex_state = 40}, + [5071] = {.lex_state = 0}, + [5072] = {.lex_state = 0}, + [5073] = {.lex_state = 10}, + [5074] = {.lex_state = 0, .external_lex_state = 3}, + [5075] = {.lex_state = 234}, [5076] = {.lex_state = 0}, - [5077] = {.lex_state = 232}, - [5078] = {.lex_state = 577}, - [5079] = {.lex_state = 577}, + [5077] = {.lex_state = 234}, + [5078] = {.lex_state = 626}, + [5079] = {.lex_state = 0}, [5080] = {.lex_state = 0}, [5081] = {.lex_state = 0}, - [5082] = {.lex_state = 1189}, - [5083] = {.lex_state = 622}, - [5084] = {.lex_state = 123}, + [5082] = {.lex_state = 234}, + [5083] = {.lex_state = 234}, + [5084] = {.lex_state = 0}, [5085] = {.lex_state = 0}, - [5086] = {.lex_state = 232}, + [5086] = {.lex_state = 626}, [5087] = {.lex_state = 0}, - [5088] = {.lex_state = 622}, - [5089] = {.lex_state = 624}, - [5090] = {.lex_state = 31}, + [5088] = {.lex_state = 0}, + [5089] = {.lex_state = 0}, + [5090] = {.lex_state = 626}, [5091] = {.lex_state = 0}, - [5092] = {.lex_state = 622}, - [5093] = {.lex_state = 622}, - [5094] = {.lex_state = 0, .external_lex_state = 4}, + [5092] = {.lex_state = 624}, + [5093] = {.lex_state = 0}, + [5094] = {.lex_state = 0}, [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 1689}, - [5097] = {.lex_state = 1693}, - [5098] = {.lex_state = 0}, - [5099] = {.lex_state = 624}, - [5100] = {.lex_state = 123}, - [5101] = {.lex_state = 31}, - [5102] = {.lex_state = 0}, - [5103] = {.lex_state = 2}, - [5104] = {.lex_state = 31}, - [5105] = {.lex_state = 31}, - [5106] = {.lex_state = 0, .external_lex_state = 4}, + [5096] = {.lex_state = 0}, + [5097] = {.lex_state = 0}, + [5098] = {.lex_state = 2191}, + [5099] = {.lex_state = 626}, + [5100] = {.lex_state = 1193}, + [5101] = {.lex_state = 0}, + [5102] = {.lex_state = 579}, + [5103] = {.lex_state = 579}, + [5104] = {.lex_state = 0}, + [5105] = {.lex_state = 579}, + [5106] = {.lex_state = 0}, [5107] = {.lex_state = 0}, - [5108] = {.lex_state = 1689}, - [5109] = {.lex_state = 1693}, + [5108] = {.lex_state = 1193}, + [5109] = {.lex_state = 0}, [5110] = {.lex_state = 0, .external_lex_state = 4}, [5111] = {.lex_state = 0}, - [5112] = {.lex_state = 1689}, - [5113] = {.lex_state = 1693}, - [5114] = {.lex_state = 0, .external_lex_state = 4}, + [5112] = {.lex_state = 1693}, + [5113] = {.lex_state = 1697}, + [5114] = {.lex_state = 0}, [5115] = {.lex_state = 0}, - [5116] = {.lex_state = 1689}, - [5117] = {.lex_state = 1693}, - [5118] = {.lex_state = 0, .external_lex_state = 4}, - [5119] = {.lex_state = 1689}, - [5120] = {.lex_state = 1693}, - [5121] = {.lex_state = 0, .external_lex_state = 4}, - [5122] = {.lex_state = 1689}, - [5123] = {.lex_state = 1693}, - [5124] = {.lex_state = 0, .external_lex_state = 4}, - [5125] = {.lex_state = 1689}, - [5126] = {.lex_state = 1693}, - [5127] = {.lex_state = 0, .external_lex_state = 4}, - [5128] = {.lex_state = 1689}, - [5129] = {.lex_state = 1693}, - [5130] = {.lex_state = 0, .external_lex_state = 4}, - [5131] = {.lex_state = 1689}, - [5132] = {.lex_state = 1693}, - [5133] = {.lex_state = 0, .external_lex_state = 4}, - [5134] = {.lex_state = 1689}, - [5135] = {.lex_state = 1693}, - [5136] = {.lex_state = 0, .external_lex_state = 4}, - [5137] = {.lex_state = 1689}, - [5138] = {.lex_state = 1693}, - [5139] = {.lex_state = 0, .external_lex_state = 4}, - [5140] = {.lex_state = 1689}, - [5141] = {.lex_state = 1693}, - [5142] = {.lex_state = 0, .external_lex_state = 4}, - [5143] = {.lex_state = 1689}, - [5144] = {.lex_state = 1693}, - [5145] = {.lex_state = 0, .external_lex_state = 4}, - [5146] = {.lex_state = 1689}, - [5147] = {.lex_state = 1693}, - [5148] = {.lex_state = 0, .external_lex_state = 4}, - [5149] = {.lex_state = 1689}, - [5150] = {.lex_state = 1693}, - [5151] = {.lex_state = 0, .external_lex_state = 4}, - [5152] = {.lex_state = 1689}, - [5153] = {.lex_state = 1693}, - [5154] = {.lex_state = 0, .external_lex_state = 4}, - [5155] = {.lex_state = 1689}, - [5156] = {.lex_state = 1693}, - [5157] = {.lex_state = 1189}, - [5158] = {.lex_state = 0, .external_lex_state = 3}, - [5159] = {.lex_state = 0}, + [5116] = {.lex_state = 0}, + [5117] = {.lex_state = 628}, + [5118] = {.lex_state = 0}, + [5119] = {.lex_state = 40}, + [5120] = {.lex_state = 2202}, + [5121] = {.lex_state = 0}, + [5122] = {.lex_state = 626}, + [5123] = {.lex_state = 0, .external_lex_state = 3}, + [5124] = {.lex_state = 1193}, + [5125] = {.lex_state = 579}, + [5126] = {.lex_state = 0}, + [5127] = {.lex_state = 0}, + [5128] = {.lex_state = 0}, + [5129] = {.lex_state = 129}, + [5130] = {.lex_state = 0}, + [5131] = {.lex_state = 624}, + [5132] = {.lex_state = 10}, + [5133] = {.lex_state = 624}, + [5134] = {.lex_state = 0}, + [5135] = {.lex_state = 0}, + [5136] = {.lex_state = 1693}, + [5137] = {.lex_state = 0, .external_lex_state = 3}, + [5138] = {.lex_state = 0}, + [5139] = {.lex_state = 234}, + [5140] = {.lex_state = 234}, + [5141] = {.lex_state = 0}, + [5142] = {.lex_state = 0, .external_lex_state = 3}, + [5143] = {.lex_state = 0}, + [5144] = {.lex_state = 40}, + [5145] = {.lex_state = 626}, + [5146] = {.lex_state = 0, .external_lex_state = 4}, + [5147] = {.lex_state = 0}, + [5148] = {.lex_state = 1693}, + [5149] = {.lex_state = 1697}, + [5150] = {.lex_state = 157}, + [5151] = {.lex_state = 628}, + [5152] = {.lex_state = 0}, + [5153] = {.lex_state = 0}, + [5154] = {.lex_state = 626}, + [5155] = {.lex_state = 237}, + [5156] = {.lex_state = 40}, + [5157] = {.lex_state = 0}, + [5158] = {.lex_state = 0}, + [5159] = {.lex_state = 0, .external_lex_state = 4}, [5160] = {.lex_state = 0}, - [5161] = {.lex_state = 29}, - [5162] = {.lex_state = 0}, - [5163] = {.lex_state = 0}, - [5164] = {.lex_state = 577}, - [5165] = {.lex_state = 0}, - [5166] = {.lex_state = 239}, - [5167] = {.lex_state = 0}, + [5161] = {.lex_state = 1693}, + [5162] = {.lex_state = 1697}, + [5163] = {.lex_state = 0, .external_lex_state = 4}, + [5164] = {.lex_state = 0}, + [5165] = {.lex_state = 1693}, + [5166] = {.lex_state = 1697}, + [5167] = {.lex_state = 0, .external_lex_state = 4}, [5168] = {.lex_state = 0}, - [5169] = {.lex_state = 0}, - [5170] = {.lex_state = 2186}, - [5171] = {.lex_state = 275}, - [5172] = {.lex_state = 0}, - [5173] = {.lex_state = 31}, - [5174] = {.lex_state = 0}, - [5175] = {.lex_state = 31}, - [5176] = {.lex_state = 0}, - [5177] = {.lex_state = 0}, - [5178] = {.lex_state = 0}, - [5179] = {.lex_state = 31}, - [5180] = {.lex_state = 0}, - [5181] = {.lex_state = 0}, - [5182] = {.lex_state = 1189}, - [5183] = {.lex_state = 0}, - [5184] = {.lex_state = 31}, - [5185] = {.lex_state = 0}, - [5186] = {.lex_state = 0}, - [5187] = {.lex_state = 577}, - [5188] = {.lex_state = 577}, - [5189] = {.lex_state = 31}, - [5190] = {.lex_state = 0}, - [5191] = {.lex_state = 0}, - [5192] = {.lex_state = 232}, - [5193] = {.lex_state = 1189}, - [5194] = {.lex_state = 622}, - [5195] = {.lex_state = 622}, - [5196] = {.lex_state = 1189}, - [5197] = {.lex_state = 622}, - [5198] = {.lex_state = 31}, - [5199] = {.lex_state = 232}, - [5200] = {.lex_state = 622}, - [5201] = {.lex_state = 29}, - [5202] = {.lex_state = 0}, - [5203] = {(TSStateId)(-1),}, + [5169] = {.lex_state = 1693}, + [5170] = {.lex_state = 1697}, + [5171] = {.lex_state = 0, .external_lex_state = 4}, + [5172] = {.lex_state = 1693}, + [5173] = {.lex_state = 1697}, + [5174] = {.lex_state = 0, .external_lex_state = 4}, + [5175] = {.lex_state = 1693}, + [5176] = {.lex_state = 1697}, + [5177] = {.lex_state = 0, .external_lex_state = 4}, + [5178] = {.lex_state = 1693}, + [5179] = {.lex_state = 1697}, + [5180] = {.lex_state = 0, .external_lex_state = 4}, + [5181] = {.lex_state = 1693}, + [5182] = {.lex_state = 1697}, + [5183] = {.lex_state = 0, .external_lex_state = 4}, + [5184] = {.lex_state = 1693}, + [5185] = {.lex_state = 1697}, + [5186] = {.lex_state = 0, .external_lex_state = 4}, + [5187] = {.lex_state = 1693}, + [5188] = {.lex_state = 1697}, + [5189] = {.lex_state = 0, .external_lex_state = 4}, + [5190] = {.lex_state = 1693}, + [5191] = {.lex_state = 1697}, + [5192] = {.lex_state = 0, .external_lex_state = 4}, + [5193] = {.lex_state = 1693}, + [5194] = {.lex_state = 1697}, + [5195] = {.lex_state = 0, .external_lex_state = 4}, + [5196] = {.lex_state = 1693}, + [5197] = {.lex_state = 1697}, + [5198] = {.lex_state = 0, .external_lex_state = 4}, + [5199] = {.lex_state = 1693}, + [5200] = {.lex_state = 1697}, + [5201] = {.lex_state = 0, .external_lex_state = 4}, + [5202] = {.lex_state = 1693}, + [5203] = {.lex_state = 1697}, + [5204] = {.lex_state = 0, .external_lex_state = 4}, + [5205] = {.lex_state = 1693}, + [5206] = {.lex_state = 1697}, + [5207] = {.lex_state = 0, .external_lex_state = 4}, + [5208] = {.lex_state = 1693}, + [5209] = {.lex_state = 1697}, + [5210] = {.lex_state = 0, .external_lex_state = 4}, + [5211] = {.lex_state = 1693}, + [5212] = {.lex_state = 1697}, + [5213] = {.lex_state = 0, .external_lex_state = 4}, + [5214] = {.lex_state = 1693}, + [5215] = {.lex_state = 1697}, + [5216] = {.lex_state = 237}, + [5217] = {.lex_state = 0}, + [5218] = {.lex_state = 0}, + [5219] = {.lex_state = 579}, + [5220] = {.lex_state = 579}, + [5221] = {.lex_state = 234}, + [5222] = {.lex_state = 626}, + [5223] = {.lex_state = 579}, + [5224] = {.lex_state = 1193}, + [5225] = {.lex_state = 626}, + [5226] = {.lex_state = 0}, + [5227] = {.lex_state = 0}, + [5228] = {.lex_state = 2187}, + [5229] = {.lex_state = 0}, + [5230] = {.lex_state = 0}, + [5231] = {.lex_state = 626}, + [5232] = {.lex_state = 0}, + [5233] = {.lex_state = 0}, + [5234] = {.lex_state = 626}, + [5235] = {.lex_state = 626}, + [5236] = {.lex_state = 1193}, + [5237] = {.lex_state = 0}, + [5238] = {.lex_state = 626}, + [5239] = {.lex_state = 1697}, + [5240] = {.lex_state = 0}, + [5241] = {.lex_state = 628}, + [5242] = {.lex_state = 129}, + [5243] = {.lex_state = 626}, + [5244] = {.lex_state = 1193}, + [5245] = {.lex_state = 624}, + [5246] = {.lex_state = 129}, + [5247] = {.lex_state = 626}, + [5248] = {.lex_state = 10}, + [5249] = {.lex_state = 0, .external_lex_state = 3}, + [5250] = {.lex_state = 0}, + [5251] = {.lex_state = 37}, + [5252] = {.lex_state = 624}, + [5253] = {.lex_state = 0}, + [5254] = {.lex_state = 1193}, + [5255] = {.lex_state = 626}, + [5256] = {.lex_state = 129}, + [5257] = {.lex_state = 0}, + [5258] = {.lex_state = 0}, + [5259] = {.lex_state = 0}, + [5260] = {.lex_state = 626}, + [5261] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -38283,6 +38534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_variable] = ACTIONS(1), [anon_sym_record] = ACTIONS(1), [anon_sym_list] = ACTIONS(1), + [anon_sym_LF] = ACTIONS(1), [anon_sym_GT2] = ACTIONS(1), [anon_sym_oneof] = ACTIONS(1), [anon_sym_AT2] = ACTIONS(1), @@ -38306,8 +38558,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_BQUOTE] = ACTIONS(1), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1), [anon_sym_COLON2] = ACTIONS(1), [anon_sym_QMARK2] = ACTIONS(1), @@ -38322,76 +38572,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_nu_script] = STATE(5165), - [sym_shebang] = STATE(71), - [sym__block_body_statement] = STATE(4167), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym__block_body] = STATE(5186), - [sym_cmd_identifier] = STATE(2895), - [aux_sym__repeat_newline] = STATE(4614), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_nu_script] = STATE(5076), + [sym_shebang] = STATE(37), + [sym__block_body_statement] = STATE(4366), + [sym__declaration] = STATE(4632), + [sym_decl_alias] = STATE(4437), + [sym_stmt_let] = STATE(4461), + [sym_stmt_mut] = STATE(4461), + [sym_stmt_const] = STATE(4461), + [sym_assignment] = STATE(4461), + [sym__mutable_assignment_pattern] = STATE(4511), + [sym__statement] = STATE(4632), + [sym_pipeline] = STATE(4461), + [sym__block_body] = STATE(5087), + [sym_cmd_identifier] = STATE(2923), + [aux_sym__repeat_newline] = STATE(4538), + [sym_attribute_list] = STATE(4544), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4437), + [sym_decl_export] = STATE(4437), + [sym_decl_extern] = STATE(4437), + [sym_decl_module] = STATE(4437), + [sym_decl_use] = STATE(4437), + [sym__ctrl_statement] = STATE(4461), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_for] = STATE(4552), + [sym_ctrl_loop] = STATE(4552), + [sym_ctrl_while] = STATE(4552), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(81), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(293), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -38454,85 +38704,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(2)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5055), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4856), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym__match_pattern_record_body] = STATE(5085), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(397), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4542), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym__match_pattern_record_body] = STATE(5227), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(387), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(4866), + [sym_record_entry] = STATE(4500), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(2), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(501), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(493), + [aux_sym__match_pattern_record_body_repeat1] = STATE(773), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38599,83 +38849,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(3)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4919), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4947), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5138), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(56), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5141), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(3), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38742,83 +38992,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(4)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5011), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5053), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5152), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(66), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5106), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(4), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38885,83 +39135,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(5)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2590), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5081), + [sym_cmd_identifier] = STATE(2654), [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4995), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5085), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(5), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39028,83 +39278,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(6)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5178), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5072), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(56), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5141), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(6), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39171,83 +39421,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(7)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5055), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4949), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(4866), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(7), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39314,83 +39564,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(8)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4811), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4995), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4856), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(49), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(4866), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(8), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39457,83 +39707,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(9)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5160), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(53), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5176), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5153), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5085), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(9), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39600,83 +39850,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(10)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4994), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(57), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5012), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5037), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(25), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(59), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5042), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(10), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39743,83 +39993,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(11)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4900), - [sym_cmd_identifier] = STATE(2590), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4880), + [sym_cmd_identifier] = STATE(2654), [aux_sym__repeat_newline] = STATE(23), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(61), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4929), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(52), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(4883), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(11), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39886,83 +40136,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(12)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5011), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5015), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5152), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(66), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5157), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(12), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40029,83 +40279,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(13)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4898), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4947), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5072), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(56), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(4994), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(13), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40172,83 +40422,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(14)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4898), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4941), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5088), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(24), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(63), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5093), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(14), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40315,83 +40565,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(15)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2590), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5081), + [sym_cmd_identifier] = STATE(2654), [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5043), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5096), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(15), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40458,75 +40708,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(16)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5061), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(66), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5072), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(56), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(16), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40589,75 +40839,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(17)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5008), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(69), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5138), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(56), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(17), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40720,75 +40970,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(18)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4852), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5118), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym_parameter_pipes] = STATE(55), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40851,75 +41101,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(19)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4819), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(44), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4889), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(45), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40982,75 +41232,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(20)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5185), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(59), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5081), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41113,75 +41363,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(21)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4811), - [sym_cmd_identifier] = STATE(2711), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5153), + [sym_cmd_identifier] = STATE(2786), [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41244,75 +41494,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(22)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5027), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(51), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41375,75 +41625,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(23)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4961), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(63), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4932), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41506,75 +41756,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(24)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4898), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5116), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(65), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41637,75 +41887,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(25)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5172), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(73), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5055), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(61), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41768,75 +42018,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(26)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4919), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5230), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(68), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41899,73 +42149,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(27)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4983), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4991), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(27), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42028,73 +42278,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(28)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5184), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5099), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(28), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42157,73 +42407,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(29)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5006), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5235), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(29), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42264,7 +42514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(351), + [anon_sym_RPAREN2] = ACTIONS(335), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42286,73 +42536,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(30)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5101), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4834), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(30), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42384,7 +42634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(351), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42393,7 +42643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(355), + [anon_sym_RPAREN2] = ACTIONS(347), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42415,73 +42665,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(31)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4827), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4877), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(31), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42513,7 +42763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(353), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42522,7 +42772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(359), + [anon_sym_RPAREN2] = ACTIONS(355), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42544,331 +42794,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(32)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5046), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5034), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(32), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(363), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(33)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5049), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(33), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(363), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(34)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4938), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(34), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42900,7 +42892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_RPAREN] = ACTIONS(357), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42930,74 +42922,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(35)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4832), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(35), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(33)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5145), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(33), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43029,7 +43021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(369), + [anon_sym_RPAREN] = ACTIONS(361), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43038,6 +43030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [anon_sym_RPAREN2] = ACTIONS(363), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -43058,74 +43051,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(36)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5034), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(36), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(34)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5255), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(34), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43157,7 +43150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(371), + [anon_sym_RPAREN] = ACTIONS(365), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43166,6 +43159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [anon_sym_RPAREN2] = ACTIONS(367), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -43186,79 +43180,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(37)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5163), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(37), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(35)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5034), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(35), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43268,9 +43262,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -43285,19 +43279,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(369), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(373), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43310,78 +43304,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(38)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5198), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(38), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(36)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4991), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(36), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43413,7 +43407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(371), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43442,74 +43436,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(39)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4827), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(39), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(37)] = { + [sym__block_body_statement] = STATE(4366), + [sym__declaration] = STATE(4632), + [sym_decl_alias] = STATE(4437), + [sym_stmt_let] = STATE(4461), + [sym_stmt_mut] = STATE(4461), + [sym_stmt_const] = STATE(4461), + [sym_assignment] = STATE(4461), + [sym__mutable_assignment_pattern] = STATE(4511), + [sym__statement] = STATE(4632), + [sym_pipeline] = STATE(4461), + [sym__block_body] = STATE(5232), + [sym_cmd_identifier] = STATE(2923), + [sym_attribute_list] = STATE(4544), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4437), + [sym_decl_export] = STATE(4437), + [sym_decl_extern] = STATE(4437), + [sym_decl_module] = STATE(4437), + [sym_decl_use] = STATE(4437), + [sym__ctrl_statement] = STATE(4461), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_for] = STATE(4552), + [sym_ctrl_loop] = STATE(4552), + [sym_ctrl_while] = STATE(4552), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(37), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(81), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(293), + [ts_builtin_sym_end] = ACTIONS(373), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym__newline] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(38)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5235), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(38), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43541,7 +43663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(375), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43570,74 +43692,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(40)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4828), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(39)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4842), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(185), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(39), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -43672,7 +43794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -43698,74 +43820,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(41)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4868), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(41), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(40)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4848), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(40), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43797,7 +43919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43826,79 +43948,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(42)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4976), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(41)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5260), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(41), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43908,9 +44030,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -43925,19 +44047,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(381), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(383), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43950,83 +44072,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(43)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5105), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(43), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(42)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4893), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(42), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -44036,9 +44158,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -44053,19 +44175,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(385), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(383), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44078,83 +44200,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(44)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5081), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(43)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4895), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(43), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -44164,9 +44286,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -44181,19 +44303,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(385), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44206,78 +44328,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(45)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4859), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(44)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5038), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(185), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(44), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -44312,7 +44434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -44338,79 +44460,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(46)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4839), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(46), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(45)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5091), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(45), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -44420,9 +44542,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -44437,19 +44559,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44462,78 +44584,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(47)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4983), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(47), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(46)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5222), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(46), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44565,7 +44687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44594,74 +44716,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(48)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5090), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(47)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5099), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(47), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44693,7 +44815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(393), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44722,202 +44844,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(49)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5174), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(50)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5175), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(48)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4979), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(48), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44949,7 +44943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(395), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44978,79 +44972,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(51)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5046), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(49)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5041), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(49), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -45060,9 +45054,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -45077,19 +45071,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(401), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45102,78 +45096,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(52)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5049), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(50)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5044), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(50), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45205,7 +45199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(399), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45234,74 +45228,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(53)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5016), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(51)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4892), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(53), - [aux_sym_pipeline_repeat1] = STATE(185), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(51), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45336,7 +45330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45362,202 +45356,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(54)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4799), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(55)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5013), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(52)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4935), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(55), - [aux_sym_pipeline_repeat1] = STATE(185), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(52), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45592,7 +45458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(403), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45618,74 +45484,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(56)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4893), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(53)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4939), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(53), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45717,7 +45583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(411), + [anon_sym_RPAREN] = ACTIONS(405), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45746,74 +45612,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(57)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4803), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(54)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4971), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(57), - [aux_sym_pipeline_repeat1] = STATE(185), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(54), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45848,7 +45714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45874,79 +45740,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(58)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4804), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(55)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5250), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(55), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -45956,9 +45822,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -45973,19 +45839,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(415), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(409), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45998,78 +45864,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(59)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4820), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(56)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5130), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(59), - [aux_sym_pipeline_repeat1] = STATE(185), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(56), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46104,7 +45970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(411), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46130,74 +45996,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(60)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5006), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(57)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5086), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(57), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46229,7 +46095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46258,79 +46124,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(61)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4964), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(61), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(58)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5019), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(58), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -46340,9 +46206,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -46357,19 +46223,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(415), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -46382,83 +46248,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(62)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4968), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(59)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5057), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(59), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -46468,9 +46334,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -46485,19 +46351,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(423), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(417), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -46510,83 +46376,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(63)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4974), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(63), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(60)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5058), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(60), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -46596,9 +46462,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -46613,19 +46479,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(419), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -46638,78 +46504,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(64)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5065), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(61)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5063), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(64), - [aux_sym_pipeline_repeat1] = STATE(185), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(61), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46744,7 +46610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46770,74 +46636,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(65)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5067), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(62)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5145), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(62), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46869,7 +46735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(423), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46898,74 +46764,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(66)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5074), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(63)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5121), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(66), - [aux_sym_pipeline_repeat1] = STATE(185), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(63), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -47000,7 +46866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -47026,202 +46892,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(67)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4798), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(433), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(68)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4817), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(64)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5122), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(64), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47253,7 +46991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(435), + [anon_sym_RPAREN] = ACTIONS(427), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47282,74 +47020,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(69)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4858), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(65)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5127), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(69), - [aux_sym_pipeline_repeat1] = STATE(185), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(65), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -47384,7 +47122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -47410,79 +47148,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(70)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4846), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(66)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5233), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(66), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -47492,9 +47230,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -47509,19 +47247,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(431), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47534,206 +47272,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(71)] = { - [sym__block_body_statement] = STATE(4167), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym__block_body] = STATE(5017), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(71), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(441), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(72)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4938), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(67)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5234), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(67), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47765,7 +47375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(443), + [anon_sym_RPAREN] = ACTIONS(433), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47794,74 +47404,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(73)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4958), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(68)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5240), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(73), - [aux_sym_pipeline_repeat1] = STATE(185), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(68), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -47896,7 +47506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(435), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -47922,78 +47532,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(74)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(74), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [STATE(69)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4838), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48003,9 +47614,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48020,12 +47631,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(437), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48045,83 +47656,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(75)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4891), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(75), - [aux_sym_pipeline_repeat1] = STATE(188), + [STATE(70)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4858), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(70), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48131,9 +47742,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48148,11 +47759,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48172,82 +47784,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(76)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(76), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(71)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4873), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48257,9 +47870,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48274,19 +47887,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(441), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(459), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48299,77 +47912,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(77)] = { - [sym__block_body_statement_parenthesized] = STATE(3767), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [STATE(72)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4887), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48401,7 +48015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(443), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48430,79 +48044,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(78)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5052), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(78), - [aux_sym_pipeline_repeat1] = STATE(188), + [STATE(73)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4834), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(73), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48512,9 +48126,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48529,11 +48143,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(445), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48553,205 +48168,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(79)] = { - [sym__block_body_statement] = STATE(4066), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(1370), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(459), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(80)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4835), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(74)] = { + [sym__block_body_statement_parenthesized] = STATE(3803), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(74), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(82), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48783,6 +48270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(447), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48811,79 +48299,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(81)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4876), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(75)] = { + [sym__block_body_statement] = STATE(4078), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(452), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(75), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat1] = STATE(1349), + [aux_sym__block_body_repeat2] = STATE(86), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48893,9 +48380,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48910,11 +48397,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(461), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48934,199 +48422,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(82)] = { - [sym__block_body_statement] = STATE(4066), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [STATE(76)] = { + [sym__block_body_statement] = STATE(4078), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(1349), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(83)] = { - [sym__block_body_statement_parenthesized] = STATE(3767), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [STATE(77)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4888), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(452), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(77), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(78)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4864), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(78), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -49153,6 +48774,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(283), [aux_sym_cmd_identifier_token4] = ACTIONS(283), [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), @@ -49184,77 +48807,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(84)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(84), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(79)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4875), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(452), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(79), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49264,7 +48889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -49276,6 +48901,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(283), [aux_sym_cmd_identifier_token4] = ACTIONS(283), [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), @@ -49287,10 +48914,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49307,77 +48934,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(85)] = { - [sym__block_body_statement] = STATE(3918), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(85), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [STATE(80)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4912), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(80), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49387,9 +49016,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -49399,6 +49028,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(283), [aux_sym_cmd_identifier_token4] = ACTIONS(283), [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), @@ -49406,7 +49037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -49426,81 +49057,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(86)] = { - [sym__block_body_statement] = STATE(3918), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(86), + [STATE(81)] = { + [sym__block_body_statement] = STATE(4195), + [sym__declaration] = STATE(4632), + [sym_decl_alias] = STATE(4437), + [sym_stmt_let] = STATE(4461), + [sym_stmt_mut] = STATE(4461), + [sym_stmt_const] = STATE(4461), + [sym_assignment] = STATE(4461), + [sym__mutable_assignment_pattern] = STATE(4511), + [sym__statement] = STATE(4632), + [sym_pipeline] = STATE(4461), + [sym_cmd_identifier] = STATE(2923), + [sym_attribute_list] = STATE(4544), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4437), + [sym_decl_export] = STATE(4437), + [sym_decl_extern] = STATE(4437), + [sym_decl_module] = STATE(4437), + [sym_decl_use] = STATE(4437), + [sym__ctrl_statement] = STATE(4461), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_for] = STATE(4552), + [sym_ctrl_loop] = STATE(4552), + [sym_ctrl_while] = STATE(4552), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(81), [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym__block_body_repeat1] = STATE(1360), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(293), + [ts_builtin_sym_end] = ACTIONS(461), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym__newline] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(82)] = { + [sym__block_body_statement_parenthesized] = STATE(3875), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(82), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49510,9 +49268,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -49529,14 +49287,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49549,81 +49307,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(87)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(87), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [STATE(83)] = { + [sym__block_body_statement] = STATE(4078), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(452), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(83), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49633,7 +49391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -49676,72 +49434,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(88)] = { - [sym__block_body_statement] = STATE(4396), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(474), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(88), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(287), + [STATE(84)] = { + [sym__block_body_statement] = STATE(4533), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(473), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(84), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(463), [anon_sym_alias] = ACTIONS(466), [anon_sym_let] = ACTIONS(469), @@ -49799,72 +49557,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(598), }, - [STATE(89)] = { - [sym__block_body_statement] = STATE(4152), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(89), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(85)] = { + [sym__block_body_statement] = STATE(4195), + [sym__declaration] = STATE(4632), + [sym_decl_alias] = STATE(4437), + [sym_stmt_let] = STATE(4461), + [sym_stmt_mut] = STATE(4461), + [sym_stmt_const] = STATE(4461), + [sym_assignment] = STATE(4461), + [sym__mutable_assignment_pattern] = STATE(4511), + [sym__statement] = STATE(4632), + [sym_pipeline] = STATE(4461), + [sym_cmd_identifier] = STATE(2923), + [sym_attribute_list] = STATE(4544), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4437), + [sym_decl_export] = STATE(4437), + [sym_decl_extern] = STATE(4437), + [sym_decl_module] = STATE(4437), + [sym_decl_use] = STATE(4437), + [sym__ctrl_statement] = STATE(4461), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_for] = STATE(4552), + [sym_ctrl_loop] = STATE(4552), + [sym_ctrl_while] = STATE(4552), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(85), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49922,72 +49680,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(90)] = { - [sym__block_body_statement_parenthesized] = STATE(3820), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [STATE(86)] = { + [sym__block_body_statement] = STATE(4087), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(452), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(86), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(87)] = { + [sym__block_body_statement_parenthesized] = STATE(3803), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(87), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -50045,72 +49926,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(91)] = { - [sym__block_body_statement_parenthesized] = STATE(4147), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(471), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [STATE(88)] = { + [sym__block_body_statement_parenthesized] = STATE(4122), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(465), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(601), [anon_sym_alias] = ACTIONS(604), [anon_sym_let] = ACTIONS(607), @@ -50168,6 +50049,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(736), }, + [STATE(89)] = { + [sym__block_body_statement] = STATE(4087), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(89), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(90)] = { + [sym__block_body_statement] = STATE(4078), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(90), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(91)] = { + [sym__block_body_statement] = STATE(4385), + [sym__declaration] = STATE(4632), + [sym_decl_alias] = STATE(4437), + [sym_stmt_let] = STATE(4461), + [sym_stmt_mut] = STATE(4461), + [sym_stmt_const] = STATE(4461), + [sym_assignment] = STATE(4461), + [sym__mutable_assignment_pattern] = STATE(4511), + [sym__statement] = STATE(4632), + [sym_pipeline] = STATE(4461), + [sym_cmd_identifier] = STATE(2923), + [sym_attribute_list] = STATE(4544), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4437), + [sym_decl_export] = STATE(4437), + [sym_decl_extern] = STATE(4437), + [sym_decl_module] = STATE(4437), + [sym_decl_use] = STATE(4437), + [sym__ctrl_statement] = STATE(4461), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_for] = STATE(4552), + [sym_ctrl_loop] = STATE(4552), + [sym_ctrl_while] = STATE(4552), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(91), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, [STATE(92)] = { [sym_comment] = STATE(92), [anon_sym_in] = ACTIONS(739), @@ -50388,7 +50638,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(94)] = { [sym_comment] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(759), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_COLON2] = ACTIONS(755), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(95)] = { + [sym_comment] = STATE(95), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -50438,6 +50795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -50470,12 +50828,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(755), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(745), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), + [anon_sym_COLON2] = ACTIONS(739), [anon_sym_err_GT] = ACTIONS(739), [anon_sym_out_GT] = ACTIONS(739), [anon_sym_e_GT] = ACTIONS(739), @@ -50494,8 +50852,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(95)] = { - [sym_comment] = STATE(95), + [STATE(96)] = { + [sym_comment] = STATE(96), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -50543,9 +50901,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -50578,10 +50936,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(759), + [anon_sym_DOT] = ACTIONS(761), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), + [aux_sym__immediate_decimal_token5] = ACTIONS(763), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -50602,8 +50960,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(96)] = { - [sym_comment] = STATE(96), + [STATE(97)] = { + [sym_comment] = STATE(97), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -50651,7 +51010,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), @@ -50688,8 +51046,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(763), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), + [aux_sym__immediate_decimal_token1] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(767), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -50710,9 +51068,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(97)] = { - [sym_comment] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(749), + [STATE(98)] = { + [sym_comment] = STATE(98), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -50762,6 +51119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -50796,8 +51154,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(767), - [aux_sym__immediate_decimal_token5] = ACTIONS(769), + [aux_sym__immediate_decimal_token1] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(771), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -50818,116 +51176,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(98)] = { - [sym_comment] = STATE(98), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(775), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_COLON2] = ACTIONS(771), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(99)] = { [sym_comment] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -50977,7 +51228,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -51010,12 +51260,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(773), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(745), + [aux_sym__immediate_decimal_token5] = ACTIONS(775), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), - [anon_sym_COLON2] = ACTIONS(739), [anon_sym_err_GT] = ACTIONS(739), [anon_sym_out_GT] = ACTIONS(739), [anon_sym_e_GT] = ACTIONS(739), @@ -51083,9 +51333,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -51191,9 +51441,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -51252,6 +51502,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(102)] = { [sym_comment] = STATE(102), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(785), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(103)] = { + [sym_comment] = STATE(103), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -51299,9 +51656,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -51357,115 +51714,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(103)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), - [sym_comment] = STATE(103), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, [STATE(104)] = { [sym_comment] = STATE(104), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(787), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(105)] = { + [sym_comment] = STATE(105), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51515,6 +51872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -51549,10 +51907,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(845), - [aux_sym__immediate_decimal_token5] = ACTIONS(847), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), + [anon_sym_COLON2] = ACTIONS(747), [anon_sym_err_GT] = ACTIONS(747), [anon_sym_out_GT] = ACTIONS(747), [anon_sym_e_GT] = ACTIONS(747), @@ -51571,329 +51928,543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(105)] = { - [sym_comment] = STATE(105), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_COLON2] = ACTIONS(771), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(106)] = { [sym_comment] = STATE(106), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_COLON2] = ACTIONS(849), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_COLON2] = ACTIONS(755), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(103), }, [STATE(107)] = { [sym_comment] = STATE(107), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(853), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_COLON2] = ACTIONS(789), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(103), }, [STATE(108)] = { [sym_comment] = STATE(108), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(763), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(109)] = { + [sym_comment] = STATE(109), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(110)] = { + [sym_comment] = STATE(110), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(795), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(797), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(111)] = { + [sym_comment] = STATE(111), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51943,7 +52514,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -51978,9 +52548,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(799), + [aux_sym__immediate_decimal_token5] = ACTIONS(801), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), - [anon_sym_COLON2] = ACTIONS(747), [anon_sym_err_GT] = ACTIONS(747), [anon_sym_out_GT] = ACTIONS(747), [anon_sym_e_GT] = ACTIONS(747), @@ -51999,115 +52570,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(109)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), - [sym_comment] = STATE(109), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(855), - [sym__space] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), + [STATE(112)] = { + [sym_expr_parenthesized] = STATE(2642), + [sym__spread_parenthesized] = STATE(3114), + [sym_val_range] = STATE(3117), + [sym__val_range] = STATE(4483), + [sym__value] = STATE(3117), + [sym_val_nothing] = STATE(3105), + [sym_val_bool] = STATE(2745), + [sym__spread_variable] = STATE(3118), + [sym_val_variable] = STATE(2648), + [sym_val_cellpath] = STATE(3105), + [sym_val_number] = STATE(3105), + [sym__val_number_decimal] = STATE(2439), + [sym__val_number] = STATE(3106), + [sym_val_duration] = STATE(3105), + [sym_val_filesize] = STATE(3105), + [sym_val_binary] = STATE(3105), + [sym_val_string] = STATE(3105), + [sym__raw_str] = STATE(2499), + [sym__str_double_quotes] = STATE(2499), + [sym__str_single_quotes] = STATE(2499), + [sym__str_back_ticks] = STATE(2499), + [sym_val_interpolated] = STATE(3105), + [sym__inter_single_quotes] = STATE(3009), + [sym__inter_double_quotes] = STATE(3012), + [sym_val_list] = STATE(3105), + [sym__spread_list] = STATE(3114), + [sym_val_record] = STATE(3105), + [sym_val_table] = STATE(3105), + [sym_val_closure] = STATE(3105), + [sym__cmd_arg] = STATE(3119), + [sym_redirection] = STATE(2972), + [sym__flag] = STATE(3127), + [sym_short_flag] = STATE(2974), + [sym_long_flag] = STATE(2974), + [sym_unquoted] = STATE(2710), + [sym__unquoted_with_expr] = STATE(2979), + [sym__unquoted_anonymous_prefix] = STATE(4483), + [sym_comment] = STATE(112), + [anon_sym_true] = ACTIONS(803), + [anon_sym_false] = ACTIONS(803), + [anon_sym_null] = ACTIONS(805), + [aux_sym_cmd_identifier_token3] = ACTIONS(807), + [aux_sym_cmd_identifier_token4] = ACTIONS(807), + [aux_sym_cmd_identifier_token5] = ACTIONS(807), + [sym__newline] = ACTIONS(809), + [sym__space] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(812), + [anon_sym_err_GT_PIPE] = ACTIONS(812), + [anon_sym_out_GT_PIPE] = ACTIONS(812), + [anon_sym_e_GT_PIPE] = ACTIONS(812), + [anon_sym_o_GT_PIPE] = ACTIONS(812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(812), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_DASH_DASH] = ACTIONS(820), + [anon_sym_DASH2] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(812), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(830), + [anon_sym_DOT_DOT_LT] = ACTIONS(830), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(832), + [aux_sym__val_number_decimal_token1] = ACTIONS(834), + [aux_sym__val_number_decimal_token2] = ACTIONS(834), + [aux_sym__val_number_decimal_token3] = ACTIONS(836), + [aux_sym__val_number_decimal_token4] = ACTIONS(836), + [aux_sym__val_number_token1] = ACTIONS(838), + [aux_sym__val_number_token2] = ACTIONS(838), + [aux_sym__val_number_token3] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(840), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(856), [anon_sym_COLON2] = ACTIONS(858), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [aux_sym_unquoted_token1] = ACTIONS(862), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), + [sym_raw_string_begin] = ACTIONS(864), }, - [STATE(110)] = { - [sym_comment] = STATE(110), + [STATE(113)] = { + [sym_comment] = STATE(113), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52189,10 +52761,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(860), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(862), + [aux_sym__immediate_decimal_token5] = ACTIONS(775), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52213,222 +52784,646 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(111)] = { - [sym_comment] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [STATE(114)] = { + [sym_comment] = STATE(114), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(870), + [anon_sym_SLASH] = ACTIONS(870), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(868), + [anon_sym_bit_DASHshl] = ACTIONS(868), + [anon_sym_bit_DASHshr] = ACTIONS(868), + [anon_sym_EQ_TILDE] = ACTIONS(868), + [anon_sym_BANG_TILDE] = ACTIONS(868), + [anon_sym_like] = ACTIONS(868), + [anon_sym_not_DASHlike] = ACTIONS(868), + [anon_sym_bit_DASHand] = ACTIONS(868), + [anon_sym_bit_DASHxor] = ACTIONS(868), + [anon_sym_bit_DASHor] = ACTIONS(868), + [anon_sym_and] = ACTIONS(868), + [anon_sym_xor] = ACTIONS(868), + [anon_sym_or] = ACTIONS(868), + [anon_sym_in2] = ACTIONS(868), + [anon_sym_not_DASHin] = ACTIONS(868), + [anon_sym_has] = ACTIONS(868), + [anon_sym_not_DASHhas] = ACTIONS(868), + [anon_sym_starts_DASHwith] = ACTIONS(868), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(868), + [anon_sym_ends_DASHwith] = ACTIONS(868), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(868), + [anon_sym_EQ_EQ] = ACTIONS(868), + [anon_sym_BANG_EQ] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(870), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(870), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(872), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_COLON2] = ACTIONS(866), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(112)] = { - [sym_comment] = STATE(112), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(864), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [STATE(115)] = { + [sym_expr_parenthesized] = STATE(2642), + [sym__spread_parenthesized] = STATE(3114), + [sym_val_range] = STATE(3117), + [sym__val_range] = STATE(4483), + [sym__value] = STATE(3117), + [sym_val_nothing] = STATE(3105), + [sym_val_bool] = STATE(2745), + [sym__spread_variable] = STATE(3118), + [sym_val_variable] = STATE(2648), + [sym_val_cellpath] = STATE(3105), + [sym_val_number] = STATE(3105), + [sym__val_number_decimal] = STATE(2439), + [sym__val_number] = STATE(3106), + [sym_val_duration] = STATE(3105), + [sym_val_filesize] = STATE(3105), + [sym_val_binary] = STATE(3105), + [sym_val_string] = STATE(3105), + [sym__raw_str] = STATE(2499), + [sym__str_double_quotes] = STATE(2499), + [sym__str_single_quotes] = STATE(2499), + [sym__str_back_ticks] = STATE(2499), + [sym_val_interpolated] = STATE(3105), + [sym__inter_single_quotes] = STATE(3009), + [sym__inter_double_quotes] = STATE(3012), + [sym_val_list] = STATE(3105), + [sym__spread_list] = STATE(3114), + [sym_val_record] = STATE(3105), + [sym_val_table] = STATE(3105), + [sym_val_closure] = STATE(3105), + [sym__cmd_arg] = STATE(3119), + [sym_redirection] = STATE(2972), + [sym__flag] = STATE(3127), + [sym_short_flag] = STATE(2974), + [sym_long_flag] = STATE(2974), + [sym_unquoted] = STATE(2710), + [sym__unquoted_with_expr] = STATE(2979), + [sym__unquoted_anonymous_prefix] = STATE(4483), + [sym_comment] = STATE(115), + [anon_sym_true] = ACTIONS(803), + [anon_sym_false] = ACTIONS(803), + [anon_sym_null] = ACTIONS(805), + [aux_sym_cmd_identifier_token3] = ACTIONS(807), + [aux_sym_cmd_identifier_token4] = ACTIONS(807), + [aux_sym_cmd_identifier_token5] = ACTIONS(807), + [sym__newline] = ACTIONS(812), + [sym__space] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(812), + [anon_sym_err_GT_PIPE] = ACTIONS(812), + [anon_sym_out_GT_PIPE] = ACTIONS(812), + [anon_sym_e_GT_PIPE] = ACTIONS(812), + [anon_sym_o_GT_PIPE] = ACTIONS(812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(812), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_RPAREN] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_DASH_DASH] = ACTIONS(820), + [anon_sym_DASH2] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(812), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(830), + [anon_sym_DOT_DOT_LT] = ACTIONS(830), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(832), + [aux_sym__val_number_decimal_token1] = ACTIONS(834), + [aux_sym__val_number_decimal_token2] = ACTIONS(834), + [aux_sym__val_number_decimal_token3] = ACTIONS(836), + [aux_sym__val_number_decimal_token4] = ACTIONS(836), + [aux_sym__val_number_token1] = ACTIONS(838), + [aux_sym__val_number_token2] = ACTIONS(838), + [aux_sym__val_number_token3] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(840), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(856), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [aux_sym_unquoted_token1] = ACTIONS(862), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(864), }, - [STATE(113)] = { - [sym_comment] = STATE(113), + [STATE(116)] = { + [sym_comment] = STATE(116), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(117)] = { + [sym_expr_parenthesized] = STATE(2642), + [sym__spread_parenthesized] = STATE(3114), + [sym_val_range] = STATE(3117), + [sym__val_range] = STATE(4483), + [sym__value] = STATE(3117), + [sym_val_nothing] = STATE(3105), + [sym_val_bool] = STATE(2745), + [sym__spread_variable] = STATE(3118), + [sym_val_variable] = STATE(2648), + [sym_val_cellpath] = STATE(3105), + [sym_val_number] = STATE(3105), + [sym__val_number_decimal] = STATE(2439), + [sym__val_number] = STATE(3106), + [sym_val_duration] = STATE(3105), + [sym_val_filesize] = STATE(3105), + [sym_val_binary] = STATE(3105), + [sym_val_string] = STATE(3105), + [sym__raw_str] = STATE(2499), + [sym__str_double_quotes] = STATE(2499), + [sym__str_single_quotes] = STATE(2499), + [sym__str_back_ticks] = STATE(2499), + [sym_val_interpolated] = STATE(3105), + [sym__inter_single_quotes] = STATE(3009), + [sym__inter_double_quotes] = STATE(3012), + [sym_val_list] = STATE(3105), + [sym__spread_list] = STATE(3114), + [sym_val_record] = STATE(3105), + [sym_val_table] = STATE(3105), + [sym_val_closure] = STATE(3105), + [sym__cmd_arg] = STATE(3166), + [sym_redirection] = STATE(2972), + [sym__flag] = STATE(3127), + [sym_short_flag] = STATE(2974), + [sym_long_flag] = STATE(2974), + [sym_unquoted] = STATE(2710), + [sym__unquoted_with_expr] = STATE(2979), + [sym__unquoted_anonymous_prefix] = STATE(4483), + [sym_comment] = STATE(117), + [anon_sym_true] = ACTIONS(803), + [anon_sym_false] = ACTIONS(803), + [anon_sym_null] = ACTIONS(805), + [aux_sym_cmd_identifier_token3] = ACTIONS(807), + [aux_sym_cmd_identifier_token4] = ACTIONS(807), + [aux_sym_cmd_identifier_token5] = ACTIONS(807), + [sym__newline] = ACTIONS(884), + [sym__space] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_err_GT_PIPE] = ACTIONS(884), + [anon_sym_out_GT_PIPE] = ACTIONS(884), + [anon_sym_e_GT_PIPE] = ACTIONS(884), + [anon_sym_o_GT_PIPE] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_DASH_DASH] = ACTIONS(820), + [anon_sym_DASH2] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(830), + [anon_sym_DOT_DOT_LT] = ACTIONS(830), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(832), + [aux_sym__val_number_decimal_token1] = ACTIONS(834), + [aux_sym__val_number_decimal_token2] = ACTIONS(834), + [aux_sym__val_number_decimal_token3] = ACTIONS(836), + [aux_sym__val_number_decimal_token4] = ACTIONS(836), + [aux_sym__val_number_token1] = ACTIONS(838), + [aux_sym__val_number_token2] = ACTIONS(838), + [aux_sym__val_number_token3] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(840), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(856), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [aux_sym_unquoted_token1] = ACTIONS(862), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(864), + }, + [STATE(118)] = { + [sym_comment] = STATE(118), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(119)] = { + [sym_comment] = STATE(119), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(120)] = { + [sym_comment] = STATE(120), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52466,7 +53461,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(741), [aux_sym_cmd_identifier_token6] = ACTIONS(739), [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), [anon_sym_PIPE] = ACTIONS(739), [anon_sym_err_GT_PIPE] = ACTIONS(739), [anon_sym_out_GT_PIPE] = ACTIONS(739), @@ -52476,7 +53470,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), @@ -52511,9 +53504,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(888), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), + [aux_sym__immediate_decimal_token5] = ACTIONS(890), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52534,540 +53528,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(114)] = { - [sym_comment] = STATE(114), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(866), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(115)] = { - [sym_comment] = STATE(115), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(870), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_mod] = ACTIONS(870), - [anon_sym_SLASH_SLASH] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(872), - [anon_sym_DASH] = ACTIONS(870), - [anon_sym_bit_DASHshl] = ACTIONS(870), - [anon_sym_bit_DASHshr] = ACTIONS(870), - [anon_sym_EQ_TILDE] = ACTIONS(870), - [anon_sym_BANG_TILDE] = ACTIONS(870), - [anon_sym_like] = ACTIONS(870), - [anon_sym_not_DASHlike] = ACTIONS(870), - [anon_sym_bit_DASHand] = ACTIONS(870), - [anon_sym_bit_DASHxor] = ACTIONS(870), - [anon_sym_bit_DASHor] = ACTIONS(870), - [anon_sym_and] = ACTIONS(870), - [anon_sym_xor] = ACTIONS(870), - [anon_sym_or] = ACTIONS(870), - [anon_sym_in2] = ACTIONS(870), - [anon_sym_not_DASHin] = ACTIONS(870), - [anon_sym_has] = ACTIONS(870), - [anon_sym_not_DASHhas] = ACTIONS(870), - [anon_sym_starts_DASHwith] = ACTIONS(870), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(870), - [anon_sym_ends_DASHwith] = ACTIONS(870), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(870), - [anon_sym_EQ_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ] = ACTIONS(870), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(870), - [anon_sym_GT] = ACTIONS(872), - [anon_sym_GT_EQ] = ACTIONS(870), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(880), - [sym_duration_unit] = ACTIONS(882), - [anon_sym_COLON2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(116)] = { - [sym_comment] = STATE(116), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(890), - [sym_duration_unit] = ACTIONS(892), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(117)] = { - [sym_comment] = STATE(117), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(118)] = { - [sym_comment] = STATE(118), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(119)] = { - [sym_comment] = STATE(119), + [STATE(121)] = { + [sym_comment] = STATE(121), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -53151,7 +53613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(862), + [aux_sym__immediate_decimal_token5] = ACTIONS(797), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -53172,326 +53634,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(120)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(3208), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), - [sym_comment] = STATE(120), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(894), - [sym__space] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(894), - [anon_sym_err_GT_PIPE] = ACTIONS(894), - [anon_sym_out_GT_PIPE] = ACTIONS(894), - [anon_sym_e_GT_PIPE] = ACTIONS(894), - [anon_sym_o_GT_PIPE] = ACTIONS(894), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(894), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, - [STATE(121)] = { - [sym_comment] = STATE(121), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(898), - [sym_duration_unit] = ACTIONS(900), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(122)] = { [sym_comment] = STATE(122), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(902), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(892), + [aux_sym__immediate_decimal_token5] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(747), + [anon_sym_out_GT_GT] = ACTIONS(747), + [anon_sym_e_GT_GT] = ACTIONS(747), + [anon_sym_o_GT_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, [STATE(123)] = { [sym_comment] = STATE(123), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(124)] = { + [sym_comment] = STATE(124), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -53539,9 +53895,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -53596,8 +53952,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(124)] = { - [sym_comment] = STATE(124), + [STATE(125)] = { + [sym_comment] = STATE(125), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(126)] = { + [sym_comment] = STATE(126), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), @@ -53702,220 +54164,432 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(125)] = { - [sym_comment] = STATE(125), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [STATE(127)] = { + [sym_comment] = STATE(127), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(904), + [sym_duration_unit] = ACTIONS(906), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(126)] = { - [sym_comment] = STATE(126), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [STATE(128)] = { + [sym_comment] = STATE(128), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(127)] = { - [sym_comment] = STATE(127), + [STATE(129)] = { + [sym_comment] = STATE(129), + [ts_builtin_sym_end] = ACTIONS(908), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_SLASH] = ACTIONS(912), + [anon_sym_mod] = ACTIONS(910), + [anon_sym_SLASH_SLASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_bit_DASHshl] = ACTIONS(910), + [anon_sym_bit_DASHshr] = ACTIONS(910), + [anon_sym_EQ_TILDE] = ACTIONS(910), + [anon_sym_BANG_TILDE] = ACTIONS(910), + [anon_sym_like] = ACTIONS(910), + [anon_sym_not_DASHlike] = ACTIONS(910), + [anon_sym_bit_DASHand] = ACTIONS(910), + [anon_sym_bit_DASHxor] = ACTIONS(910), + [anon_sym_bit_DASHor] = ACTIONS(910), + [anon_sym_and] = ACTIONS(910), + [anon_sym_xor] = ACTIONS(910), + [anon_sym_or] = ACTIONS(910), + [anon_sym_in2] = ACTIONS(910), + [anon_sym_not_DASHin] = ACTIONS(910), + [anon_sym_has] = ACTIONS(910), + [anon_sym_not_DASHhas] = ACTIONS(910), + [anon_sym_starts_DASHwith] = ACTIONS(910), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(910), + [anon_sym_ends_DASHwith] = ACTIONS(910), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(910), + [anon_sym_EQ_EQ] = ACTIONS(910), + [anon_sym_BANG_EQ] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(912), + [anon_sym_LT_EQ] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(912), + [anon_sym_GT_EQ] = ACTIONS(910), + [aux_sym_cmd_identifier_token6] = ACTIONS(914), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(916), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), + [anon_sym_DOT_DOT_LT2] = ACTIONS(918), + [sym_filesize_unit] = ACTIONS(920), + [sym_duration_unit] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(130)] = { + [sym_comment] = STATE(130), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(131)] = { + [sym_comment] = STATE(131), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -53963,9 +54637,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -54020,220 +54694,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(128)] = { - [sym_expr_parenthesized] = STATE(2728), - [sym__spread_parenthesized] = STATE(3085), - [sym_val_range] = STATE(3166), - [sym__val_range] = STATE(4446), - [sym__value] = STATE(3166), - [sym_val_nothing] = STATE(3180), - [sym_val_bool] = STATE(2876), - [sym__spread_variable] = STATE(3170), - [sym_val_variable] = STATE(2645), - [sym_val_cellpath] = STATE(3180), - [sym_val_number] = STATE(3180), - [sym__val_number_decimal] = STATE(2397), - [sym__val_number] = STATE(3203), - [sym_val_duration] = STATE(3180), - [sym_val_filesize] = STATE(3180), - [sym_val_binary] = STATE(3180), - [sym_val_string] = STATE(3180), - [sym__raw_str] = STATE(2472), - [sym__str_double_quotes] = STATE(2472), - [sym__str_single_quotes] = STATE(2472), - [sym__str_back_ticks] = STATE(2472), - [sym_val_interpolated] = STATE(3180), - [sym__inter_single_quotes] = STATE(3091), - [sym__inter_double_quotes] = STATE(3098), - [sym_val_list] = STATE(3180), - [sym__spread_list] = STATE(3085), - [sym_val_record] = STATE(3180), - [sym_val_table] = STATE(3180), - [sym_val_closure] = STATE(3180), - [sym__cmd_arg] = STATE(3176), - [sym_redirection] = STATE(3181), - [sym__flag] = STATE(3196), - [sym_short_flag] = STATE(3210), - [sym_long_flag] = STATE(3210), - [sym_unquoted] = STATE(2832), - [sym__unquoted_with_expr] = STATE(3150), - [sym__unquoted_anonymous_prefix] = STATE(4446), - [sym_comment] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_true] = ACTIONS(904), - [anon_sym_false] = ACTIONS(904), - [anon_sym_null] = ACTIONS(906), - [aux_sym_cmd_identifier_token3] = ACTIONS(908), - [aux_sym_cmd_identifier_token4] = ACTIONS(908), - [aux_sym_cmd_identifier_token5] = ACTIONS(908), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(910), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_DASH2] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(926), - [anon_sym_DOT_DOT_LT] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(928), - [aux_sym__val_number_decimal_token1] = ACTIONS(930), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [aux_sym__val_number_decimal_token3] = ACTIONS(932), - [aux_sym__val_number_decimal_token4] = ACTIONS(932), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(938), - [anon_sym_0x] = ACTIONS(938), - [sym_val_date] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_BQUOTE] = ACTIONS(946), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(952), - [anon_sym_err_GT] = ACTIONS(954), - [anon_sym_out_GT] = ACTIONS(954), - [anon_sym_e_GT] = ACTIONS(954), - [anon_sym_o_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT] = ACTIONS(954), - [anon_sym_err_GT_GT] = ACTIONS(954), - [anon_sym_out_GT_GT] = ACTIONS(954), - [anon_sym_e_GT_GT] = ACTIONS(954), - [anon_sym_o_GT_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), - [aux_sym_unquoted_token1] = ACTIONS(956), + [STATE(132)] = { + [sym_expr_parenthesized] = STATE(2783), + [sym__spread_parenthesized] = STATE(3225), + [sym_val_range] = STATE(3227), + [sym__val_range] = STATE(4603), + [sym__value] = STATE(3227), + [sym_val_nothing] = STATE(3215), + [sym_val_bool] = STATE(2940), + [sym__spread_variable] = STATE(3243), + [sym_val_variable] = STATE(2761), + [sym_val_cellpath] = STATE(3215), + [sym_val_number] = STATE(3215), + [sym__val_number_decimal] = STATE(2462), + [sym__val_number] = STATE(3231), + [sym_val_duration] = STATE(3215), + [sym_val_filesize] = STATE(3215), + [sym_val_binary] = STATE(3215), + [sym_val_string] = STATE(3215), + [sym__raw_str] = STATE(2536), + [sym__str_double_quotes] = STATE(2536), + [sym__str_single_quotes] = STATE(2536), + [sym__str_back_ticks] = STATE(2536), + [sym_val_interpolated] = STATE(3215), + [sym__inter_single_quotes] = STATE(3250), + [sym__inter_double_quotes] = STATE(3253), + [sym_val_list] = STATE(3215), + [sym__spread_list] = STATE(3225), + [sym_val_record] = STATE(3215), + [sym_val_table] = STATE(3215), + [sym_val_closure] = STATE(3215), + [sym__cmd_arg] = STATE(3254), + [sym_redirection] = STATE(3265), + [sym__flag] = STATE(3258), + [sym_short_flag] = STATE(3203), + [sym_long_flag] = STATE(3203), + [sym_unquoted] = STATE(2927), + [sym__unquoted_with_expr] = STATE(3204), + [sym__unquoted_anonymous_prefix] = STATE(4603), + [sym_comment] = STATE(132), + [ts_builtin_sym_end] = ACTIONS(882), + [anon_sym_true] = ACTIONS(924), + [anon_sym_false] = ACTIONS(924), + [anon_sym_null] = ACTIONS(926), + [aux_sym_cmd_identifier_token3] = ACTIONS(928), + [aux_sym_cmd_identifier_token4] = ACTIONS(928), + [aux_sym_cmd_identifier_token5] = ACTIONS(928), + [sym__newline] = ACTIONS(812), + [sym__space] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(812), + [anon_sym_err_GT_PIPE] = ACTIONS(812), + [anon_sym_out_GT_PIPE] = ACTIONS(812), + [anon_sym_e_GT_PIPE] = ACTIONS(812), + [anon_sym_o_GT_PIPE] = ACTIONS(812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(812), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [anon_sym_DOT_DOT_LT] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [anon_sym_0b] = ACTIONS(956), + [anon_sym_0o] = ACTIONS(958), + [anon_sym_0x] = ACTIONS(958), + [sym_val_date] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(964), + [anon_sym_BQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(974), + [anon_sym_out_GT] = ACTIONS(974), + [anon_sym_e_GT] = ACTIONS(974), + [anon_sym_o_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT] = ACTIONS(974), + [anon_sym_err_GT_GT] = ACTIONS(974), + [anon_sym_out_GT_GT] = ACTIONS(974), + [anon_sym_e_GT_GT] = ACTIONS(974), + [anon_sym_o_GT_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), + [aux_sym_unquoted_token1] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(958), + [sym_raw_string_begin] = ACTIONS(978), }, - [STATE(129)] = { - [sym_comment] = STATE(129), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [STATE(133)] = { + [sym_comment] = STATE(133), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(980), + [sym_duration_unit] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(130)] = { - [sym_comment] = STATE(130), + [STATE(134)] = { + [sym_comment] = STATE(134), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(984), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(135)] = { + [sym_comment] = STATE(135), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -54314,10 +55093,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(960), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(962), + [aux_sym__immediate_decimal_token5] = ACTIONS(890), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -54338,326 +55116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(131)] = { - [sym_comment] = STATE(131), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(964), - [aux_sym__immediate_decimal_token5] = ACTIONS(966), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(132)] = { - [sym_comment] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_SLASH_SLASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_bit_DASHshl] = ACTIONS(970), - [anon_sym_bit_DASHshr] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [anon_sym_BANG_TILDE] = ACTIONS(970), - [anon_sym_like] = ACTIONS(970), - [anon_sym_not_DASHlike] = ACTIONS(970), - [anon_sym_bit_DASHand] = ACTIONS(970), - [anon_sym_bit_DASHxor] = ACTIONS(970), - [anon_sym_bit_DASHor] = ACTIONS(970), - [anon_sym_and] = ACTIONS(970), - [anon_sym_xor] = ACTIONS(970), - [anon_sym_or] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_not_DASHin] = ACTIONS(970), - [anon_sym_has] = ACTIONS(970), - [anon_sym_not_DASHhas] = ACTIONS(970), - [anon_sym_starts_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(970), - [anon_sym_ends_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(980), - [sym_duration_unit] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(133)] = { - [sym_comment] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(134)] = { - [sym_comment] = STATE(134), + [STATE(136)] = { + [sym_comment] = STATE(136), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -54761,741 +55221,635 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(135)] = { - [sym_comment] = STATE(135), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(984), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(136)] = { - [sym_comment] = STATE(136), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(986), - [sym_duration_unit] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(137)] = { [sym_comment] = STATE(137), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(103), }, [STATE(138)] = { [sym_comment] = STATE(138), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(103), }, [STATE(139)] = { [sym_comment] = STATE(139), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(962), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(986), + [sym_duration_unit] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), [anon_sym_POUND] = ACTIONS(103), }, [STATE(140)] = { [sym_comment] = STATE(140), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(103), }, [STATE(141)] = { [sym_comment] = STATE(141), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(990), - [sym_duration_unit] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(103), }, [STATE(142)] = { [sym_comment] = STATE(142), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(990), + [sym_duration_unit] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(143)] = { + [sym_comment] = STATE(143), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -55598,1162 +55952,958 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(143)] = { - [sym_comment] = STATE(143), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(144)] = { [sym_comment] = STATE(144), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(145)] = { [sym_comment] = STATE(145), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_bit_DASHshl] = ACTIONS(1004), - [anon_sym_bit_DASHshr] = ACTIONS(1004), - [anon_sym_EQ_TILDE] = ACTIONS(1004), - [anon_sym_BANG_TILDE] = ACTIONS(1004), - [anon_sym_like] = ACTIONS(1004), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1004), - [anon_sym_not_DASHin] = ACTIONS(1004), - [anon_sym_has] = ACTIONS(1004), - [anon_sym_not_DASHhas] = ACTIONS(1004), - [anon_sym_starts_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), - [anon_sym_ends_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1004), - [anon_sym_BANG_EQ] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(146)] = { [sym_comment] = STATE(146), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_like] = ACTIONS(1006), + [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_has] = ACTIONS(1006), + [anon_sym_not_DASHhas] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1010), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(147)] = { [sym_comment] = STATE(147), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(148)] = { [sym_comment] = STATE(148), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(149)] = { [sym_comment] = STATE(149), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_like] = ACTIONS(1012), + [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_has] = ACTIONS(1012), + [anon_sym_not_DASHhas] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1012), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(150)] = { [sym_comment] = STATE(150), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_like] = ACTIONS(1012), + [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_has] = ACTIONS(1012), + [anon_sym_not_DASHhas] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1012), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(151)] = { [sym_comment] = STATE(151), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_bit_DASHshl] = ACTIONS(1004), - [anon_sym_bit_DASHshr] = ACTIONS(1004), - [anon_sym_EQ_TILDE] = ACTIONS(1004), - [anon_sym_BANG_TILDE] = ACTIONS(1004), - [anon_sym_like] = ACTIONS(1004), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1004), - [anon_sym_not_DASHin] = ACTIONS(1004), - [anon_sym_has] = ACTIONS(1004), - [anon_sym_not_DASHhas] = ACTIONS(1004), - [anon_sym_starts_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), - [anon_sym_ends_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1004), - [anon_sym_BANG_EQ] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [ts_builtin_sym_end] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_like] = ACTIONS(1006), + [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_has] = ACTIONS(1006), + [anon_sym_not_DASHhas] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1010), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(152)] = { - [sym_pipeline] = STATE(4430), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_pipeline_parenthesized] = STATE(4504), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(153)] = { - [sym_pipeline] = STATE(4585), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_pipeline_parenthesized] = STATE(4499), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(154)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -56768,9 +56918,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -56786,14 +56936,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56806,54 +56956,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(155)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(154)] = { + [sym_pipeline_parenthesized] = STATE(4502), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(154), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -56868,9 +57018,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -56886,14 +57036,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56906,54 +57056,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(155)] = { + [sym_comment] = STATE(155), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(156)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4168), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(156), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(276), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -56968,7 +57218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -56990,10 +57240,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57011,49 +57261,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(157)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4175), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(157), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(276), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57068,7 +57318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57090,10 +57340,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57111,49 +57361,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(158)] = { - [sym_pipeline] = STATE(4331), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4176), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(276), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57168,7 +57418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57190,10 +57440,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57211,49 +57461,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(159)] = { - [sym_pipeline_parenthesized] = STATE(4460), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_pipeline] = STATE(4206), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(159), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(276), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57268,9 +57518,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57286,14 +57536,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57306,54 +57556,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(160)] = { - [sym_pipeline] = STATE(4518), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_pipeline] = STATE(4211), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(161)] = { + [sym_pipeline] = STATE(4416), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(161), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -57382,7 +57732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57410,50 +57760,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(161)] = { - [sym_pipeline_parenthesized] = STATE(4589), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(161), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [STATE(162)] = { + [sym_pipeline] = STATE(4168), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(162), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57468,9 +57818,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57486,14 +57836,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57506,54 +57856,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(162)] = { - [sym_pipeline_parenthesized] = STATE(4592), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(162), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [STATE(163)] = { + [sym_pipeline] = STATE(4175), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57568,9 +57918,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57586,14 +57936,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57606,54 +57956,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(163)] = { - [sym_pipeline_parenthesized] = STATE(4616), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(163), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [STATE(164)] = { + [sym_pipeline] = STATE(4176), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(164), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57668,9 +58018,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57686,14 +58036,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57706,54 +58056,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(164)] = { - [sym_pipeline_parenthesized] = STATE(4617), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(164), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [STATE(165)] = { + [sym_pipeline] = STATE(4206), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(165), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57768,9 +58118,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57786,14 +58136,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57806,154 +58156,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(165)] = { - [sym_pipeline] = STATE(4409), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(165), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, [STATE(166)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4211), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57968,7 +58218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57990,10 +58240,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58011,49 +58261,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(167)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4469), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(168)] = { + [sym_pipeline_parenthesized] = STATE(4504), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(168), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58068,9 +58418,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58086,7 +58436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -58106,54 +58456,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(168)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(169)] = { + [sym_pipeline] = STATE(4168), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58168,7 +58518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58190,10 +58540,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58210,50 +58560,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(169)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(170)] = { + [sym_pipeline_parenthesized] = STATE(4540), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(170), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58268,9 +58618,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58286,7 +58636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -58306,454 +58656,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(170)] = { - [sym_pipeline] = STATE(4331), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(170), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(171)] = { - [sym_pipeline_parenthesized] = STATE(4589), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), [sym_comment] = STATE(171), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(172)] = { + [sym_pipeline] = STATE(4443), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), [sym_comment] = STATE(172), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(173)] = { + [sym_pipeline] = STATE(4438), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), [sym_comment] = STATE(173), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(174)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4175), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58768,7 +59018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58790,10 +59040,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58811,49 +59061,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(175)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4176), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58868,7 +59118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58890,10 +59140,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58911,49 +59161,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(176)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4206), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58968,7 +59218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58990,10 +59240,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59011,49 +59261,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(177)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4211), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59068,7 +59318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59090,10 +59340,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59111,149 +59361,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(178)] = { - [sym_pipeline] = STATE(4331), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline_parenthesized] = STATE(4499), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(179)] = { - [sym_pipeline_parenthesized] = STATE(4592), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59310,50 +59460,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(180)] = { - [sym_pipeline_parenthesized] = STATE(4460), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(180), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(179)] = { + [sym_pipeline_parenthesized] = STATE(4502), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(179), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59410,50 +59560,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(181)] = { - [sym_pipeline_parenthesized] = STATE(4616), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(180)] = { + [sym_pipeline_parenthesized] = STATE(4495), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(180), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59468,7 +59618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -59490,10 +59640,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59510,50 +59660,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(182)] = { - [sym_pipeline_parenthesized] = STATE(4617), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(181)] = { + [sym_pipeline_parenthesized] = STATE(4495), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(181), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59610,50 +59760,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(183)] = { - [sym_pipeline] = STATE(4412), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(182)] = { + [sym_pipeline] = STATE(4480), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(182), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -59682,7 +59832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -59710,148 +59860,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(184)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(185)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(183)] = { + [sym_pipeline_parenthesized] = STATE(4540), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(183), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59866,9 +59918,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59884,14 +59936,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59904,53 +59956,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(186)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(3228), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(186), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(280), + [STATE(184)] = { + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3333), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(184), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(1034), [anon_sym_alias] = ACTIONS(1037), [anon_sym_let] = ACTIONS(1037), @@ -60007,49 +60059,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1127), }, - [STATE(187)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2976), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(187), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [STATE(185)] = { + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3075), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(186)] = { + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3047), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(186), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60064,7 +60215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -60086,10 +60237,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60106,49 +60257,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(188)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(187)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2949), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60163,7 +60314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -60185,10 +60336,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60205,346 +60356,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(189)] = { - [sym_comment] = STATE(189), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(190)] = { - [sym_comment] = STATE(190), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(191)] = { - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2938), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(192)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2976), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(192), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(188)] = { + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3047), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(188), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60601,49 +60455,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(193)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(3227), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(193), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [STATE(189)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2949), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(190)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(3289), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(1130), [anon_sym_alias] = ACTIONS(1133), [anon_sym_let] = ACTIONS(1133), @@ -60700,44 +60653,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1223), }, + [STATE(191)] = { + [sym_comment] = STATE(191), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(192)] = { + [sym_comment] = STATE(192), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(193)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2949), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(193), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, [STATE(194)] = { - [sym_expr_parenthesized] = STATE(3738), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(3941), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(3848), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(3366), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), + [sym_expr_parenthesized] = STATE(3885), + [sym__spread_parenthesized] = STATE(3114), + [sym_val_range] = STATE(3117), + [sym__val_range] = STATE(4483), + [sym__value] = STATE(3117), + [sym_val_nothing] = STATE(3105), + [sym_val_bool] = STATE(3965), + [sym__spread_variable] = STATE(3118), + [sym_val_variable] = STATE(3920), + [sym_val_cellpath] = STATE(3105), + [sym_val_number] = STATE(3105), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(3106), + [sym_val_duration] = STATE(3105), + [sym_val_filesize] = STATE(3105), + [sym_val_binary] = STATE(3105), + [sym_val_string] = STATE(3105), + [sym__raw_str] = STATE(2499), + [sym__str_double_quotes] = STATE(2499), + [sym__str_single_quotes] = STATE(2499), + [sym__str_back_ticks] = STATE(2499), + [sym_val_interpolated] = STATE(3105), + [sym__inter_single_quotes] = STATE(3009), + [sym__inter_double_quotes] = STATE(3012), + [sym_val_list] = STATE(3105), + [sym__spread_list] = STATE(3114), + [sym_val_record] = STATE(3105), + [sym_val_table] = STATE(3105), + [sym_val_closure] = STATE(3105), + [sym__cmd_arg] = STATE(3119), + [sym_redirection] = STATE(2972), + [sym__flag] = STATE(3127), + [sym_short_flag] = STATE(2974), + [sym_long_flag] = STATE(2974), + [sym_unquoted] = STATE(2710), + [sym__unquoted_with_expr] = STATE(2979), + [sym__unquoted_anonymous_prefix] = STATE(4483), [sym_comment] = STATE(194), [anon_sym_true] = ACTIONS(1226), [anon_sym_false] = ACTIONS(1226), @@ -60745,93 +60995,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1230), [aux_sym_cmd_identifier_token4] = ACTIONS(1230), [aux_sym_cmd_identifier_token5] = ACTIONS(1230), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(799), + [sym__newline] = ACTIONS(812), + [sym__space] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(818), [anon_sym_DASH_DASH] = ACTIONS(1232), [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(824), [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(828), [anon_sym_DOT_DOT_EQ] = ACTIONS(1238), [anon_sym_DOT_DOT_LT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(832), [aux_sym__val_number_decimal_token1] = ACTIONS(1240), [aux_sym__val_number_decimal_token2] = ACTIONS(1240), [aux_sym__val_number_decimal_token3] = ACTIONS(1242), [aux_sym__val_number_decimal_token4] = ACTIONS(1242), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), + [aux_sym__val_number_token1] = ACTIONS(838), + [aux_sym__val_number_token2] = ACTIONS(838), + [aux_sym__val_number_token3] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(840), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), [sym_val_date] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(856), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [aux_sym_unquoted_token1] = ACTIONS(862), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), + [sym_raw_string_begin] = ACTIONS(864), }, [STATE(195)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(262), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3315), + [sym__expression_parenthesized] = STATE(3315), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3315), [sym_comment] = STATE(195), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -60847,32 +61097,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60890,41 +61140,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(196)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(222), + [sym_ctrl_if_parenthesized] = STATE(3386), + [sym_block] = STATE(3391), + [sym__expression_parenthesized] = STATE(3391), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3391), [sym_comment] = STATE(196), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -60946,26 +61196,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60983,41 +61233,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(197)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(225), + [sym_ctrl_if_parenthesized] = STATE(3338), + [sym_block] = STATE(3353), + [sym__expression_parenthesized] = STATE(3353), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3353), [sym_comment] = STATE(197), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61039,26 +61289,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61076,41 +61326,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(198)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(203), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(201), + [sym_ctrl_if_parenthesized] = STATE(3386), + [sym_block] = STATE(3391), + [sym__expression_parenthesized] = STATE(3391), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3391), [sym_comment] = STATE(198), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61126,32 +61376,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61169,41 +61419,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(199)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(204), + [sym_ctrl_if_parenthesized] = STATE(3338), + [sym_block] = STATE(3353), + [sym__expression_parenthesized] = STATE(3353), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3353), [sym_comment] = STATE(199), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61219,32 +61469,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61262,41 +61512,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(200)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(206), + [sym_ctrl_if_parenthesized] = STATE(3373), + [sym_block] = STATE(3380), + [sym__expression_parenthesized] = STATE(3380), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3380), [sym_comment] = STATE(200), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61312,32 +61562,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61355,41 +61605,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(201)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(204), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3343), + [sym_block] = STATE(3288), + [sym__expression_parenthesized] = STATE(3288), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3288), [sym_comment] = STATE(201), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61405,32 +61655,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61448,41 +61698,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(202)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(208), + [sym_ctrl_if_parenthesized] = STATE(3343), + [sym_block] = STATE(3288), + [sym__expression_parenthesized] = STATE(3288), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3288), [sym_comment] = STATE(202), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61498,32 +61748,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61541,41 +61791,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(203)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(210), + [sym_ctrl_if_parenthesized] = STATE(3332), + [sym_block] = STATE(3334), + [sym__expression_parenthesized] = STATE(3334), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3334), [sym_comment] = STATE(203), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61591,32 +61841,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61634,41 +61884,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(204)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3404), [sym_comment] = STATE(204), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61684,32 +61934,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61727,41 +61977,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(205)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(202), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(195), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3404), [sym_comment] = STATE(205), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61777,32 +62027,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61820,41 +62070,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(206)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(209), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3282), + [sym_block] = STATE(3296), + [sym__expression_parenthesized] = STATE(3296), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3296), [sym_comment] = STATE(206), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61870,32 +62120,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61913,41 +62163,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(207)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(212), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(213), + [sym_ctrl_if_parenthesized] = STATE(3282), + [sym_block] = STATE(3296), + [sym__expression_parenthesized] = STATE(3296), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3296), [sym_comment] = STATE(207), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61963,32 +62213,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62006,41 +62256,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(208)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(214), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3297), + [sym__expression_parenthesized] = STATE(3297), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3297), [sym_comment] = STATE(208), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62056,32 +62306,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62099,41 +62349,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(209)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(215), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3297), + [sym__expression_parenthesized] = STATE(3297), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3297), [sym_comment] = STATE(209), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62149,32 +62399,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62192,41 +62442,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(210)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(216), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3385), + [sym_block] = STATE(3387), + [sym__expression_parenthesized] = STATE(3387), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3387), [sym_comment] = STATE(210), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62242,32 +62492,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62285,41 +62535,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(211)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(218), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(216), + [sym_ctrl_if_parenthesized] = STATE(3385), + [sym_block] = STATE(3387), + [sym__expression_parenthesized] = STATE(3387), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3387), [sym_comment] = STATE(211), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62335,32 +62585,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62378,41 +62628,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(212)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(218), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3315), + [sym__expression_parenthesized] = STATE(3315), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3315), [sym_comment] = STATE(212), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62428,32 +62678,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62471,41 +62721,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(213)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(220), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3330), + [sym_block] = STATE(3339), + [sym__expression_parenthesized] = STATE(3339), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3339), [sym_comment] = STATE(213), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62521,32 +62771,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62564,41 +62814,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(214)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(219), + [sym_ctrl_if_parenthesized] = STATE(3330), + [sym_block] = STATE(3339), + [sym__expression_parenthesized] = STATE(3339), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3339), [sym_comment] = STATE(214), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62614,32 +62864,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62657,41 +62907,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(215)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(222), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3346), + [sym_block] = STATE(3322), + [sym__expression_parenthesized] = STATE(3322), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3322), [sym_comment] = STATE(215), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62707,32 +62957,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62750,41 +63000,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(216)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3275), + [sym_block] = STATE(3364), + [sym__expression_parenthesized] = STATE(3364), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3364), [sym_comment] = STATE(216), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62800,32 +63050,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62843,41 +63093,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(217)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(224), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(220), + [sym_ctrl_if_parenthesized] = STATE(3275), + [sym_block] = STATE(3364), + [sym__expression_parenthesized] = STATE(3364), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3364), [sym_comment] = STATE(217), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62893,24 +63143,396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(218)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3274), + [sym_block] = STATE(3313), + [sym__expression_parenthesized] = STATE(3313), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3313), + [sym_comment] = STATE(218), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(219)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3325), + [sym_block] = STATE(3326), + [sym__expression_parenthesized] = STATE(3326), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3326), + [sym_comment] = STATE(219), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(220)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3361), + [sym_block] = STATE(3360), + [sym__expression_parenthesized] = STATE(3360), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3360), + [sym_comment] = STATE(220), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(221)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(227), + [sym_ctrl_if_parenthesized] = STATE(3373), + [sym_block] = STATE(3380), + [sym__expression_parenthesized] = STATE(3380), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3380), + [sym_comment] = STATE(221), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -62935,43 +63557,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(218)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(222)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3343), + [sym_block] = STATE(3288), + [sym__expression_parenthesized] = STATE(3288), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), - [sym_comment] = STATE(218), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3288), + [sym_comment] = STATE(222), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -62986,24 +63608,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -63028,43 +63650,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(219)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(225), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(223)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(229), + [sym_ctrl_if_parenthesized] = STATE(3343), + [sym_block] = STATE(3288), + [sym__expression_parenthesized] = STATE(3288), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), - [sym_comment] = STATE(219), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3288), + [sym_comment] = STATE(223), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -63079,24 +63701,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -63121,229 +63743,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(220)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), - [sym_comment] = STATE(220), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(221)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(227), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), - [sym_comment] = STATE(221), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(222)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(224)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(231), + [sym_ctrl_if_parenthesized] = STATE(3332), + [sym_block] = STATE(3334), + [sym__expression_parenthesized] = STATE(3334), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), - [sym_comment] = STATE(222), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3334), + [sym_comment] = STATE(224), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -63358,24 +63794,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -63400,43 +63836,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(223)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(228), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(225)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), - [sym_comment] = STATE(223), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3404), + [sym_comment] = STATE(225), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -63451,24 +63887,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -63493,43 +63929,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(224)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(226)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(256), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), - [sym_comment] = STATE(224), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3404), + [sym_comment] = STATE(226), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -63544,24 +63980,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -63586,43 +64022,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(225)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(227)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3282), + [sym_block] = STATE(3296), + [sym__expression_parenthesized] = STATE(3296), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), - [sym_comment] = STATE(225), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3296), + [sym_comment] = STATE(227), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -63637,24 +64073,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -63679,43 +64115,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(226)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(229), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(228)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(258), + [sym_ctrl_if_parenthesized] = STATE(3282), + [sym_block] = STATE(3296), + [sym__expression_parenthesized] = STATE(3296), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), - [sym_comment] = STATE(226), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3296), + [sym_comment] = STATE(228), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -63730,24 +64166,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -63772,43 +64208,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(227)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(229)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3297), + [sym__expression_parenthesized] = STATE(3297), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), - [sym_comment] = STATE(227), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3297), + [sym_comment] = STATE(229), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -63823,24 +64259,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -63865,43 +64301,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(228)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(230)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(260), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3297), + [sym__expression_parenthesized] = STATE(3297), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), - [sym_comment] = STATE(228), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3297), + [sym_comment] = STATE(230), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -63916,24 +64352,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -63958,43 +64394,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(229)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(231)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3385), + [sym_block] = STATE(3387), + [sym__expression_parenthesized] = STATE(3387), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), - [sym_comment] = STATE(229), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3387), + [sym_comment] = STATE(231), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64009,24 +64445,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64051,43 +64487,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(230)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(232)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(234), + [sym_ctrl_if_parenthesized] = STATE(3386), + [sym_block] = STATE(3391), + [sym__expression_parenthesized] = STATE(3391), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), - [sym_comment] = STATE(230), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3391), + [sym_comment] = STATE(232), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64102,32 +64538,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64144,43 +64580,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(231)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(266), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(233)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(239), + [sym_ctrl_if_parenthesized] = STATE(3373), + [sym_block] = STATE(3380), + [sym__expression_parenthesized] = STATE(3380), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), - [sym_comment] = STATE(231), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3380), + [sym_comment] = STATE(233), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64195,24 +64631,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64237,43 +64673,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(232)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(237), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(234)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3343), + [sym_block] = STATE(3288), + [sym__expression_parenthesized] = STATE(3288), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), - [sym_comment] = STATE(232), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3288), + [sym_comment] = STATE(234), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64288,24 +64724,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64330,43 +64766,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(233)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(239), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(235)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(241), + [sym_ctrl_if_parenthesized] = STATE(3343), + [sym_block] = STATE(3288), + [sym__expression_parenthesized] = STATE(3288), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), - [sym_comment] = STATE(233), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3288), + [sym_comment] = STATE(235), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64381,24 +64817,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64423,43 +64859,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(234)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(200), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(236)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(243), + [sym_ctrl_if_parenthesized] = STATE(3332), + [sym_block] = STATE(3334), + [sym__expression_parenthesized] = STATE(3334), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), - [sym_comment] = STATE(234), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3334), + [sym_comment] = STATE(236), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64474,32 +64910,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64516,43 +64952,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(235)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(241), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(237)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), - [sym_comment] = STATE(235), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3404), + [sym_comment] = STATE(237), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64567,24 +65003,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64609,43 +65045,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(236)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(243), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(238)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(245), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), - [sym_comment] = STATE(236), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3404), + [sym_comment] = STATE(238), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64660,24 +65096,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64702,43 +65138,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(237)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(239)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3282), + [sym_block] = STATE(3296), + [sym__expression_parenthesized] = STATE(3296), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), - [sym_comment] = STATE(237), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3296), + [sym_comment] = STATE(239), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64753,24 +65189,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64795,43 +65231,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(238)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(245), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(240)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(247), + [sym_ctrl_if_parenthesized] = STATE(3282), + [sym_block] = STATE(3296), + [sym__expression_parenthesized] = STATE(3296), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), - [sym_comment] = STATE(238), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3296), + [sym_comment] = STATE(240), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64846,24 +65282,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64888,43 +65324,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(239)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(241)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3297), + [sym__expression_parenthesized] = STATE(3297), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), - [sym_comment] = STATE(239), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3297), + [sym_comment] = STATE(241), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64939,24 +65375,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64981,43 +65417,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(240)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(247), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(242)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(249), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3297), + [sym__expression_parenthesized] = STATE(3297), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), - [sym_comment] = STATE(240), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3297), + [sym_comment] = STATE(242), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65032,24 +65468,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65074,43 +65510,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(241)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(243)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3385), + [sym_block] = STATE(3387), + [sym__expression_parenthesized] = STATE(3387), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), - [sym_comment] = STATE(241), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3387), + [sym_comment] = STATE(243), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65125,24 +65561,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65167,43 +65603,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(242)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(249), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(244)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(250), + [sym_ctrl_if_parenthesized] = STATE(3385), + [sym_block] = STATE(3387), + [sym__expression_parenthesized] = STATE(3387), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), - [sym_comment] = STATE(242), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3387), + [sym_comment] = STATE(244), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65218,24 +65654,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65260,43 +65696,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(243)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(245)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3315), + [sym__expression_parenthesized] = STATE(3315), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), - [sym_comment] = STATE(243), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3315), + [sym_comment] = STATE(245), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65311,24 +65747,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65353,43 +65789,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(244)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(250), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(246)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(252), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3315), + [sym__expression_parenthesized] = STATE(3315), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), - [sym_comment] = STATE(244), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3315), + [sym_comment] = STATE(246), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65404,24 +65840,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65446,43 +65882,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(245)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(247)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3330), + [sym_block] = STATE(3339), + [sym__expression_parenthesized] = STATE(3339), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), - [sym_comment] = STATE(245), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3339), + [sym_comment] = STATE(247), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65497,24 +65933,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65539,43 +65975,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(246)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(252), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(248)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(253), + [sym_ctrl_if_parenthesized] = STATE(3330), + [sym_block] = STATE(3339), + [sym__expression_parenthesized] = STATE(3339), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), - [sym_comment] = STATE(246), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3339), + [sym_comment] = STATE(248), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65590,210 +66026,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(247)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), - [sym_comment] = STATE(247), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(248)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(253), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), - [sym_comment] = STATE(248), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65819,41 +66069,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(249)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3346), + [sym_block] = STATE(3322), + [sym__expression_parenthesized] = STATE(3322), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3322), [sym_comment] = STATE(249), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65869,24 +66119,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65912,41 +66162,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(250)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3275), + [sym_block] = STATE(3364), + [sym__expression_parenthesized] = STATE(3364), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3364), [sym_comment] = STATE(250), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65962,24 +66212,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66005,41 +66255,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(251)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2881), [aux_sym__repeat_newline] = STATE(254), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_ctrl_if_parenthesized] = STATE(3275), + [sym_block] = STATE(3364), + [sym__expression_parenthesized] = STATE(3364), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3364), [sym_comment] = STATE(251), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66055,24 +66305,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66098,41 +66348,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(252)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3274), + [sym_block] = STATE(3313), + [sym__expression_parenthesized] = STATE(3313), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3313), [sym_comment] = STATE(252), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66148,24 +66398,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66191,41 +66441,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(253)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3325), + [sym_block] = STATE(3326), + [sym__expression_parenthesized] = STATE(3326), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3326), [sym_comment] = STATE(253), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66241,24 +66491,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66284,41 +66534,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(254)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3361), + [sym_block] = STATE(3360), + [sym__expression_parenthesized] = STATE(3360), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3360), [sym_comment] = STATE(254), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66334,24 +66584,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66377,41 +66627,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(255)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(257), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(261), + [sym_ctrl_if_parenthesized] = STATE(3385), + [sym_block] = STATE(3387), + [sym__expression_parenthesized] = STATE(3387), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3387), [sym_comment] = STATE(255), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66433,26 +66683,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66470,41 +66720,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(256)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(260), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3315), + [sym__expression_parenthesized] = STATE(3315), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3315), [sym_comment] = STATE(256), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66526,26 +66776,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66563,41 +66813,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(257)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(263), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3315), + [sym__expression_parenthesized] = STATE(3315), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3315), [sym_comment] = STATE(257), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66619,26 +66869,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66656,41 +66906,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(258)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(264), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_block] = STATE(3339), + [sym__expression_parenthesized] = STATE(3339), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3339), [sym_comment] = STATE(258), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66712,26 +66962,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66749,41 +66999,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(259)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(196), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(264), + [sym_ctrl_if_parenthesized] = STATE(3330), + [sym_block] = STATE(3339), + [sym__expression_parenthesized] = STATE(3339), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3339), [sym_comment] = STATE(259), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66805,26 +67055,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66842,41 +67092,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(260)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3346), + [sym_block] = STATE(3322), + [sym__expression_parenthesized] = STATE(3322), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3322), [sym_comment] = STATE(260), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66898,26 +67148,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66935,41 +67185,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(261)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(197), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3275), + [sym_block] = STATE(3364), + [sym__expression_parenthesized] = STATE(3364), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3364), [sym_comment] = STATE(261), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66991,26 +67241,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67028,41 +67278,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(262)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(265), + [sym_ctrl_if_parenthesized] = STATE(3275), + [sym_block] = STATE(3364), + [sym__expression_parenthesized] = STATE(3364), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3364), [sym_comment] = STATE(262), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67084,26 +67334,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67121,41 +67371,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(263)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(230), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3274), + [sym_block] = STATE(3313), + [sym__expression_parenthesized] = STATE(3313), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3313), [sym_comment] = STATE(263), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67177,26 +67427,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67214,41 +67464,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(264)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3325), + [sym_block] = STATE(3326), + [sym__expression_parenthesized] = STATE(3326), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3326), [sym_comment] = STATE(264), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67270,26 +67520,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67307,41 +67557,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(265)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(199), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3361), + [sym_block] = STATE(3360), + [sym__expression_parenthesized] = STATE(3360), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3360), [sym_comment] = STATE(265), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67363,26 +67613,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67400,41 +67650,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(266)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(237), + [sym_ctrl_if_parenthesized] = STATE(3338), + [sym_block] = STATE(3353), + [sym__expression_parenthesized] = STATE(3353), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3353), [sym_comment] = STATE(266), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67450,24 +67700,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -67494,94 +67744,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(267)] = { [sym_comment] = STATE(267), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(1276), [aux_sym__immediate_decimal_token5] = ACTIONS(1278), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, [STATE(268)] = { @@ -67862,98 +68112,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(271)] = { [sym_comment] = STATE(271), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1292), - [aux_sym__immediate_decimal_token5] = ACTIONS(1294), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(272)] = { - [sym_comment] = STATE(272), [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), @@ -68036,380 +68194,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1296), + [anon_sym_DOT] = ACTIONS(1292), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1298), + [aux_sym__immediate_decimal_token5] = ACTIONS(1294), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(273)] = { - [sym_comment] = STATE(273), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1300), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(274)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(274), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(275)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(275), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(276)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(307), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(276), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1304), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(277)] = { - [sym_comment] = STATE(277), + [STATE(272)] = { + [sym_comment] = STATE(272), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -68459,6 +68253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -68491,107 +68286,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_DOT] = ACTIONS(1296), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1310), + [aux_sym__immediate_decimal_token5] = ACTIONS(1298), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(278)] = { - [sym_comment] = STATE(278), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1312), - [aux_sym__immediate_decimal_token5] = ACTIONS(1314), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(279)] = { - [sym_comment] = STATE(279), + [STATE(273)] = { + [sym_comment] = STATE(273), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -68676,47 +68380,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1278), + [aux_sym__immediate_decimal_token5] = ACTIONS(1298), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(280)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(280), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [STATE(274)] = { + [sym_cmd_identifier] = STATE(2914), + [sym__expression_parenthesized] = STATE(2261), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3283), + [sym_comment] = STATE(274), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68752,10 +68456,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1318), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_decimal_token4] = ACTIONS(1320), + [aux_sym__val_number_decimal_token1] = ACTIONS(1300), + [aux_sym__val_number_decimal_token2] = ACTIONS(1302), + [aux_sym__val_number_decimal_token3] = ACTIONS(1304), + [aux_sym__val_number_decimal_token4] = ACTIONS(1304), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68768,104 +68472,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(281)] = { - [sym_cmd_identifier] = STATE(2895), - [sym__expression] = STATE(2262), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3334), - [sym_comment] = STATE(281), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(39), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(39), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(282)] = { - [sym_comment] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(741), + [STATE(275)] = { + [sym_comment] = STATE(275), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -68913,6 +68525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), @@ -68949,47 +68562,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1298), + [aux_sym__immediate_decimal_token5] = ACTIONS(1286), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(283)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(283), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), + [STATE(276)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__expression] = STATE(2258), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3211), + [sym_comment] = STATE(276), + [aux_sym_pipe_element_repeat2] = STATE(1388), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69041,137 +68654,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(284)] = { - [sym_comment] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1322), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(285)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(285), + [STATE(277)] = { + [sym_cmd_identifier] = STATE(2881), + [sym_ctrl_if] = STATE(3172), + [sym_block] = STATE(3173), + [sym__expression] = STATE(3173), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3173), + [sym_comment] = STATE(277), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69186,31 +68708,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1306), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69227,8 +68749,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(286)] = { - [sym_comment] = STATE(286), + [STATE(278)] = { + [sym_cmd_identifier] = STATE(2914), + [sym__expression_parenthesized] = STATE(2261), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3283), + [sym_comment] = STATE(278), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(279)] = { + [sym_cmd_identifier] = STATE(2914), + [sym__expression_parenthesized] = STATE(2261), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3283), + [sym_comment] = STATE(279), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(280)] = { + [sym_comment] = STATE(280), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -69276,7 +68981,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), @@ -69313,47 +69017,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1286), + [aux_sym__immediate_decimal_token5] = ACTIONS(1294), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(287)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(287), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [STATE(281)] = { + [sym_cmd_identifier] = STATE(2881), + [sym_ctrl_if] = STATE(3172), + [sym_block] = STATE(3173), + [sym__expression] = STATE(3173), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3173), + [sym_comment] = STATE(281), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(282)] = { + [sym_cmd_identifier] = STATE(3073), + [sym_ctrl_if] = STATE(3372), + [sym_block] = STATE(3286), + [sym__expression] = STATE(3286), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_command] = STATE(3286), + [sym_comment] = STATE(282), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(39), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(39), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(1308), + [anon_sym_false] = ACTIONS(1308), + [anon_sym_null] = ACTIONS(1310), + [aux_sym_cmd_identifier_token3] = ACTIONS(1312), + [aux_sym_cmd_identifier_token4] = ACTIONS(1312), + [aux_sym_cmd_identifier_token5] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_DOT_DOT] = ACTIONS(69), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(1316), + [aux_sym__val_number_decimal_token2] = ACTIONS(1318), + [aux_sym__val_number_decimal_token3] = ACTIONS(1320), + [aux_sym__val_number_decimal_token4] = ACTIONS(1320), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(283)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__expression] = STATE(2258), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3211), + [sym_comment] = STATE(283), + [aux_sym_pipe_element_repeat2] = STATE(1388), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69389,10 +69275,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69409,42 +69295,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(288)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(288), + [STATE(284)] = { + [sym_cmd_identifier] = STATE(2881), + [sym_ctrl_if] = STATE(3172), + [sym_block] = STATE(3173), + [sym__expression] = STATE(3173), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3173), + [sym_comment] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69465,17 +69351,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -69500,42 +69386,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(289)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(289), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), + [STATE(285)] = { + [sym_comment] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1322), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(286)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__expression] = STATE(2258), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3211), + [sym_comment] = STATE(286), + [aux_sym_pipe_element_repeat2] = STATE(1388), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69571,10 +69548,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1318), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_decimal_token4] = ACTIONS(1320), + [aux_sym__val_number_decimal_token1] = ACTIONS(1300), + [aux_sym__val_number_decimal_token2] = ACTIONS(1302), + [aux_sym__val_number_decimal_token3] = ACTIONS(1304), + [aux_sym__val_number_decimal_token4] = ACTIONS(1304), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69587,46 +69564,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(290)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(290), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [STATE(287)] = { + [sym_comment] = STATE(287), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1324), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(288)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__expression] = STATE(2258), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3211), + [sym_comment] = STATE(288), + [aux_sym_pipe_element_repeat2] = STATE(1388), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69662,10 +69730,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69682,133 +69750,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(291)] = { - [sym_cmd_identifier] = STATE(2929), - [sym_ctrl_if] = STATE(3301), - [sym_block] = STATE(3302), - [sym__expression] = STATE(3302), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_command] = STATE(3302), - [sym_comment] = STATE(291), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(39), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [anon_sym_null] = ACTIONS(1328), - [aux_sym_cmd_identifier_token3] = ACTIONS(1330), - [aux_sym_cmd_identifier_token4] = ACTIONS(1330), - [aux_sym_cmd_identifier_token5] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(69), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [STATE(289)] = { + [sym_comment] = STATE(289), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1326), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(292)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(292), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [STATE(290)] = { + [sym_cmd_identifier] = STATE(2881), + [sym_ctrl_if] = STATE(3172), + [sym_block] = STATE(3173), + [sym__expression] = STATE(3173), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(297), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3173), + [sym_comment] = STATE(290), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69823,31 +69891,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1328), + [aux_sym__val_number_decimal_token2] = ACTIONS(1330), + [aux_sym__val_number_decimal_token3] = ACTIONS(1332), + [aux_sym__val_number_decimal_token4] = ACTIONS(1332), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69864,189 +69932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(293)] = { - [sym_comment] = STATE(293), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1340), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(294)] = { - [sym_comment] = STATE(294), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1342), - [sym_duration_unit] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(295)] = { - [sym_comment] = STATE(295), + [STATE(291)] = { + [sym_comment] = STATE(291), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -70128,15 +70015,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(1334), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1310), + [aux_sym__immediate_decimal_token5] = ACTIONS(1336), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(296)] = { - [sym_comment] = STATE(296), + [STATE(292)] = { + [sym_comment] = STATE(292), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70174,6 +70062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(749), [aux_sym_cmd_identifier_token6] = ACTIONS(747), [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), [anon_sym_PIPE] = ACTIONS(747), [anon_sym_err_GT_PIPE] = ACTIONS(747), [anon_sym_out_GT_PIPE] = ACTIONS(747), @@ -70219,14 +70108,645 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1346), - [aux_sym__immediate_decimal_token5] = ACTIONS(1348), + [aux_sym__immediate_decimal_token1] = ACTIONS(1338), + [aux_sym__immediate_decimal_token5] = ACTIONS(1340), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(293)] = { + [sym_cmd_identifier] = STATE(2923), + [sym__expression] = STATE(2259), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3287), + [sym_comment] = STATE(293), + [aux_sym_pipe_element_repeat2] = STATE(1388), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(39), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(39), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(39), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(294)] = { + [sym_comment] = STATE(294), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(295)] = { + [sym_comment] = STATE(295), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(296)] = { + [sym_comment] = STATE(296), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(297)] = { [sym_comment] = STATE(297), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1342), + [sym_duration_unit] = ACTIONS(1344), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(298)] = { + [sym_comment] = STATE(298), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1346), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(299)] = { + [sym_comment] = STATE(299), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(300)] = { + [sym_comment] = STATE(300), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70315,99 +70835,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(298)] = { - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [STATE(301)] = { + [sym_comment] = STATE(301), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1348), + [sym_duration_unit] = ACTIONS(1350), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(299)] = { - [sym_comment] = STATE(299), - [ts_builtin_sym_end] = ACTIONS(749), + [STATE(302)] = { + [sym_comment] = STATE(302), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(303)] = { + [sym_comment] = STATE(303), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(304)] = { + [sym_comment] = STATE(304), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(1352), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1354), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(305)] = { + [sym_comment] = STATE(305), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70445,7 +71234,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(749), [aux_sym_cmd_identifier_token6] = ACTIONS(747), [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), [anon_sym_PIPE] = ACTIONS(747), [anon_sym_err_GT_PIPE] = ACTIONS(747), [anon_sym_out_GT_PIPE] = ACTIONS(747), @@ -70491,372 +71279,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(1356), + [aux_sym__immediate_decimal_token5] = ACTIONS(1358), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(300)] = { - [sym_comment] = STATE(300), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(301)] = { - [sym_comment] = STATE(301), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(302)] = { - [sym_comment] = STATE(302), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(303)] = { - [sym_comment] = STATE(303), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [STATE(306)] = { + [sym_comment] = STATE(306), + [ts_builtin_sym_end] = ACTIONS(908), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_SLASH] = ACTIONS(912), + [anon_sym_mod] = ACTIONS(910), + [anon_sym_SLASH_SLASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_bit_DASHshl] = ACTIONS(910), + [anon_sym_bit_DASHshr] = ACTIONS(910), + [anon_sym_EQ_TILDE] = ACTIONS(910), + [anon_sym_BANG_TILDE] = ACTIONS(910), + [anon_sym_like] = ACTIONS(910), + [anon_sym_not_DASHlike] = ACTIONS(910), + [anon_sym_bit_DASHand] = ACTIONS(910), + [anon_sym_bit_DASHxor] = ACTIONS(910), + [anon_sym_bit_DASHor] = ACTIONS(910), + [anon_sym_and] = ACTIONS(910), + [anon_sym_xor] = ACTIONS(910), + [anon_sym_or] = ACTIONS(910), + [anon_sym_in2] = ACTIONS(910), + [anon_sym_not_DASHin] = ACTIONS(910), + [anon_sym_has] = ACTIONS(910), + [anon_sym_not_DASHhas] = ACTIONS(910), + [anon_sym_starts_DASHwith] = ACTIONS(910), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(910), + [anon_sym_ends_DASHwith] = ACTIONS(910), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(910), + [anon_sym_EQ_EQ] = ACTIONS(910), + [anon_sym_BANG_EQ] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(912), + [anon_sym_LT_EQ] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(912), + [anon_sym_GT_EQ] = ACTIONS(910), + [aux_sym_cmd_identifier_token6] = ACTIONS(914), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(916), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), + [anon_sym_DOT_DOT_LT2] = ACTIONS(918), + [sym_filesize_unit] = ACTIONS(1360), + [sym_duration_unit] = ACTIONS(1362), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(304)] = { - [sym_comment] = STATE(304), + [STATE(307)] = { + [sym_comment] = STATE(307), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70945,276 +71465,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(305)] = { - [sym_comment] = STATE(305), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(306)] = { - [sym_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_SLASH_SLASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_bit_DASHshl] = ACTIONS(970), - [anon_sym_bit_DASHshr] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [anon_sym_BANG_TILDE] = ACTIONS(970), - [anon_sym_like] = ACTIONS(970), - [anon_sym_not_DASHlike] = ACTIONS(970), - [anon_sym_bit_DASHand] = ACTIONS(970), - [anon_sym_bit_DASHxor] = ACTIONS(970), - [anon_sym_bit_DASHor] = ACTIONS(970), - [anon_sym_and] = ACTIONS(970), - [anon_sym_xor] = ACTIONS(970), - [anon_sym_or] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_not_DASHin] = ACTIONS(970), - [anon_sym_has] = ACTIONS(970), - [anon_sym_not_DASHhas] = ACTIONS(970), - [anon_sym_starts_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(970), - [anon_sym_ends_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(1350), - [sym_duration_unit] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(307)] = { - [sym_comment] = STATE(307), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1354), - [sym_duration_unit] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(308)] = { [sym_comment] = STATE(308), [anon_sym_in] = ACTIONS(739), @@ -71254,6 +71504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(741), [aux_sym_cmd_identifier_token6] = ACTIONS(739), [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), [anon_sym_PIPE] = ACTIONS(739), [anon_sym_err_GT_PIPE] = ACTIONS(739), [anon_sym_out_GT_PIPE] = ACTIONS(739), @@ -71297,462 +71548,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1358), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1360), + [aux_sym__immediate_decimal_token5] = ACTIONS(1336), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, [STATE(309)] = { [sym_comment] = STATE(309), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1362), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(310)] = { - [sym_comment] = STATE(310), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1364), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(311)] = { - [sym_comment] = STATE(311), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1366), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(312)] = { - [sym_comment] = STATE(312), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(313)] = { - [sym_comment] = STATE(313), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(314)] = { - [sym_comment] = STATE(314), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -71840,8 +71645,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(315)] = { - [sym_comment] = STATE(315), + [STATE(310)] = { + [sym_comment] = STATE(310), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -71924,189 +71729,722 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1360), + [aux_sym__immediate_decimal_token5] = ACTIONS(1354), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(311)] = { + [sym_comment] = STATE(311), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(312)] = { + [sym_comment] = STATE(312), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(313)] = { + [sym_comment] = STATE(313), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(314)] = { + [sym_comment] = STATE(314), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1364), + [sym_duration_unit] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(315)] = { + [sym_comment] = STATE(315), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1368), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(316)] = { [sym_comment] = STATE(316), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1370), + [sym_duration_unit] = ACTIONS(1372), [anon_sym_POUND] = ACTIONS(103), }, [STATE(317)] = { [sym_comment] = STATE(317), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), [anon_sym_POUND] = ACTIONS(103), }, [STATE(318)] = { [sym_comment] = STATE(318), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(319)] = { + [sym_comment] = STATE(319), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -72193,142 +72531,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(319)] = { - [sym_comment] = STATE(319), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(320)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4980), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4124), + [sym__match_pattern_expression] = STATE(4389), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list_body] = STATE(4642), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_rest] = STATE(5226), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3878), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4411), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4412), + [sym_val_bool] = STATE(3969), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3882), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4412), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4412), + [sym_val_filesize] = STATE(4412), + [sym_val_binary] = STATE(4412), + [sym_val_string] = STATE(4412), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5258), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3675), + [sym_val_table] = STATE(4412), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(3883), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(320), [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4025), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), + [aux_sym_parameter_repeat2] = STATE(3979), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1412), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), @@ -72369,53 +72619,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(321)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5080), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4124), + [sym__match_pattern_expression] = STATE(4389), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list_body] = STATE(4642), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_rest] = STATE(5226), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3878), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4411), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4412), + [sym_val_bool] = STATE(3969), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3882), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4412), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4412), + [sym_val_filesize] = STATE(4412), + [sym_val_binary] = STATE(4412), + [sym_val_string] = STATE(4412), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4869), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3675), + [sym_val_table] = STATE(4412), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(3883), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(321), [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4025), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), + [aux_sym_parameter_repeat2] = STATE(3979), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1412), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), @@ -72456,53 +72706,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(322)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5047), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4124), + [sym__match_pattern_expression] = STATE(4389), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list_body] = STATE(4642), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_rest] = STATE(5226), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3878), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4411), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4412), + [sym_val_bool] = STATE(3969), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3882), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4412), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4412), + [sym_val_filesize] = STATE(4412), + [sym_val_binary] = STATE(4412), + [sym_val_string] = STATE(4412), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5031), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3675), + [sym_val_table] = STATE(4412), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(3883), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(322), [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4025), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), + [aux_sym_parameter_repeat2] = STATE(3979), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1412), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), @@ -72545,852 +72795,931 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(323)] = { [sym_comment] = STATE(323), [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_like] = ACTIONS(1006), + [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_has] = ACTIONS(1006), + [anon_sym_not_DASHhas] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1010), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(324)] = { [sym_comment] = STATE(324), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(325)] = { [sym_comment] = STATE(325), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(326)] = { [sym_comment] = STATE(326), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(327)] = { [sym_comment] = STATE(327), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(328)] = { [sym_comment] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_like] = ACTIONS(1006), + [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_has] = ACTIONS(1006), + [anon_sym_not_DASHhas] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1010), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(329)] = { [sym_comment] = STATE(329), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(330)] = { [sym_comment] = STATE(330), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(331)] = { [sym_comment] = STATE(331), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(332)] = { [sym_comment] = STATE(332), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = 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_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(333)] = { - [sym_cell_path] = STATE(368), - [sym_path] = STATE(339), + [sym__path_suffix] = STATE(377), [sym_comment] = STATE(333), - [aux_sym__where_predicate_lhs_repeat1] = STATE(363), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_PLUS_EQ] = ACTIONS(1434), + [anon_sym_DASH_EQ] = ACTIONS(1434), + [anon_sym_STAR_EQ] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1434), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1434), + [anon_sym_in] = ACTIONS(1434), + [sym__newline] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_err_GT_PIPE] = ACTIONS(1434), + [anon_sym_out_GT_PIPE] = ACTIONS(1434), + [anon_sym_e_GT_PIPE] = ACTIONS(1434), + [anon_sym_o_GT_PIPE] = ACTIONS(1434), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_GT2] = ACTIONS(1432), + [anon_sym_DASH2] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_STAR2] = ACTIONS(1432), + [anon_sym_and2] = ACTIONS(1434), + [anon_sym_xor2] = ACTIONS(1434), + [anon_sym_or2] = ACTIONS(1434), + [anon_sym_not_DASHin2] = ACTIONS(1434), + [anon_sym_has2] = ACTIONS(1434), + [anon_sym_not_DASHhas2] = ACTIONS(1434), + [anon_sym_starts_DASHwith2] = ACTIONS(1434), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), + [anon_sym_ends_DASHwith2] = ACTIONS(1434), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), + [anon_sym_EQ_EQ2] = ACTIONS(1434), + [anon_sym_BANG_EQ2] = ACTIONS(1434), + [anon_sym_LT2] = ACTIONS(1432), + [anon_sym_LT_EQ2] = ACTIONS(1434), + [anon_sym_GT_EQ2] = ACTIONS(1434), + [anon_sym_EQ_TILDE2] = ACTIONS(1434), + [anon_sym_BANG_TILDE2] = ACTIONS(1434), + [anon_sym_like2] = ACTIONS(1434), + [anon_sym_not_DASHlike2] = ACTIONS(1434), + [anon_sym_STAR_STAR2] = ACTIONS(1434), + [anon_sym_PLUS_PLUS2] = ACTIONS(1432), + [anon_sym_SLASH2] = ACTIONS(1432), + [anon_sym_mod2] = ACTIONS(1434), + [anon_sym_SLASH_SLASH2] = ACTIONS(1434), + [anon_sym_PLUS2] = ACTIONS(1432), + [anon_sym_bit_DASHshl2] = ACTIONS(1434), + [anon_sym_bit_DASHshr2] = ACTIONS(1434), + [anon_sym_bit_DASHand2] = ACTIONS(1434), + [anon_sym_bit_DASHxor2] = ACTIONS(1434), + [anon_sym_bit_DASHor2] = ACTIONS(1434), + [anon_sym_DOT_DOT2] = ACTIONS(1432), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), + [anon_sym_COLON2] = ACTIONS(1434), + [anon_sym_QMARK2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DOT2] = ACTIONS(1432), + [anon_sym_err_GT] = ACTIONS(1432), + [anon_sym_out_GT] = ACTIONS(1432), + [anon_sym_e_GT] = ACTIONS(1432), + [anon_sym_o_GT] = ACTIONS(1432), + [anon_sym_err_PLUSout_GT] = ACTIONS(1432), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), + [anon_sym_o_PLUSe_GT] = ACTIONS(1432), + [anon_sym_e_PLUSo_GT] = ACTIONS(1432), + [anon_sym_err_GT_GT] = ACTIONS(1434), + [anon_sym_out_GT_GT] = ACTIONS(1434), + [anon_sym_e_GT_GT] = ACTIONS(1434), + [anon_sym_o_GT_GT] = ACTIONS(1434), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(334)] = { + [sym__path_suffix] = STATE(352), + [sym_comment] = STATE(334), [anon_sym_EQ] = ACTIONS(1432), [anon_sym_PLUS_EQ] = ACTIONS(1432), [anon_sym_DASH_EQ] = ACTIONS(1432), @@ -73448,7 +73777,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), [sym__entry_separator] = ACTIONS(1434), [anon_sym_COLON2] = ACTIONS(1432), - [anon_sym_DOT2] = ACTIONS(1436), + [anon_sym_QMARK2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DOT2] = ACTIONS(1432), [anon_sym_err_GT] = ACTIONS(1432), [anon_sym_out_GT] = ACTIONS(1432), [anon_sym_e_GT] = ACTIONS(1432), @@ -73467,172 +73798,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1432), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(334)] = { - [sym_comment] = STATE(334), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1438), - [anon_sym_in] = ACTIONS(1438), - [sym__newline] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_err_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_GT_PIPE] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(1438), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1438), - [anon_sym_xor2] = ACTIONS(1438), - [anon_sym_or2] = ACTIONS(1438), - [anon_sym_not_DASHin2] = ACTIONS(1438), - [anon_sym_has2] = ACTIONS(1438), - [anon_sym_not_DASHhas2] = ACTIONS(1438), - [anon_sym_starts_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1438), - [anon_sym_ends_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1438), - [anon_sym_EQ_EQ2] = ACTIONS(1438), - [anon_sym_BANG_EQ2] = ACTIONS(1438), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1438), - [anon_sym_GT_EQ2] = ACTIONS(1438), - [anon_sym_EQ_TILDE2] = ACTIONS(1438), - [anon_sym_BANG_TILDE2] = ACTIONS(1438), - [anon_sym_like2] = ACTIONS(1438), - [anon_sym_not_DASHlike2] = ACTIONS(1438), - [anon_sym_STAR_STAR2] = ACTIONS(1438), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1438), - [anon_sym_SLASH_SLASH2] = ACTIONS(1438), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1438), - [anon_sym_bit_DASHshr2] = ACTIONS(1438), - [anon_sym_bit_DASHand2] = ACTIONS(1438), - [anon_sym_bit_DASHxor2] = ACTIONS(1438), - [anon_sym_bit_DASHor2] = ACTIONS(1438), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [sym__entry_separator] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1438), - [anon_sym_QMARK2] = ACTIONS(1442), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1438), - [anon_sym_out_GT_GT] = ACTIONS(1438), - [anon_sym_e_GT_GT] = ACTIONS(1438), - [anon_sym_o_GT_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(335)] = { - [sym_cell_path] = STATE(405), - [sym_path] = STATE(385), + [sym_cell_path] = STATE(400), + [sym_path] = STATE(396), [sym_comment] = STATE(335), - [aux_sym__where_predicate_lhs_repeat1] = STATE(338), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1434), - [anon_sym_DASH_EQ] = ACTIONS(1434), - [anon_sym_STAR_EQ] = ACTIONS(1434), - [anon_sym_SLASH_EQ] = ACTIONS(1434), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1432), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_COLON2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1444), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(336)] = { - [sym__path_suffix] = STATE(351), - [sym_comment] = STATE(336), - [anon_sym_EQ] = ACTIONS(1446), + [aux_sym__where_predicate_lhs_repeat1] = STATE(341), + [anon_sym_EQ] = ACTIONS(1444), [anon_sym_PLUS_EQ] = ACTIONS(1446), [anon_sym_DASH_EQ] = ACTIONS(1446), [anon_sym_STAR_EQ] = ACTIONS(1446), @@ -73650,10 +73821,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_GT2] = ACTIONS(1444), + [anon_sym_DASH2] = ACTIONS(1444), [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), + [anon_sym_STAR2] = ACTIONS(1444), [anon_sym_and2] = ACTIONS(1446), [anon_sym_xor2] = ACTIONS(1446), [anon_sym_or2] = ACTIONS(1446), @@ -73666,7 +73838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), [anon_sym_EQ_EQ2] = ACTIONS(1446), [anon_sym_BANG_EQ2] = ACTIONS(1446), - [anon_sym_LT2] = ACTIONS(1446), + [anon_sym_LT2] = ACTIONS(1444), [anon_sym_LT_EQ2] = ACTIONS(1446), [anon_sym_GT_EQ2] = ACTIONS(1446), [anon_sym_EQ_TILDE2] = ACTIONS(1446), @@ -73674,32 +73846,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1446), [anon_sym_not_DASHlike2] = ACTIONS(1446), [anon_sym_STAR_STAR2] = ACTIONS(1446), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS2] = ACTIONS(1444), + [anon_sym_SLASH2] = ACTIONS(1444), [anon_sym_mod2] = ACTIONS(1446), [anon_sym_SLASH_SLASH2] = ACTIONS(1446), - [anon_sym_PLUS2] = ACTIONS(1446), + [anon_sym_PLUS2] = ACTIONS(1444), [anon_sym_bit_DASHshl2] = ACTIONS(1446), [anon_sym_bit_DASHshr2] = ACTIONS(1446), [anon_sym_bit_DASHand2] = ACTIONS(1446), [anon_sym_bit_DASHxor2] = ACTIONS(1446), [anon_sym_bit_DASHor2] = ACTIONS(1446), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [sym__entry_separator] = ACTIONS(1448), + [anon_sym_DOT_DOT2] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1446), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1446), [anon_sym_COLON2] = ACTIONS(1446), - [anon_sym_QMARK2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1444), + [anon_sym_out_GT] = ACTIONS(1444), + [anon_sym_e_GT] = ACTIONS(1444), + [anon_sym_o_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT] = ACTIONS(1444), [anon_sym_err_GT_GT] = ACTIONS(1446), [anon_sym_out_GT_GT] = ACTIONS(1446), [anon_sym_e_GT_GT] = ACTIONS(1446), @@ -73708,93 +73877,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(336)] = { + [sym_comment] = STATE(336), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_RBRACK] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_DOT_DOT] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [sym__entry_separator] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_QMARK2] = ACTIONS(1454), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), [anon_sym_POUND] = ACTIONS(103), }, [STATE(337)] = { - [sym__path_suffix] = STATE(388), + [sym_cell_path] = STATE(374), + [sym_path] = STATE(346), [sym_comment] = STATE(337), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__where_predicate_lhs_repeat1] = STATE(365), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1444), + [anon_sym_in] = ACTIONS(1444), + [sym__newline] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_err_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_GT_PIPE] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1444), + [anon_sym_GT2] = ACTIONS(1444), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1444), + [anon_sym_and2] = ACTIONS(1444), + [anon_sym_xor2] = ACTIONS(1444), + [anon_sym_or2] = ACTIONS(1444), + [anon_sym_not_DASHin2] = ACTIONS(1444), + [anon_sym_has2] = ACTIONS(1444), + [anon_sym_not_DASHhas2] = ACTIONS(1444), + [anon_sym_starts_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1444), + [anon_sym_ends_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1444), + [anon_sym_EQ_EQ2] = ACTIONS(1444), + [anon_sym_BANG_EQ2] = ACTIONS(1444), + [anon_sym_LT2] = ACTIONS(1444), + [anon_sym_LT_EQ2] = ACTIONS(1444), + [anon_sym_GT_EQ2] = ACTIONS(1444), + [anon_sym_EQ_TILDE2] = ACTIONS(1444), + [anon_sym_BANG_TILDE2] = ACTIONS(1444), + [anon_sym_like2] = ACTIONS(1444), + [anon_sym_not_DASHlike2] = ACTIONS(1444), + [anon_sym_STAR_STAR2] = ACTIONS(1444), + [anon_sym_PLUS_PLUS2] = ACTIONS(1444), + [anon_sym_SLASH2] = ACTIONS(1444), + [anon_sym_mod2] = ACTIONS(1444), + [anon_sym_SLASH_SLASH2] = ACTIONS(1444), + [anon_sym_PLUS2] = ACTIONS(1444), + [anon_sym_bit_DASHshl2] = ACTIONS(1444), + [anon_sym_bit_DASHshr2] = ACTIONS(1444), + [anon_sym_bit_DASHand2] = ACTIONS(1444), + [anon_sym_bit_DASHxor2] = ACTIONS(1444), + [anon_sym_bit_DASHor2] = ACTIONS(1444), + [anon_sym_DOT_DOT2] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1446), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1446), + [sym__entry_separator] = ACTIONS(1446), + [anon_sym_COLON2] = ACTIONS(1444), + [anon_sym_DOT2] = ACTIONS(1456), + [anon_sym_err_GT] = ACTIONS(1444), + [anon_sym_out_GT] = ACTIONS(1444), + [anon_sym_e_GT] = ACTIONS(1444), + [anon_sym_o_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT] = ACTIONS(1444), + [anon_sym_err_GT_GT] = ACTIONS(1444), + [anon_sym_out_GT_GT] = ACTIONS(1444), + [anon_sym_e_GT_GT] = ACTIONS(1444), + [anon_sym_o_GT_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(338)] = { - [sym_path] = STATE(385), [sym_comment] = STATE(338), - [aux_sym__where_predicate_lhs_repeat1] = STATE(353), [anon_sym_EQ] = ACTIONS(1458), [anon_sym_PLUS_EQ] = ACTIONS(1460), [anon_sym_DASH_EQ] = ACTIONS(1460), @@ -73852,7 +74100,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1444), + [anon_sym_QMARK2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1458), [anon_sym_err_GT] = ACTIONS(1458), [anon_sym_out_GT] = ACTIONS(1458), [anon_sym_e_GT] = ACTIONS(1458), @@ -73872,555 +74122,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(339)] = { + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4987), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3730), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(339), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1462), - [anon_sym_DASH_EQ] = ACTIONS(1462), - [anon_sym_STAR_EQ] = ACTIONS(1462), - [anon_sym_SLASH_EQ] = ACTIONS(1462), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1462), - [anon_sym_in] = ACTIONS(1462), - [sym__newline] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_err_GT_PIPE] = ACTIONS(1462), - [anon_sym_out_GT_PIPE] = ACTIONS(1462), - [anon_sym_e_GT_PIPE] = ACTIONS(1462), - [anon_sym_o_GT_PIPE] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1462), - [anon_sym_RBRACK] = ACTIONS(1462), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1462), - [anon_sym_xor2] = ACTIONS(1462), - [anon_sym_or2] = ACTIONS(1462), - [anon_sym_not_DASHin2] = ACTIONS(1462), - [anon_sym_has2] = ACTIONS(1462), - [anon_sym_not_DASHhas2] = ACTIONS(1462), - [anon_sym_starts_DASHwith2] = ACTIONS(1462), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1462), - [anon_sym_ends_DASHwith2] = ACTIONS(1462), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1462), - [anon_sym_EQ_EQ2] = ACTIONS(1462), - [anon_sym_BANG_EQ2] = ACTIONS(1462), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1462), - [anon_sym_GT_EQ2] = ACTIONS(1462), - [anon_sym_EQ_TILDE2] = ACTIONS(1462), - [anon_sym_BANG_TILDE2] = ACTIONS(1462), - [anon_sym_like2] = ACTIONS(1462), - [anon_sym_not_DASHlike2] = ACTIONS(1462), - [anon_sym_STAR_STAR2] = ACTIONS(1462), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1462), - [anon_sym_bit_DASHshr2] = ACTIONS(1462), - [anon_sym_bit_DASHand2] = ACTIONS(1462), - [anon_sym_bit_DASHxor2] = ACTIONS(1462), - [anon_sym_bit_DASHor2] = ACTIONS(1462), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [sym__entry_separator] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1462), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1462), - [anon_sym_out_GT_GT] = ACTIONS(1462), - [anon_sym_e_GT_GT] = ACTIONS(1462), - [anon_sym_o_GT_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(340)] = { - [sym_comment] = STATE(340), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1466), - [anon_sym_DASH_EQ] = ACTIONS(1466), - [anon_sym_STAR_EQ] = ACTIONS(1466), - [anon_sym_SLASH_EQ] = ACTIONS(1466), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1466), - [anon_sym_in] = ACTIONS(1466), - [sym__newline] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_err_GT_PIPE] = ACTIONS(1466), - [anon_sym_out_GT_PIPE] = ACTIONS(1466), - [anon_sym_e_GT_PIPE] = ACTIONS(1466), - [anon_sym_o_GT_PIPE] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1466), - [anon_sym_xor2] = ACTIONS(1466), - [anon_sym_or2] = ACTIONS(1466), - [anon_sym_not_DASHin2] = ACTIONS(1466), - [anon_sym_has2] = ACTIONS(1466), - [anon_sym_not_DASHhas2] = ACTIONS(1466), - [anon_sym_starts_DASHwith2] = ACTIONS(1466), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), - [anon_sym_ends_DASHwith2] = ACTIONS(1466), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), - [anon_sym_EQ_EQ2] = ACTIONS(1466), - [anon_sym_BANG_EQ2] = ACTIONS(1466), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1466), - [anon_sym_GT_EQ2] = ACTIONS(1466), - [anon_sym_EQ_TILDE2] = ACTIONS(1466), - [anon_sym_BANG_TILDE2] = ACTIONS(1466), - [anon_sym_like2] = ACTIONS(1466), - [anon_sym_not_DASHlike2] = ACTIONS(1466), - [anon_sym_STAR_STAR2] = ACTIONS(1466), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1466), - [anon_sym_SLASH_SLASH2] = ACTIONS(1466), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1466), - [anon_sym_bit_DASHshr2] = ACTIONS(1466), - [anon_sym_bit_DASHand2] = ACTIONS(1466), - [anon_sym_bit_DASHxor2] = ACTIONS(1466), - [anon_sym_bit_DASHor2] = ACTIONS(1466), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [sym__entry_separator] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1466), - [anon_sym_QMARK2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1466), - [anon_sym_out_GT_GT] = ACTIONS(1466), - [anon_sym_e_GT_GT] = ACTIONS(1466), - [anon_sym_o_GT_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(341)] = { - [sym_comment] = STATE(341), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1470), - [anon_sym_DASH_EQ] = ACTIONS(1470), - [anon_sym_STAR_EQ] = ACTIONS(1470), - [anon_sym_SLASH_EQ] = ACTIONS(1470), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [sym__newline] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_err_GT_PIPE] = ACTIONS(1470), - [anon_sym_out_GT_PIPE] = ACTIONS(1470), - [anon_sym_e_GT_PIPE] = ACTIONS(1470), - [anon_sym_o_GT_PIPE] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1470), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1470), - [anon_sym_xor2] = ACTIONS(1470), - [anon_sym_or2] = ACTIONS(1470), - [anon_sym_not_DASHin2] = ACTIONS(1470), - [anon_sym_has2] = ACTIONS(1470), - [anon_sym_not_DASHhas2] = ACTIONS(1470), - [anon_sym_starts_DASHwith2] = ACTIONS(1470), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1470), - [anon_sym_ends_DASHwith2] = ACTIONS(1470), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1470), - [anon_sym_EQ_EQ2] = ACTIONS(1470), - [anon_sym_BANG_EQ2] = ACTIONS(1470), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1470), - [anon_sym_GT_EQ2] = ACTIONS(1470), - [anon_sym_EQ_TILDE2] = ACTIONS(1470), - [anon_sym_BANG_TILDE2] = ACTIONS(1470), - [anon_sym_like2] = ACTIONS(1470), - [anon_sym_not_DASHlike2] = ACTIONS(1470), - [anon_sym_STAR_STAR2] = ACTIONS(1470), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1470), - [anon_sym_SLASH_SLASH2] = ACTIONS(1470), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1470), - [anon_sym_bit_DASHshr2] = ACTIONS(1470), - [anon_sym_bit_DASHand2] = ACTIONS(1470), - [anon_sym_bit_DASHxor2] = ACTIONS(1470), - [anon_sym_bit_DASHor2] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [sym__entry_separator] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1470), - [anon_sym_QMARK2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1470), - [anon_sym_out_GT_GT] = ACTIONS(1470), - [anon_sym_e_GT_GT] = ACTIONS(1470), - [anon_sym_o_GT_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(342)] = { - [sym_comment] = STATE(342), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1474), - [anon_sym_DASH_EQ] = ACTIONS(1474), - [anon_sym_STAR_EQ] = ACTIONS(1474), - [anon_sym_SLASH_EQ] = ACTIONS(1474), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1474), - [anon_sym_in] = ACTIONS(1474), - [sym__newline] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_err_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_GT_PIPE] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1474), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1474), - [anon_sym_xor2] = ACTIONS(1474), - [anon_sym_or2] = ACTIONS(1474), - [anon_sym_not_DASHin2] = ACTIONS(1474), - [anon_sym_has2] = ACTIONS(1474), - [anon_sym_not_DASHhas2] = ACTIONS(1474), - [anon_sym_starts_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1474), - [anon_sym_ends_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1474), - [anon_sym_EQ_EQ2] = ACTIONS(1474), - [anon_sym_BANG_EQ2] = ACTIONS(1474), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1474), - [anon_sym_GT_EQ2] = ACTIONS(1474), - [anon_sym_EQ_TILDE2] = ACTIONS(1474), - [anon_sym_BANG_TILDE2] = ACTIONS(1474), - [anon_sym_like2] = ACTIONS(1474), - [anon_sym_not_DASHlike2] = ACTIONS(1474), - [anon_sym_STAR_STAR2] = ACTIONS(1474), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1474), - [anon_sym_SLASH_SLASH2] = ACTIONS(1474), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1474), - [anon_sym_bit_DASHshr2] = ACTIONS(1474), - [anon_sym_bit_DASHand2] = ACTIONS(1474), - [anon_sym_bit_DASHxor2] = ACTIONS(1474), - [anon_sym_bit_DASHor2] = ACTIONS(1474), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [sym__entry_separator] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1474), - [anon_sym_QMARK2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1474), - [anon_sym_out_GT_GT] = ACTIONS(1474), - [anon_sym_e_GT_GT] = ACTIONS(1474), - [anon_sym_o_GT_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(343)] = { - [sym_comment] = STATE(343), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(344)] = { - [sym_comment] = STATE(344), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(345)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5177), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3656), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(345), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1492), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1472), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -74431,156 +74201,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(346)] = { - [sym_comment] = STATE(346), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(347)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5080), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(347), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1510), + [STATE(340)] = { + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5021), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3758), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(340), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1490), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -74591,76 +74281,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(348)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4886), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3646), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(348), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1512), + [STATE(341)] = { + [sym_path] = STATE(396), + [sym_comment] = STATE(341), + [aux_sym__where_predicate_lhs_repeat1] = STATE(342), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1494), + [sym__newline] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_err_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_GT_PIPE] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_GT2] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_STAR2] = ACTIONS(1492), + [anon_sym_and2] = ACTIONS(1494), + [anon_sym_xor2] = ACTIONS(1494), + [anon_sym_or2] = ACTIONS(1494), + [anon_sym_not_DASHin2] = ACTIONS(1494), + [anon_sym_has2] = ACTIONS(1494), + [anon_sym_not_DASHhas2] = ACTIONS(1494), + [anon_sym_starts_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1494), + [anon_sym_ends_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1494), + [anon_sym_EQ_EQ2] = ACTIONS(1494), + [anon_sym_BANG_EQ2] = ACTIONS(1494), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ2] = ACTIONS(1494), + [anon_sym_GT_EQ2] = ACTIONS(1494), + [anon_sym_EQ_TILDE2] = ACTIONS(1494), + [anon_sym_BANG_TILDE2] = ACTIONS(1494), + [anon_sym_like2] = ACTIONS(1494), + [anon_sym_not_DASHlike2] = ACTIONS(1494), + [anon_sym_STAR_STAR2] = ACTIONS(1494), + [anon_sym_PLUS_PLUS2] = ACTIONS(1492), + [anon_sym_SLASH2] = ACTIONS(1492), + [anon_sym_mod2] = ACTIONS(1494), + [anon_sym_SLASH_SLASH2] = ACTIONS(1494), + [anon_sym_PLUS2] = ACTIONS(1492), + [anon_sym_bit_DASHshl2] = ACTIONS(1494), + [anon_sym_bit_DASHshr2] = ACTIONS(1494), + [anon_sym_bit_DASHand2] = ACTIONS(1494), + [anon_sym_bit_DASHxor2] = ACTIONS(1494), + [anon_sym_bit_DASHor2] = ACTIONS(1494), + [anon_sym_DOT_DOT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), + [anon_sym_COLON2] = ACTIONS(1494), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1492), + [anon_sym_out_GT] = ACTIONS(1492), + [anon_sym_e_GT] = ACTIONS(1492), + [anon_sym_o_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT] = ACTIONS(1492), + [anon_sym_err_GT_GT] = ACTIONS(1494), + [anon_sym_out_GT_GT] = ACTIONS(1494), + [anon_sym_e_GT_GT] = ACTIONS(1494), + [anon_sym_o_GT_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(342)] = { + [sym_path] = STATE(396), + [sym_comment] = STATE(342), + [aux_sym__where_predicate_lhs_repeat1] = STATE(342), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1498), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_COLON2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(1500), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(343)] = { + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5258), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3734), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(343), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1503), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -74671,156 +74521,876 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, + [STATE(344)] = { + [sym_comment] = STATE(344), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1507), + [anon_sym_in] = ACTIONS(1507), + [sym__newline] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_err_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_GT_PIPE] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1507), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_STAR2] = ACTIONS(1505), + [anon_sym_and2] = ACTIONS(1507), + [anon_sym_xor2] = ACTIONS(1507), + [anon_sym_or2] = ACTIONS(1507), + [anon_sym_not_DASHin2] = ACTIONS(1507), + [anon_sym_has2] = ACTIONS(1507), + [anon_sym_not_DASHhas2] = ACTIONS(1507), + [anon_sym_starts_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1507), + [anon_sym_ends_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1507), + [anon_sym_EQ_EQ2] = ACTIONS(1507), + [anon_sym_BANG_EQ2] = ACTIONS(1507), + [anon_sym_LT2] = ACTIONS(1505), + [anon_sym_LT_EQ2] = ACTIONS(1507), + [anon_sym_GT_EQ2] = ACTIONS(1507), + [anon_sym_EQ_TILDE2] = ACTIONS(1507), + [anon_sym_BANG_TILDE2] = ACTIONS(1507), + [anon_sym_like2] = ACTIONS(1507), + [anon_sym_not_DASHlike2] = ACTIONS(1507), + [anon_sym_STAR_STAR2] = ACTIONS(1507), + [anon_sym_PLUS_PLUS2] = ACTIONS(1505), + [anon_sym_SLASH2] = ACTIONS(1505), + [anon_sym_mod2] = ACTIONS(1507), + [anon_sym_SLASH_SLASH2] = ACTIONS(1507), + [anon_sym_PLUS2] = ACTIONS(1505), + [anon_sym_bit_DASHshl2] = ACTIONS(1507), + [anon_sym_bit_DASHshr2] = ACTIONS(1507), + [anon_sym_bit_DASHand2] = ACTIONS(1507), + [anon_sym_bit_DASHxor2] = ACTIONS(1507), + [anon_sym_bit_DASHor2] = ACTIONS(1507), + [anon_sym_DOT_DOT2] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), + [anon_sym_COLON2] = ACTIONS(1507), + [anon_sym_QMARK2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_DOT2] = ACTIONS(1505), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1507), + [anon_sym_out_GT_GT] = ACTIONS(1507), + [anon_sym_e_GT_GT] = ACTIONS(1507), + [anon_sym_o_GT_GT] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(345)] = { + [sym_comment] = STATE(345), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1511), + [anon_sym_DASH_EQ] = ACTIONS(1511), + [anon_sym_STAR_EQ] = ACTIONS(1511), + [anon_sym_SLASH_EQ] = ACTIONS(1511), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1511), + [anon_sym_in] = ACTIONS(1511), + [sym__newline] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_err_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_GT_PIPE] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1511), + [anon_sym_xor2] = ACTIONS(1511), + [anon_sym_or2] = ACTIONS(1511), + [anon_sym_not_DASHin2] = ACTIONS(1511), + [anon_sym_has2] = ACTIONS(1511), + [anon_sym_not_DASHhas2] = ACTIONS(1511), + [anon_sym_starts_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1511), + [anon_sym_ends_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1511), + [anon_sym_EQ_EQ2] = ACTIONS(1511), + [anon_sym_BANG_EQ2] = ACTIONS(1511), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1511), + [anon_sym_GT_EQ2] = ACTIONS(1511), + [anon_sym_EQ_TILDE2] = ACTIONS(1511), + [anon_sym_BANG_TILDE2] = ACTIONS(1511), + [anon_sym_like2] = ACTIONS(1511), + [anon_sym_not_DASHlike2] = ACTIONS(1511), + [anon_sym_STAR_STAR2] = ACTIONS(1511), + [anon_sym_PLUS_PLUS2] = ACTIONS(1509), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1511), + [anon_sym_SLASH_SLASH2] = ACTIONS(1511), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1511), + [anon_sym_bit_DASHshr2] = ACTIONS(1511), + [anon_sym_bit_DASHand2] = ACTIONS(1511), + [anon_sym_bit_DASHxor2] = ACTIONS(1511), + [anon_sym_bit_DASHor2] = ACTIONS(1511), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [anon_sym_COLON2] = ACTIONS(1511), + [anon_sym_QMARK2] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1511), + [anon_sym_out_GT_GT] = ACTIONS(1511), + [anon_sym_e_GT_GT] = ACTIONS(1511), + [anon_sym_o_GT_GT] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(346)] = { + [sym_comment] = STATE(346), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [sym__newline] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_err_GT_PIPE] = ACTIONS(1513), + [anon_sym_out_GT_PIPE] = ACTIONS(1513), + [anon_sym_e_GT_PIPE] = ACTIONS(1513), + [anon_sym_o_GT_PIPE] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1513), + [anon_sym_RBRACK] = ACTIONS(1513), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1513), + [anon_sym_xor2] = ACTIONS(1513), + [anon_sym_or2] = ACTIONS(1513), + [anon_sym_not_DASHin2] = ACTIONS(1513), + [anon_sym_has2] = ACTIONS(1513), + [anon_sym_not_DASHhas2] = ACTIONS(1513), + [anon_sym_starts_DASHwith2] = ACTIONS(1513), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1513), + [anon_sym_ends_DASHwith2] = ACTIONS(1513), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1513), + [anon_sym_EQ_EQ2] = ACTIONS(1513), + [anon_sym_BANG_EQ2] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1513), + [anon_sym_GT_EQ2] = ACTIONS(1513), + [anon_sym_EQ_TILDE2] = ACTIONS(1513), + [anon_sym_BANG_TILDE2] = ACTIONS(1513), + [anon_sym_like2] = ACTIONS(1513), + [anon_sym_not_DASHlike2] = ACTIONS(1513), + [anon_sym_STAR_STAR2] = ACTIONS(1513), + [anon_sym_PLUS_PLUS2] = ACTIONS(1513), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1513), + [anon_sym_SLASH_SLASH2] = ACTIONS(1513), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1513), + [anon_sym_bit_DASHshr2] = ACTIONS(1513), + [anon_sym_bit_DASHand2] = ACTIONS(1513), + [anon_sym_bit_DASHxor2] = ACTIONS(1513), + [anon_sym_bit_DASHor2] = ACTIONS(1513), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [sym__entry_separator] = ACTIONS(1515), + [anon_sym_COLON2] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1513), + [anon_sym_out_GT_GT] = ACTIONS(1513), + [anon_sym_e_GT_GT] = ACTIONS(1513), + [anon_sym_o_GT_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(347)] = { + [sym_comment] = STATE(347), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_PLUS_EQ] = ACTIONS(1519), + [anon_sym_DASH_EQ] = ACTIONS(1519), + [anon_sym_STAR_EQ] = ACTIONS(1519), + [anon_sym_SLASH_EQ] = ACTIONS(1519), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1519), + [anon_sym_in] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_GT2] = ACTIONS(1517), + [anon_sym_DASH2] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_STAR2] = ACTIONS(1517), + [anon_sym_and2] = ACTIONS(1519), + [anon_sym_xor2] = ACTIONS(1519), + [anon_sym_or2] = ACTIONS(1519), + [anon_sym_not_DASHin2] = ACTIONS(1519), + [anon_sym_has2] = ACTIONS(1519), + [anon_sym_not_DASHhas2] = ACTIONS(1519), + [anon_sym_starts_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1519), + [anon_sym_ends_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1519), + [anon_sym_EQ_EQ2] = ACTIONS(1519), + [anon_sym_BANG_EQ2] = ACTIONS(1519), + [anon_sym_LT2] = ACTIONS(1517), + [anon_sym_LT_EQ2] = ACTIONS(1519), + [anon_sym_GT_EQ2] = ACTIONS(1519), + [anon_sym_EQ_TILDE2] = ACTIONS(1519), + [anon_sym_BANG_TILDE2] = ACTIONS(1519), + [anon_sym_like2] = ACTIONS(1519), + [anon_sym_not_DASHlike2] = ACTIONS(1519), + [anon_sym_STAR_STAR2] = ACTIONS(1519), + [anon_sym_PLUS_PLUS2] = ACTIONS(1517), + [anon_sym_SLASH2] = ACTIONS(1517), + [anon_sym_mod2] = ACTIONS(1519), + [anon_sym_SLASH_SLASH2] = ACTIONS(1519), + [anon_sym_PLUS2] = ACTIONS(1517), + [anon_sym_bit_DASHshl2] = ACTIONS(1519), + [anon_sym_bit_DASHshr2] = ACTIONS(1519), + [anon_sym_bit_DASHand2] = ACTIONS(1519), + [anon_sym_bit_DASHxor2] = ACTIONS(1519), + [anon_sym_bit_DASHor2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [anon_sym_COLON2] = ACTIONS(1519), + [anon_sym_QMARK2] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1517), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(348)] = { + [sym_comment] = STATE(348), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_PLUS_EQ] = ACTIONS(1523), + [anon_sym_DASH_EQ] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1523), + [anon_sym_SLASH_EQ] = ACTIONS(1523), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1523), + [anon_sym_in] = ACTIONS(1523), + [sym__newline] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_err_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_GT_PIPE] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1523), + [anon_sym_RPAREN] = ACTIONS(1523), + [anon_sym_GT2] = ACTIONS(1521), + [anon_sym_DASH2] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_STAR2] = ACTIONS(1521), + [anon_sym_and2] = ACTIONS(1523), + [anon_sym_xor2] = ACTIONS(1523), + [anon_sym_or2] = ACTIONS(1523), + [anon_sym_not_DASHin2] = ACTIONS(1523), + [anon_sym_has2] = ACTIONS(1523), + [anon_sym_not_DASHhas2] = ACTIONS(1523), + [anon_sym_starts_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1523), + [anon_sym_ends_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1523), + [anon_sym_EQ_EQ2] = ACTIONS(1523), + [anon_sym_BANG_EQ2] = ACTIONS(1523), + [anon_sym_LT2] = ACTIONS(1521), + [anon_sym_LT_EQ2] = ACTIONS(1523), + [anon_sym_GT_EQ2] = ACTIONS(1523), + [anon_sym_EQ_TILDE2] = ACTIONS(1523), + [anon_sym_BANG_TILDE2] = ACTIONS(1523), + [anon_sym_like2] = ACTIONS(1523), + [anon_sym_not_DASHlike2] = ACTIONS(1523), + [anon_sym_STAR_STAR2] = ACTIONS(1523), + [anon_sym_PLUS_PLUS2] = ACTIONS(1521), + [anon_sym_SLASH2] = ACTIONS(1521), + [anon_sym_mod2] = ACTIONS(1523), + [anon_sym_SLASH_SLASH2] = ACTIONS(1523), + [anon_sym_PLUS2] = ACTIONS(1521), + [anon_sym_bit_DASHshl2] = ACTIONS(1523), + [anon_sym_bit_DASHshr2] = ACTIONS(1523), + [anon_sym_bit_DASHand2] = ACTIONS(1523), + [anon_sym_bit_DASHxor2] = ACTIONS(1523), + [anon_sym_bit_DASHor2] = ACTIONS(1523), + [anon_sym_DOT_DOT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1523), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1523), + [anon_sym_COLON2] = ACTIONS(1523), + [anon_sym_QMARK2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_DOT2] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1521), + [anon_sym_out_GT] = ACTIONS(1521), + [anon_sym_e_GT] = ACTIONS(1521), + [anon_sym_o_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT] = ACTIONS(1521), + [anon_sym_err_GT_GT] = ACTIONS(1523), + [anon_sym_out_GT_GT] = ACTIONS(1523), + [anon_sym_e_GT_GT] = ACTIONS(1523), + [anon_sym_o_GT_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(349)] = { [sym_comment] = STATE(349), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1527), + [anon_sym_in] = ACTIONS(1527), + [sym__newline] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_err_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_GT_PIPE] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1527), + [anon_sym_xor2] = ACTIONS(1527), + [anon_sym_or2] = ACTIONS(1527), + [anon_sym_not_DASHin2] = ACTIONS(1527), + [anon_sym_has2] = ACTIONS(1527), + [anon_sym_not_DASHhas2] = ACTIONS(1527), + [anon_sym_starts_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), + [anon_sym_ends_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), + [anon_sym_EQ_EQ2] = ACTIONS(1527), + [anon_sym_BANG_EQ2] = ACTIONS(1527), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1527), + [anon_sym_GT_EQ2] = ACTIONS(1527), + [anon_sym_EQ_TILDE2] = ACTIONS(1527), + [anon_sym_BANG_TILDE2] = ACTIONS(1527), + [anon_sym_like2] = ACTIONS(1527), + [anon_sym_not_DASHlike2] = ACTIONS(1527), + [anon_sym_STAR_STAR2] = ACTIONS(1527), + [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1527), + [anon_sym_SLASH_SLASH2] = ACTIONS(1527), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1527), + [anon_sym_bit_DASHshr2] = ACTIONS(1527), + [anon_sym_bit_DASHand2] = ACTIONS(1527), + [anon_sym_bit_DASHxor2] = ACTIONS(1527), + [anon_sym_bit_DASHor2] = ACTIONS(1527), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [anon_sym_COLON2] = ACTIONS(1527), + [anon_sym_QMARK2] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1527), + [anon_sym_out_GT_GT] = ACTIONS(1527), + [anon_sym_e_GT_GT] = ACTIONS(1527), + [anon_sym_o_GT_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), [anon_sym_POUND] = ACTIONS(3), }, [STATE(350)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4809), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3709), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(350), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_PLUS_EQ] = ACTIONS(1458), + [anon_sym_DASH_EQ] = ACTIONS(1458), + [anon_sym_STAR_EQ] = ACTIONS(1458), + [anon_sym_SLASH_EQ] = ACTIONS(1458), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1458), + [anon_sym_in] = ACTIONS(1458), + [sym__newline] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_err_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_GT_PIPE] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), + [anon_sym_GT2] = ACTIONS(1458), + [anon_sym_DASH2] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_STAR2] = ACTIONS(1458), + [anon_sym_and2] = ACTIONS(1458), + [anon_sym_xor2] = ACTIONS(1458), + [anon_sym_or2] = ACTIONS(1458), + [anon_sym_not_DASHin2] = ACTIONS(1458), + [anon_sym_has2] = ACTIONS(1458), + [anon_sym_not_DASHhas2] = ACTIONS(1458), + [anon_sym_starts_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), + [anon_sym_ends_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), + [anon_sym_EQ_EQ2] = ACTIONS(1458), + [anon_sym_BANG_EQ2] = ACTIONS(1458), + [anon_sym_LT2] = ACTIONS(1458), + [anon_sym_LT_EQ2] = ACTIONS(1458), + [anon_sym_GT_EQ2] = ACTIONS(1458), + [anon_sym_EQ_TILDE2] = ACTIONS(1458), + [anon_sym_BANG_TILDE2] = ACTIONS(1458), + [anon_sym_like2] = ACTIONS(1458), + [anon_sym_not_DASHlike2] = ACTIONS(1458), + [anon_sym_STAR_STAR2] = ACTIONS(1458), + [anon_sym_PLUS_PLUS2] = ACTIONS(1458), + [anon_sym_SLASH2] = ACTIONS(1458), + [anon_sym_mod2] = ACTIONS(1458), + [anon_sym_SLASH_SLASH2] = ACTIONS(1458), + [anon_sym_PLUS2] = ACTIONS(1458), + [anon_sym_bit_DASHshl2] = ACTIONS(1458), + [anon_sym_bit_DASHshr2] = ACTIONS(1458), + [anon_sym_bit_DASHand2] = ACTIONS(1458), + [anon_sym_bit_DASHxor2] = ACTIONS(1458), + [anon_sym_bit_DASHor2] = ACTIONS(1458), + [anon_sym_DOT_DOT2] = ACTIONS(1458), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), + [sym__entry_separator] = ACTIONS(1460), + [anon_sym_COLON2] = ACTIONS(1458), + [anon_sym_QMARK2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1458), + [anon_sym_err_GT] = ACTIONS(1458), + [anon_sym_out_GT] = ACTIONS(1458), + [anon_sym_e_GT] = ACTIONS(1458), + [anon_sym_o_GT] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT] = ACTIONS(1458), + [anon_sym_err_GT_GT] = ACTIONS(1458), + [anon_sym_out_GT_GT] = ACTIONS(1458), + [anon_sym_e_GT_GT] = ACTIONS(1458), + [anon_sym_o_GT_GT] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(351)] = { + [sym_comment] = STATE(351), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [sym__newline] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_err_GT_PIPE] = ACTIONS(1509), + [anon_sym_out_GT_PIPE] = ACTIONS(1509), + [anon_sym_e_GT_PIPE] = ACTIONS(1509), + [anon_sym_o_GT_PIPE] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1509), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1509), + [anon_sym_xor2] = ACTIONS(1509), + [anon_sym_or2] = ACTIONS(1509), + [anon_sym_not_DASHin2] = ACTIONS(1509), + [anon_sym_has2] = ACTIONS(1509), + [anon_sym_not_DASHhas2] = ACTIONS(1509), + [anon_sym_starts_DASHwith2] = ACTIONS(1509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1509), + [anon_sym_ends_DASHwith2] = ACTIONS(1509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1509), + [anon_sym_EQ_EQ2] = ACTIONS(1509), + [anon_sym_BANG_EQ2] = ACTIONS(1509), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1509), + [anon_sym_GT_EQ2] = ACTIONS(1509), + [anon_sym_EQ_TILDE2] = ACTIONS(1509), + [anon_sym_BANG_TILDE2] = ACTIONS(1509), + [anon_sym_like2] = ACTIONS(1509), + [anon_sym_not_DASHlike2] = ACTIONS(1509), + [anon_sym_STAR_STAR2] = ACTIONS(1509), + [anon_sym_PLUS_PLUS2] = ACTIONS(1509), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1509), + [anon_sym_SLASH_SLASH2] = ACTIONS(1509), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1509), + [anon_sym_bit_DASHshr2] = ACTIONS(1509), + [anon_sym_bit_DASHand2] = ACTIONS(1509), + [anon_sym_bit_DASHxor2] = ACTIONS(1509), + [anon_sym_bit_DASHor2] = ACTIONS(1509), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [sym__entry_separator] = ACTIONS(1511), + [anon_sym_COLON2] = ACTIONS(1509), + [anon_sym_QMARK2] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1509), + [anon_sym_out_GT_GT] = ACTIONS(1509), + [anon_sym_e_GT_GT] = ACTIONS(1509), + [anon_sym_o_GT_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(352)] = { + [sym_comment] = STATE(352), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1529), + [anon_sym_DASH_EQ] = ACTIONS(1529), + [anon_sym_STAR_EQ] = ACTIONS(1529), + [anon_sym_SLASH_EQ] = ACTIONS(1529), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1529), + [anon_sym_in] = ACTIONS(1529), + [sym__newline] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_err_GT_PIPE] = ACTIONS(1529), + [anon_sym_out_GT_PIPE] = ACTIONS(1529), + [anon_sym_e_GT_PIPE] = ACTIONS(1529), + [anon_sym_o_GT_PIPE] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1529), + [anon_sym_RBRACK] = ACTIONS(1529), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1529), + [anon_sym_xor2] = ACTIONS(1529), + [anon_sym_or2] = ACTIONS(1529), + [anon_sym_not_DASHin2] = ACTIONS(1529), + [anon_sym_has2] = ACTIONS(1529), + [anon_sym_not_DASHhas2] = ACTIONS(1529), + [anon_sym_starts_DASHwith2] = ACTIONS(1529), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1529), + [anon_sym_ends_DASHwith2] = ACTIONS(1529), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1529), + [anon_sym_EQ_EQ2] = ACTIONS(1529), + [anon_sym_BANG_EQ2] = ACTIONS(1529), + [anon_sym_LT2] = ACTIONS(1529), + [anon_sym_LT_EQ2] = ACTIONS(1529), + [anon_sym_GT_EQ2] = ACTIONS(1529), + [anon_sym_EQ_TILDE2] = ACTIONS(1529), + [anon_sym_BANG_TILDE2] = ACTIONS(1529), + [anon_sym_like2] = ACTIONS(1529), + [anon_sym_not_DASHlike2] = ACTIONS(1529), + [anon_sym_STAR_STAR2] = ACTIONS(1529), + [anon_sym_PLUS_PLUS2] = ACTIONS(1529), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1529), + [anon_sym_SLASH_SLASH2] = ACTIONS(1529), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_bit_DASHshl2] = ACTIONS(1529), + [anon_sym_bit_DASHshr2] = ACTIONS(1529), + [anon_sym_bit_DASHand2] = ACTIONS(1529), + [anon_sym_bit_DASHxor2] = ACTIONS(1529), + [anon_sym_bit_DASHor2] = ACTIONS(1529), + [anon_sym_DOT_DOT2] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), + [sym__entry_separator] = ACTIONS(1531), + [anon_sym_COLON2] = ACTIONS(1529), + [anon_sym_DOT2] = ACTIONS(1529), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [anon_sym_err_GT_GT] = ACTIONS(1529), + [anon_sym_out_GT_GT] = ACTIONS(1529), + [anon_sym_e_GT_GT] = ACTIONS(1529), + [anon_sym_o_GT_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(353)] = { + [sym_comment] = STATE(353), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1533), + [anon_sym_DASH_EQ] = ACTIONS(1533), + [anon_sym_STAR_EQ] = ACTIONS(1533), + [anon_sym_SLASH_EQ] = ACTIONS(1533), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [sym__newline] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_err_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_GT_PIPE] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), + [anon_sym_RBRACK] = ACTIONS(1533), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1533), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1533), + [anon_sym_xor2] = ACTIONS(1533), + [anon_sym_or2] = ACTIONS(1533), + [anon_sym_not_DASHin2] = ACTIONS(1533), + [anon_sym_has2] = ACTIONS(1533), + [anon_sym_not_DASHhas2] = ACTIONS(1533), + [anon_sym_starts_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1533), + [anon_sym_ends_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), + [anon_sym_EQ_EQ2] = ACTIONS(1533), + [anon_sym_BANG_EQ2] = ACTIONS(1533), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1533), + [anon_sym_GT_EQ2] = ACTIONS(1533), + [anon_sym_EQ_TILDE2] = ACTIONS(1533), + [anon_sym_BANG_TILDE2] = ACTIONS(1533), + [anon_sym_like2] = ACTIONS(1533), + [anon_sym_not_DASHlike2] = ACTIONS(1533), + [anon_sym_STAR_STAR2] = ACTIONS(1533), + [anon_sym_PLUS_PLUS2] = ACTIONS(1533), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1533), + [anon_sym_SLASH_SLASH2] = ACTIONS(1533), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1533), + [anon_sym_bit_DASHshr2] = ACTIONS(1533), + [anon_sym_bit_DASHand2] = ACTIONS(1533), + [anon_sym_bit_DASHxor2] = ACTIONS(1533), + [anon_sym_bit_DASHor2] = ACTIONS(1533), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [sym__entry_separator] = ACTIONS(1535), + [anon_sym_COLON2] = ACTIONS(1533), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1533), + [anon_sym_out_GT_GT] = ACTIONS(1533), + [anon_sym_e_GT_GT] = ACTIONS(1533), + [anon_sym_o_GT_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(354)] = { + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4869), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3734), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(354), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1537), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -74831,316 +75401,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(351)] = { - [sym_comment] = STATE(351), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1520), - [anon_sym_in] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RBRACK] = ACTIONS(1520), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1520), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1520), - [anon_sym_xor2] = ACTIONS(1520), - [anon_sym_or2] = ACTIONS(1520), - [anon_sym_not_DASHin2] = ACTIONS(1520), - [anon_sym_has2] = ACTIONS(1520), - [anon_sym_not_DASHhas2] = ACTIONS(1520), - [anon_sym_starts_DASHwith2] = ACTIONS(1520), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1520), - [anon_sym_ends_DASHwith2] = ACTIONS(1520), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1520), - [anon_sym_EQ_EQ2] = ACTIONS(1520), - [anon_sym_BANG_EQ2] = ACTIONS(1520), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1520), - [anon_sym_GT_EQ2] = ACTIONS(1520), - [anon_sym_EQ_TILDE2] = ACTIONS(1520), - [anon_sym_BANG_TILDE2] = ACTIONS(1520), - [anon_sym_like2] = ACTIONS(1520), - [anon_sym_not_DASHlike2] = ACTIONS(1520), - [anon_sym_STAR_STAR2] = ACTIONS(1520), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1520), - [anon_sym_SLASH_SLASH2] = ACTIONS(1520), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1520), - [anon_sym_bit_DASHshr2] = ACTIONS(1520), - [anon_sym_bit_DASHand2] = ACTIONS(1520), - [anon_sym_bit_DASHxor2] = ACTIONS(1520), - [anon_sym_bit_DASHor2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [sym__entry_separator] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), + [STATE(355)] = { + [sym_comment] = STATE(355), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_PLUS_EQ] = ACTIONS(1517), + [anon_sym_DASH_EQ] = ACTIONS(1517), + [anon_sym_STAR_EQ] = ACTIONS(1517), + [anon_sym_SLASH_EQ] = ACTIONS(1517), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_err_GT_PIPE] = ACTIONS(1517), + [anon_sym_out_GT_PIPE] = ACTIONS(1517), + [anon_sym_e_GT_PIPE] = ACTIONS(1517), + [anon_sym_o_GT_PIPE] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1517), + [anon_sym_GT2] = ACTIONS(1517), + [anon_sym_DASH2] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_STAR2] = ACTIONS(1517), + [anon_sym_and2] = ACTIONS(1517), + [anon_sym_xor2] = ACTIONS(1517), + [anon_sym_or2] = ACTIONS(1517), + [anon_sym_not_DASHin2] = ACTIONS(1517), + [anon_sym_has2] = ACTIONS(1517), + [anon_sym_not_DASHhas2] = ACTIONS(1517), + [anon_sym_starts_DASHwith2] = ACTIONS(1517), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1517), + [anon_sym_ends_DASHwith2] = ACTIONS(1517), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1517), + [anon_sym_EQ_EQ2] = ACTIONS(1517), + [anon_sym_BANG_EQ2] = ACTIONS(1517), + [anon_sym_LT2] = ACTIONS(1517), + [anon_sym_LT_EQ2] = ACTIONS(1517), + [anon_sym_GT_EQ2] = ACTIONS(1517), + [anon_sym_EQ_TILDE2] = ACTIONS(1517), + [anon_sym_BANG_TILDE2] = ACTIONS(1517), + [anon_sym_like2] = ACTIONS(1517), + [anon_sym_not_DASHlike2] = ACTIONS(1517), + [anon_sym_STAR_STAR2] = ACTIONS(1517), + [anon_sym_PLUS_PLUS2] = ACTIONS(1517), + [anon_sym_SLASH2] = ACTIONS(1517), + [anon_sym_mod2] = ACTIONS(1517), + [anon_sym_SLASH_SLASH2] = ACTIONS(1517), + [anon_sym_PLUS2] = ACTIONS(1517), + [anon_sym_bit_DASHshl2] = ACTIONS(1517), + [anon_sym_bit_DASHshr2] = ACTIONS(1517), + [anon_sym_bit_DASHand2] = ACTIONS(1517), + [anon_sym_bit_DASHxor2] = ACTIONS(1517), + [anon_sym_bit_DASHor2] = ACTIONS(1517), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [sym__entry_separator] = ACTIONS(1519), + [anon_sym_COLON2] = ACTIONS(1517), + [anon_sym_QMARK2] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1517), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1517), + [anon_sym_out_GT_GT] = ACTIONS(1517), + [anon_sym_e_GT_GT] = ACTIONS(1517), + [anon_sym_o_GT_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(352)] = { - [sym_comment] = STATE(352), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1514), - [anon_sym_DASH_EQ] = ACTIONS(1514), - [anon_sym_STAR_EQ] = ACTIONS(1514), - [anon_sym_SLASH_EQ] = ACTIONS(1514), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1514), - [anon_sym_in] = ACTIONS(1514), - [sym__newline] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_err_GT_PIPE] = ACTIONS(1514), - [anon_sym_out_GT_PIPE] = ACTIONS(1514), - [anon_sym_e_GT_PIPE] = ACTIONS(1514), - [anon_sym_o_GT_PIPE] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1514), - [anon_sym_xor2] = ACTIONS(1514), - [anon_sym_or2] = ACTIONS(1514), - [anon_sym_not_DASHin2] = ACTIONS(1514), - [anon_sym_has2] = ACTIONS(1514), - [anon_sym_not_DASHhas2] = ACTIONS(1514), - [anon_sym_starts_DASHwith2] = ACTIONS(1514), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1514), - [anon_sym_ends_DASHwith2] = ACTIONS(1514), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1514), - [anon_sym_EQ_EQ2] = ACTIONS(1514), - [anon_sym_BANG_EQ2] = ACTIONS(1514), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1514), - [anon_sym_GT_EQ2] = ACTIONS(1514), - [anon_sym_EQ_TILDE2] = ACTIONS(1514), - [anon_sym_BANG_TILDE2] = ACTIONS(1514), - [anon_sym_like2] = ACTIONS(1514), - [anon_sym_not_DASHlike2] = ACTIONS(1514), - [anon_sym_STAR_STAR2] = ACTIONS(1514), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1514), - [anon_sym_SLASH_SLASH2] = ACTIONS(1514), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1514), - [anon_sym_bit_DASHshr2] = ACTIONS(1514), - [anon_sym_bit_DASHand2] = ACTIONS(1514), - [anon_sym_bit_DASHxor2] = ACTIONS(1514), - [anon_sym_bit_DASHor2] = ACTIONS(1514), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [sym__entry_separator] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1514), - [anon_sym_QMARK2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1514), - [anon_sym_out_GT_GT] = ACTIONS(1514), - [anon_sym_e_GT_GT] = ACTIONS(1514), - [anon_sym_o_GT_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [STATE(356)] = { + [sym_comment] = STATE(356), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1521), + [anon_sym_in] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_GT2] = ACTIONS(1521), + [anon_sym_DASH2] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_STAR2] = ACTIONS(1521), + [anon_sym_and2] = ACTIONS(1521), + [anon_sym_xor2] = ACTIONS(1521), + [anon_sym_or2] = ACTIONS(1521), + [anon_sym_not_DASHin2] = ACTIONS(1521), + [anon_sym_has2] = ACTIONS(1521), + [anon_sym_not_DASHhas2] = ACTIONS(1521), + [anon_sym_starts_DASHwith2] = ACTIONS(1521), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1521), + [anon_sym_ends_DASHwith2] = ACTIONS(1521), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1521), + [anon_sym_EQ_EQ2] = ACTIONS(1521), + [anon_sym_BANG_EQ2] = ACTIONS(1521), + [anon_sym_LT2] = ACTIONS(1521), + [anon_sym_LT_EQ2] = ACTIONS(1521), + [anon_sym_GT_EQ2] = ACTIONS(1521), + [anon_sym_EQ_TILDE2] = ACTIONS(1521), + [anon_sym_BANG_TILDE2] = ACTIONS(1521), + [anon_sym_like2] = ACTIONS(1521), + [anon_sym_not_DASHlike2] = ACTIONS(1521), + [anon_sym_STAR_STAR2] = ACTIONS(1521), + [anon_sym_PLUS_PLUS2] = ACTIONS(1521), + [anon_sym_SLASH2] = ACTIONS(1521), + [anon_sym_mod2] = ACTIONS(1521), + [anon_sym_SLASH_SLASH2] = ACTIONS(1521), + [anon_sym_PLUS2] = ACTIONS(1521), + [anon_sym_bit_DASHshl2] = ACTIONS(1521), + [anon_sym_bit_DASHshr2] = ACTIONS(1521), + [anon_sym_bit_DASHand2] = ACTIONS(1521), + [anon_sym_bit_DASHxor2] = ACTIONS(1521), + [anon_sym_bit_DASHor2] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1523), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1523), + [sym__entry_separator] = ACTIONS(1523), + [anon_sym_COLON2] = ACTIONS(1521), + [anon_sym_QMARK2] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_DOT2] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1521), + [anon_sym_out_GT] = ACTIONS(1521), + [anon_sym_e_GT] = ACTIONS(1521), + [anon_sym_o_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT] = ACTIONS(1521), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(353)] = { - [sym_path] = STATE(385), - [sym_comment] = STATE(353), - [aux_sym__where_predicate_lhs_repeat1] = STATE(353), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1526), - [anon_sym_DASH_EQ] = ACTIONS(1526), - [anon_sym_STAR_EQ] = ACTIONS(1526), - [anon_sym_SLASH_EQ] = ACTIONS(1526), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), + [STATE(357)] = { + [sym_comment] = STATE(357), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [sym__newline] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_err_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_GT_PIPE] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1525), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1525), + [anon_sym_xor2] = ACTIONS(1525), + [anon_sym_or2] = ACTIONS(1525), + [anon_sym_not_DASHin2] = ACTIONS(1525), + [anon_sym_has2] = ACTIONS(1525), + [anon_sym_not_DASHhas2] = ACTIONS(1525), + [anon_sym_starts_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1525), + [anon_sym_ends_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1525), + [anon_sym_EQ_EQ2] = ACTIONS(1525), + [anon_sym_BANG_EQ2] = ACTIONS(1525), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1525), + [anon_sym_GT_EQ2] = ACTIONS(1525), + [anon_sym_EQ_TILDE2] = ACTIONS(1525), + [anon_sym_BANG_TILDE2] = ACTIONS(1525), + [anon_sym_like2] = ACTIONS(1525), + [anon_sym_not_DASHlike2] = ACTIONS(1525), + [anon_sym_STAR_STAR2] = ACTIONS(1525), + [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1525), + [anon_sym_SLASH_SLASH2] = ACTIONS(1525), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1525), + [anon_sym_bit_DASHshr2] = ACTIONS(1525), + [anon_sym_bit_DASHand2] = ACTIONS(1525), + [anon_sym_bit_DASHxor2] = ACTIONS(1525), + [anon_sym_bit_DASHor2] = ACTIONS(1525), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [sym__entry_separator] = ACTIONS(1527), + [anon_sym_COLON2] = ACTIONS(1525), + [anon_sym_QMARK2] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1525), + [anon_sym_out_GT_GT] = ACTIONS(1525), + [anon_sym_e_GT_GT] = ACTIONS(1525), + [anon_sym_o_GT_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(354)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5047), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(354), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1531), + [STATE(358)] = { + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5084), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3719), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(358), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1539), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -75151,156 +75721,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(355)] = { - [sym_comment] = STATE(355), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), + [STATE(359)] = { + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5143), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3747), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(359), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(356)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5041), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3665), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(356), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -75311,156 +75801,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(357)] = { - [sym_comment] = STATE(357), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [sym__newline] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_err_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_GT_PIPE] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), - [anon_sym_RBRACK] = ACTIONS(1535), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1535), - [anon_sym_xor2] = ACTIONS(1535), - [anon_sym_or2] = ACTIONS(1535), - [anon_sym_not_DASHin2] = ACTIONS(1535), - [anon_sym_has2] = ACTIONS(1535), - [anon_sym_not_DASHhas2] = ACTIONS(1535), - [anon_sym_starts_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), - [anon_sym_ends_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), - [anon_sym_EQ_EQ2] = ACTIONS(1535), - [anon_sym_BANG_EQ2] = ACTIONS(1535), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1535), - [anon_sym_GT_EQ2] = ACTIONS(1535), - [anon_sym_EQ_TILDE2] = ACTIONS(1535), - [anon_sym_BANG_TILDE2] = ACTIONS(1535), - [anon_sym_like2] = ACTIONS(1535), - [anon_sym_not_DASHlike2] = ACTIONS(1535), - [anon_sym_STAR_STAR2] = ACTIONS(1535), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1535), - [anon_sym_SLASH_SLASH2] = ACTIONS(1535), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1535), - [anon_sym_bit_DASHshr2] = ACTIONS(1535), - [anon_sym_bit_DASHand2] = ACTIONS(1535), - [anon_sym_bit_DASHxor2] = ACTIONS(1535), - [anon_sym_bit_DASHor2] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1535), - [anon_sym_out_GT_GT] = ACTIONS(1535), - [anon_sym_e_GT_GT] = ACTIONS(1535), - [anon_sym_o_GT_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(358)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4926), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3675), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(358), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1539), + [STATE(360)] = { + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5253), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3760), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(360), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1543), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -75471,76 +75881,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(359)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5003), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3702), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(359), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1541), + [STATE(361)] = { + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4850), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3781), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(361), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1545), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -75551,236 +75961,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(360)] = { - [sym_comment] = STATE(360), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1543), - [sym__newline] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_err_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_GT_PIPE] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1543), - [anon_sym_xor2] = ACTIONS(1543), - [anon_sym_or2] = ACTIONS(1543), - [anon_sym_not_DASHin2] = ACTIONS(1543), - [anon_sym_has2] = ACTIONS(1543), - [anon_sym_not_DASHhas2] = ACTIONS(1543), - [anon_sym_starts_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), - [anon_sym_ends_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), - [anon_sym_EQ_EQ2] = ACTIONS(1543), - [anon_sym_BANG_EQ2] = ACTIONS(1543), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1543), - [anon_sym_GT_EQ2] = ACTIONS(1543), - [anon_sym_EQ_TILDE2] = ACTIONS(1543), - [anon_sym_BANG_TILDE2] = ACTIONS(1543), - [anon_sym_like2] = ACTIONS(1543), - [anon_sym_not_DASHlike2] = ACTIONS(1543), - [anon_sym_STAR_STAR2] = ACTIONS(1543), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1543), - [anon_sym_bit_DASHshr2] = ACTIONS(1543), - [anon_sym_bit_DASHand2] = ACTIONS(1543), - [anon_sym_bit_DASHxor2] = ACTIONS(1543), - [anon_sym_bit_DASHor2] = ACTIONS(1543), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [sym__entry_separator] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1543), - [anon_sym_QMARK2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(361)] = { - [sym_comment] = STATE(361), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(362)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5056), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3670), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5094), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3764), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(362), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), [anon_sym_RBRACK] = ACTIONS(1547), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -75792,315 +76042,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(363)] = { - [sym_path] = STATE(339), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5062), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3756), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(363), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), - [anon_sym_STAR_EQ] = ACTIONS(1458), - [anon_sym_SLASH_EQ] = ACTIONS(1458), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1458), - [anon_sym_in] = ACTIONS(1458), - [sym__newline] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_err_GT_PIPE] = ACTIONS(1458), - [anon_sym_out_GT_PIPE] = ACTIONS(1458), - [anon_sym_e_GT_PIPE] = ACTIONS(1458), - [anon_sym_o_GT_PIPE] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1458), - [anon_sym_xor2] = ACTIONS(1458), - [anon_sym_or2] = ACTIONS(1458), - [anon_sym_not_DASHin2] = ACTIONS(1458), - [anon_sym_has2] = ACTIONS(1458), - [anon_sym_not_DASHhas2] = ACTIONS(1458), - [anon_sym_starts_DASHwith2] = ACTIONS(1458), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), - [anon_sym_ends_DASHwith2] = ACTIONS(1458), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), - [anon_sym_EQ_EQ2] = ACTIONS(1458), - [anon_sym_BANG_EQ2] = ACTIONS(1458), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1458), - [anon_sym_GT_EQ2] = ACTIONS(1458), - [anon_sym_EQ_TILDE2] = ACTIONS(1458), - [anon_sym_BANG_TILDE2] = ACTIONS(1458), - [anon_sym_like2] = ACTIONS(1458), - [anon_sym_not_DASHlike2] = ACTIONS(1458), - [anon_sym_STAR_STAR2] = ACTIONS(1458), - [anon_sym_PLUS_PLUS2] = ACTIONS(1458), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1458), - [anon_sym_SLASH_SLASH2] = ACTIONS(1458), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1458), - [anon_sym_bit_DASHshr2] = ACTIONS(1458), - [anon_sym_bit_DASHand2] = ACTIONS(1458), - [anon_sym_bit_DASHxor2] = ACTIONS(1458), - [anon_sym_bit_DASHor2] = ACTIONS(1458), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [sym__entry_separator] = ACTIONS(1460), - [anon_sym_COLON2] = ACTIONS(1458), - [anon_sym_DOT2] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1458), - [anon_sym_out_GT_GT] = ACTIONS(1458), - [anon_sym_e_GT_GT] = ACTIONS(1458), - [anon_sym_o_GT_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(364)] = { - [sym_path] = STATE(339), - [sym_comment] = STATE(364), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1524), - [anon_sym_DASH_EQ] = ACTIONS(1524), - [anon_sym_STAR_EQ] = ACTIONS(1524), - [anon_sym_SLASH_EQ] = ACTIONS(1524), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1524), - [anon_sym_in] = ACTIONS(1524), - [sym__newline] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_err_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_GT_PIPE] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1524), - [anon_sym_xor2] = ACTIONS(1524), - [anon_sym_or2] = ACTIONS(1524), - [anon_sym_not_DASHin2] = ACTIONS(1524), - [anon_sym_has2] = ACTIONS(1524), - [anon_sym_not_DASHhas2] = ACTIONS(1524), - [anon_sym_starts_DASHwith2] = ACTIONS(1524), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1524), - [anon_sym_ends_DASHwith2] = ACTIONS(1524), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1524), - [anon_sym_EQ_EQ2] = ACTIONS(1524), - [anon_sym_BANG_EQ2] = ACTIONS(1524), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1524), - [anon_sym_GT_EQ2] = ACTIONS(1524), - [anon_sym_EQ_TILDE2] = ACTIONS(1524), - [anon_sym_BANG_TILDE2] = ACTIONS(1524), - [anon_sym_like2] = ACTIONS(1524), - [anon_sym_not_DASHlike2] = ACTIONS(1524), - [anon_sym_STAR_STAR2] = ACTIONS(1524), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1524), - [anon_sym_SLASH_SLASH2] = ACTIONS(1524), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1524), - [anon_sym_bit_DASHshr2] = ACTIONS(1524), - [anon_sym_bit_DASHand2] = ACTIONS(1524), - [anon_sym_bit_DASHxor2] = ACTIONS(1524), - [anon_sym_bit_DASHor2] = ACTIONS(1524), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [sym__entry_separator] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1524), - [anon_sym_DOT2] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1524), - [anon_sym_out_GT_GT] = ACTIONS(1524), - [anon_sym_e_GT_GT] = ACTIONS(1524), - [anon_sym_o_GT_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(365)] = { - [sym_comment] = STATE(365), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1478), - [anon_sym_DASH_EQ] = ACTIONS(1478), - [anon_sym_STAR_EQ] = ACTIONS(1478), - [anon_sym_SLASH_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [sym__newline] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_err_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_GT_PIPE] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1478), - [anon_sym_xor2] = ACTIONS(1478), - [anon_sym_or2] = ACTIONS(1478), - [anon_sym_not_DASHin2] = ACTIONS(1478), - [anon_sym_has2] = ACTIONS(1478), - [anon_sym_not_DASHhas2] = ACTIONS(1478), - [anon_sym_starts_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), - [anon_sym_ends_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), - [anon_sym_EQ_EQ2] = ACTIONS(1478), - [anon_sym_BANG_EQ2] = ACTIONS(1478), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1478), - [anon_sym_GT_EQ2] = ACTIONS(1478), - [anon_sym_EQ_TILDE2] = ACTIONS(1478), - [anon_sym_BANG_TILDE2] = ACTIONS(1478), - [anon_sym_like2] = ACTIONS(1478), - [anon_sym_not_DASHlike2] = ACTIONS(1478), - [anon_sym_STAR_STAR2] = ACTIONS(1478), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1478), - [anon_sym_SLASH_SLASH2] = ACTIONS(1478), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1478), - [anon_sym_bit_DASHshr2] = ACTIONS(1478), - [anon_sym_bit_DASHand2] = ACTIONS(1478), - [anon_sym_bit_DASHxor2] = ACTIONS(1478), - [anon_sym_bit_DASHor2] = ACTIONS(1478), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [sym__entry_separator] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1478), - [anon_sym_QMARK2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1478), - [anon_sym_out_GT_GT] = ACTIONS(1478), - [anon_sym_e_GT_GT] = ACTIONS(1478), - [anon_sym_o_GT_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(366)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4934), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3650), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(366), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1552), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -76111,76 +76121,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(367)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5014), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3728), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(367), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1554), + [STATE(364)] = { + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5109), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3766), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(364), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1551), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -76191,169 +76201,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, + [STATE(365)] = { + [sym_path] = STATE(346), + [sym_comment] = STATE(365), + [aux_sym__where_predicate_lhs_repeat1] = STATE(366), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_EQ] = ACTIONS(1492), + [anon_sym_DASH_EQ] = ACTIONS(1492), + [anon_sym_STAR_EQ] = ACTIONS(1492), + [anon_sym_SLASH_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1492), + [anon_sym_in] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1492), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_has2] = ACTIONS(1492), + [anon_sym_not_DASHhas2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_like2] = ACTIONS(1492), + [anon_sym_not_DASHlike2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1492), + [anon_sym_SLASH2] = ACTIONS(1492), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1492), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), + [sym__entry_separator] = ACTIONS(1494), + [anon_sym_COLON2] = ACTIONS(1492), + [anon_sym_DOT2] = ACTIONS(1456), + [anon_sym_err_GT] = ACTIONS(1492), + [anon_sym_out_GT] = ACTIONS(1492), + [anon_sym_e_GT] = ACTIONS(1492), + [anon_sym_o_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT] = ACTIONS(1492), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(366)] = { + [sym_path] = STATE(346), + [sym_comment] = STATE(366), + [aux_sym__where_predicate_lhs_repeat1] = STATE(366), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1496), + [anon_sym_DASH_EQ] = ACTIONS(1496), + [anon_sym_STAR_EQ] = ACTIONS(1496), + [anon_sym_SLASH_EQ] = ACTIONS(1496), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1496), + [anon_sym_in] = ACTIONS(1496), + [sym__newline] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_err_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_GT_PIPE] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1496), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1496), + [anon_sym_xor2] = ACTIONS(1496), + [anon_sym_or2] = ACTIONS(1496), + [anon_sym_not_DASHin2] = ACTIONS(1496), + [anon_sym_has2] = ACTIONS(1496), + [anon_sym_not_DASHhas2] = ACTIONS(1496), + [anon_sym_starts_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1496), + [anon_sym_ends_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1496), + [anon_sym_EQ_EQ2] = ACTIONS(1496), + [anon_sym_BANG_EQ2] = ACTIONS(1496), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1496), + [anon_sym_GT_EQ2] = ACTIONS(1496), + [anon_sym_EQ_TILDE2] = ACTIONS(1496), + [anon_sym_BANG_TILDE2] = ACTIONS(1496), + [anon_sym_like2] = ACTIONS(1496), + [anon_sym_not_DASHlike2] = ACTIONS(1496), + [anon_sym_STAR_STAR2] = ACTIONS(1496), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1496), + [anon_sym_SLASH_SLASH2] = ACTIONS(1496), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1496), + [anon_sym_bit_DASHshr2] = ACTIONS(1496), + [anon_sym_bit_DASHand2] = ACTIONS(1496), + [anon_sym_bit_DASHxor2] = ACTIONS(1496), + [anon_sym_bit_DASHor2] = ACTIONS(1496), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [sym__entry_separator] = ACTIONS(1498), + [anon_sym_COLON2] = ACTIONS(1496), + [anon_sym_DOT2] = ACTIONS(1553), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1496), + [anon_sym_out_GT_GT] = ACTIONS(1496), + [anon_sym_e_GT_GT] = ACTIONS(1496), + [anon_sym_o_GT_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(367)] = { + [sym_comment] = STATE(367), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1505), + [anon_sym_in] = ACTIONS(1505), + [sym__newline] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_err_GT_PIPE] = ACTIONS(1505), + [anon_sym_out_GT_PIPE] = ACTIONS(1505), + [anon_sym_e_GT_PIPE] = ACTIONS(1505), + [anon_sym_o_GT_PIPE] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1505), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_STAR2] = ACTIONS(1505), + [anon_sym_and2] = ACTIONS(1505), + [anon_sym_xor2] = ACTIONS(1505), + [anon_sym_or2] = ACTIONS(1505), + [anon_sym_not_DASHin2] = ACTIONS(1505), + [anon_sym_has2] = ACTIONS(1505), + [anon_sym_not_DASHhas2] = ACTIONS(1505), + [anon_sym_starts_DASHwith2] = ACTIONS(1505), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1505), + [anon_sym_ends_DASHwith2] = ACTIONS(1505), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1505), + [anon_sym_EQ_EQ2] = ACTIONS(1505), + [anon_sym_BANG_EQ2] = ACTIONS(1505), + [anon_sym_LT2] = ACTIONS(1505), + [anon_sym_LT_EQ2] = ACTIONS(1505), + [anon_sym_GT_EQ2] = ACTIONS(1505), + [anon_sym_EQ_TILDE2] = ACTIONS(1505), + [anon_sym_BANG_TILDE2] = ACTIONS(1505), + [anon_sym_like2] = ACTIONS(1505), + [anon_sym_not_DASHlike2] = ACTIONS(1505), + [anon_sym_STAR_STAR2] = ACTIONS(1505), + [anon_sym_PLUS_PLUS2] = ACTIONS(1505), + [anon_sym_SLASH2] = ACTIONS(1505), + [anon_sym_mod2] = ACTIONS(1505), + [anon_sym_SLASH_SLASH2] = ACTIONS(1505), + [anon_sym_PLUS2] = ACTIONS(1505), + [anon_sym_bit_DASHshl2] = ACTIONS(1505), + [anon_sym_bit_DASHshr2] = ACTIONS(1505), + [anon_sym_bit_DASHand2] = ACTIONS(1505), + [anon_sym_bit_DASHxor2] = ACTIONS(1505), + [anon_sym_bit_DASHor2] = ACTIONS(1505), + [anon_sym_DOT_DOT2] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), + [sym__entry_separator] = ACTIONS(1507), + [anon_sym_COLON2] = ACTIONS(1505), + [anon_sym_QMARK2] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_DOT2] = ACTIONS(1505), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1505), + [anon_sym_out_GT_GT] = ACTIONS(1505), + [anon_sym_e_GT_GT] = ACTIONS(1505), + [anon_sym_o_GT_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(368)] = { + [sym_cell_path] = STATE(434), + [sym_path] = STATE(427), [sym_comment] = STATE(368), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1556), - [anon_sym_DASH_EQ] = ACTIONS(1556), - [anon_sym_STAR_EQ] = ACTIONS(1556), - [anon_sym_SLASH_EQ] = ACTIONS(1556), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RBRACK] = ACTIONS(1556), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1556), - [anon_sym_xor2] = ACTIONS(1556), - [anon_sym_or2] = ACTIONS(1556), - [anon_sym_not_DASHin2] = ACTIONS(1556), - [anon_sym_has2] = ACTIONS(1556), - [anon_sym_not_DASHhas2] = ACTIONS(1556), - [anon_sym_starts_DASHwith2] = ACTIONS(1556), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1556), - [anon_sym_ends_DASHwith2] = ACTIONS(1556), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1556), - [anon_sym_EQ_EQ2] = ACTIONS(1556), - [anon_sym_BANG_EQ2] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1556), - [anon_sym_GT_EQ2] = ACTIONS(1556), - [anon_sym_EQ_TILDE2] = ACTIONS(1556), - [anon_sym_BANG_TILDE2] = ACTIONS(1556), - [anon_sym_like2] = ACTIONS(1556), - [anon_sym_not_DASHlike2] = ACTIONS(1556), - [anon_sym_STAR_STAR2] = ACTIONS(1556), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1556), - [anon_sym_SLASH_SLASH2] = ACTIONS(1556), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1556), - [anon_sym_bit_DASHshr2] = ACTIONS(1556), - [anon_sym_bit_DASHand2] = ACTIONS(1556), - [anon_sym_bit_DASHxor2] = ACTIONS(1556), - [anon_sym_bit_DASHor2] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [sym__entry_separator] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym__where_predicate_lhs_repeat1] = STATE(392), + [ts_builtin_sym_end] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1446), + [anon_sym_in] = ACTIONS(1446), + [sym__newline] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_err_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_GT_PIPE] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), + [anon_sym_GT2] = ACTIONS(1444), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1444), + [anon_sym_and2] = ACTIONS(1446), + [anon_sym_xor2] = ACTIONS(1446), + [anon_sym_or2] = ACTIONS(1446), + [anon_sym_not_DASHin2] = ACTIONS(1446), + [anon_sym_has2] = ACTIONS(1446), + [anon_sym_not_DASHhas2] = ACTIONS(1446), + [anon_sym_starts_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1446), + [anon_sym_ends_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), + [anon_sym_EQ_EQ2] = ACTIONS(1446), + [anon_sym_BANG_EQ2] = ACTIONS(1446), + [anon_sym_LT2] = ACTIONS(1444), + [anon_sym_LT_EQ2] = ACTIONS(1446), + [anon_sym_GT_EQ2] = ACTIONS(1446), + [anon_sym_EQ_TILDE2] = ACTIONS(1446), + [anon_sym_BANG_TILDE2] = ACTIONS(1446), + [anon_sym_like2] = ACTIONS(1446), + [anon_sym_not_DASHlike2] = ACTIONS(1446), + [anon_sym_STAR_STAR2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS2] = ACTIONS(1444), + [anon_sym_SLASH2] = ACTIONS(1444), + [anon_sym_mod2] = ACTIONS(1446), + [anon_sym_SLASH_SLASH2] = ACTIONS(1446), + [anon_sym_PLUS2] = ACTIONS(1444), + [anon_sym_bit_DASHshl2] = ACTIONS(1446), + [anon_sym_bit_DASHshr2] = ACTIONS(1446), + [anon_sym_bit_DASHand2] = ACTIONS(1446), + [anon_sym_bit_DASHxor2] = ACTIONS(1446), + [anon_sym_bit_DASHor2] = ACTIONS(1446), + [anon_sym_DOT_DOT2] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1446), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1446), + [anon_sym_DOT2] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1444), + [anon_sym_out_GT] = ACTIONS(1444), + [anon_sym_e_GT] = ACTIONS(1444), + [anon_sym_o_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT] = ACTIONS(1444), + [anon_sym_err_GT_GT] = ACTIONS(1446), + [anon_sym_out_GT_GT] = ACTIONS(1446), + [anon_sym_e_GT_GT] = ACTIONS(1446), + [anon_sym_o_GT_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(369)] = { [sym_comment] = STATE(369), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), }, [STATE(370)] = { - [sym_cell_path] = STATE(453), - [sym_path] = STATE(417), + [sym__path_suffix] = STATE(422), [sym_comment] = STATE(370), - [aux_sym__where_predicate_lhs_repeat1] = STATE(381), [ts_builtin_sym_end] = ACTIONS(1434), [anon_sym_EQ] = ACTIONS(1432), [anon_sym_PLUS_EQ] = ACTIONS(1434), @@ -76409,7 +76657,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1432), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_QMARK2] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_DOT2] = ACTIONS(1432), [anon_sym_err_GT] = ACTIONS(1432), [anon_sym_out_GT] = ACTIONS(1432), [anon_sym_e_GT] = ACTIONS(1432), @@ -76429,47 +76679,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(371)] = { - [sym__match_pattern_expression] = STATE(4290), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4583), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3774), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [sym__match_pattern_expression] = STATE(4133), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3878), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4411), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4412), + [sym_val_bool] = STATE(3969), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3882), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4412), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4412), + [sym_val_filesize] = STATE(4412), + [sym_val_binary] = STATE(4412), + [sym_val_string] = STATE(4412), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_val_entry] = STATE(4428), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4412), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(3908), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(371), [aux_sym__types_body_repeat1] = STATE(2117), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1424), - [aux_sym_list_body_repeat1] = STATE(630), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1417), + [aux_sym_list_body_repeat1] = STATE(529), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), @@ -76509,387 +76759,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(372)] = { [sym_comment] = STATE(372), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1452), [anon_sym_QMARK2] = ACTIONS(1570), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), }, [STATE(373)] = { [sym_comment] = STATE(373), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1438), - [anon_sym_in] = ACTIONS(1438), - [sym__newline] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_err_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_GT_PIPE] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1438), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1438), - [anon_sym_xor2] = ACTIONS(1438), - [anon_sym_or2] = ACTIONS(1438), - [anon_sym_not_DASHin2] = ACTIONS(1438), - [anon_sym_has2] = ACTIONS(1438), - [anon_sym_not_DASHhas2] = ACTIONS(1438), - [anon_sym_starts_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1438), - [anon_sym_ends_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1438), - [anon_sym_EQ_EQ2] = ACTIONS(1438), - [anon_sym_BANG_EQ2] = ACTIONS(1438), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1438), - [anon_sym_GT_EQ2] = ACTIONS(1438), - [anon_sym_EQ_TILDE2] = ACTIONS(1438), - [anon_sym_BANG_TILDE2] = ACTIONS(1438), - [anon_sym_like2] = ACTIONS(1438), - [anon_sym_not_DASHlike2] = ACTIONS(1438), - [anon_sym_STAR_STAR2] = ACTIONS(1438), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1438), - [anon_sym_SLASH_SLASH2] = ACTIONS(1438), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1438), - [anon_sym_bit_DASHshr2] = ACTIONS(1438), - [anon_sym_bit_DASHand2] = ACTIONS(1438), - [anon_sym_bit_DASHxor2] = ACTIONS(1438), - [anon_sym_bit_DASHor2] = ACTIONS(1438), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [sym__entry_separator] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1438), - [anon_sym_out_GT_GT] = ACTIONS(1438), - [anon_sym_e_GT_GT] = ACTIONS(1438), - [anon_sym_o_GT_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [sym__entry_separator] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), [anon_sym_POUND] = ACTIONS(103), }, [STATE(374)] = { - [sym__path_suffix] = STATE(432), [sym_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_PLUS_EQ] = ACTIONS(1572), + [anon_sym_DASH_EQ] = ACTIONS(1572), + [anon_sym_STAR_EQ] = ACTIONS(1572), + [anon_sym_SLASH_EQ] = ACTIONS(1572), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1572), + [anon_sym_in] = ACTIONS(1572), + [sym__newline] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_err_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_GT_PIPE] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1572), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1572), + [anon_sym_xor2] = ACTIONS(1572), + [anon_sym_or2] = ACTIONS(1572), + [anon_sym_not_DASHin2] = ACTIONS(1572), + [anon_sym_has2] = ACTIONS(1572), + [anon_sym_not_DASHhas2] = ACTIONS(1572), + [anon_sym_starts_DASHwith2] = ACTIONS(1572), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1572), + [anon_sym_ends_DASHwith2] = ACTIONS(1572), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1572), + [anon_sym_EQ_EQ2] = ACTIONS(1572), + [anon_sym_BANG_EQ2] = ACTIONS(1572), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1572), + [anon_sym_GT_EQ2] = ACTIONS(1572), + [anon_sym_EQ_TILDE2] = ACTIONS(1572), + [anon_sym_BANG_TILDE2] = ACTIONS(1572), + [anon_sym_like2] = ACTIONS(1572), + [anon_sym_not_DASHlike2] = ACTIONS(1572), + [anon_sym_STAR_STAR2] = ACTIONS(1572), + [anon_sym_PLUS_PLUS2] = ACTIONS(1572), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1572), + [anon_sym_SLASH_SLASH2] = ACTIONS(1572), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1572), + [anon_sym_bit_DASHshr2] = ACTIONS(1572), + [anon_sym_bit_DASHand2] = ACTIONS(1572), + [anon_sym_bit_DASHxor2] = ACTIONS(1572), + [anon_sym_bit_DASHor2] = ACTIONS(1572), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [sym__entry_separator] = ACTIONS(1574), + [anon_sym_COLON2] = ACTIONS(1572), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1572), + [anon_sym_out_GT_GT] = ACTIONS(1572), + [anon_sym_e_GT_GT] = ACTIONS(1572), + [anon_sym_o_GT_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(375)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5031), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(376)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4944), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(376), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), [anon_sym_RBRACK] = ACTIONS(1580), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -76900,230 +77072,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(377)] = { - [sym__expr_parenthesized_immediate] = STATE(692), - [sym__immediate_decimal] = STATE(675), - [sym_val_variable] = STATE(692), - [sym_comment] = STATE(377), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1590), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(378)] = { - [sym__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(705), - [sym_val_variable] = STATE(698), - [sym_comment] = STATE(378), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1600), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(379)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4870), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(379), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [STATE(376)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4995), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(376), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1602), + [anon_sym_RBRACK] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -77134,88 +77150,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(380)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5080), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(380), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [STATE(377)] = { + [sym_comment] = STATE(377), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1531), + [anon_sym_in] = ACTIONS(1531), + [sym__newline] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_err_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_GT_PIPE] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), + [anon_sym_RPAREN] = ACTIONS(1531), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1531), + [anon_sym_xor2] = ACTIONS(1531), + [anon_sym_or2] = ACTIONS(1531), + [anon_sym_not_DASHin2] = ACTIONS(1531), + [anon_sym_has2] = ACTIONS(1531), + [anon_sym_not_DASHhas2] = ACTIONS(1531), + [anon_sym_starts_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), + [anon_sym_ends_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), + [anon_sym_EQ_EQ2] = ACTIONS(1531), + [anon_sym_BANG_EQ2] = ACTIONS(1531), + [anon_sym_LT2] = ACTIONS(1529), + [anon_sym_LT_EQ2] = ACTIONS(1531), + [anon_sym_GT_EQ2] = ACTIONS(1531), + [anon_sym_EQ_TILDE2] = ACTIONS(1531), + [anon_sym_BANG_TILDE2] = ACTIONS(1531), + [anon_sym_like2] = ACTIONS(1531), + [anon_sym_not_DASHlike2] = ACTIONS(1531), + [anon_sym_STAR_STAR2] = ACTIONS(1531), + [anon_sym_PLUS_PLUS2] = ACTIONS(1529), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1531), + [anon_sym_SLASH_SLASH2] = ACTIONS(1531), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_bit_DASHshl2] = ACTIONS(1531), + [anon_sym_bit_DASHshr2] = ACTIONS(1531), + [anon_sym_bit_DASHand2] = ACTIONS(1531), + [anon_sym_bit_DASHxor2] = ACTIONS(1531), + [anon_sym_bit_DASHor2] = ACTIONS(1531), + [anon_sym_DOT_DOT2] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), + [anon_sym_COLON2] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1529), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [anon_sym_err_GT_GT] = ACTIONS(1531), + [anon_sym_out_GT_GT] = ACTIONS(1531), + [anon_sym_e_GT_GT] = ACTIONS(1531), + [anon_sym_o_GT_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(381)] = { - [sym_path] = STATE(417), - [sym_comment] = STATE(381), - [aux_sym__where_predicate_lhs_repeat1] = STATE(382), + [STATE(378)] = { + [sym__expr_parenthesized_immediate] = STATE(681), + [sym__immediate_decimal] = STATE(544), + [sym_val_variable] = STATE(681), + [sym_comment] = STATE(378), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1592), + [aux_sym__immediate_decimal_token1] = ACTIONS(1594), + [aux_sym__immediate_decimal_token2] = ACTIONS(1594), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(379)] = { + [sym_comment] = STATE(379), + [ts_builtin_sym_end] = ACTIONS(1507), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1507), + [anon_sym_in] = ACTIONS(1507), + [sym__newline] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_err_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_GT_PIPE] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1507), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1505), + [anon_sym_STAR2] = ACTIONS(1505), + [anon_sym_and2] = ACTIONS(1507), + [anon_sym_xor2] = ACTIONS(1507), + [anon_sym_or2] = ACTIONS(1507), + [anon_sym_not_DASHin2] = ACTIONS(1507), + [anon_sym_has2] = ACTIONS(1507), + [anon_sym_not_DASHhas2] = ACTIONS(1507), + [anon_sym_starts_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1507), + [anon_sym_ends_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1507), + [anon_sym_EQ_EQ2] = ACTIONS(1507), + [anon_sym_BANG_EQ2] = ACTIONS(1507), + [anon_sym_LT2] = ACTIONS(1505), + [anon_sym_LT_EQ2] = ACTIONS(1507), + [anon_sym_GT_EQ2] = ACTIONS(1507), + [anon_sym_EQ_TILDE2] = ACTIONS(1507), + [anon_sym_BANG_TILDE2] = ACTIONS(1507), + [anon_sym_like2] = ACTIONS(1507), + [anon_sym_not_DASHlike2] = ACTIONS(1507), + [anon_sym_STAR_STAR2] = ACTIONS(1507), + [anon_sym_PLUS_PLUS2] = ACTIONS(1505), + [anon_sym_SLASH2] = ACTIONS(1505), + [anon_sym_mod2] = ACTIONS(1507), + [anon_sym_SLASH_SLASH2] = ACTIONS(1507), + [anon_sym_PLUS2] = ACTIONS(1505), + [anon_sym_bit_DASHshl2] = ACTIONS(1507), + [anon_sym_bit_DASHshr2] = ACTIONS(1507), + [anon_sym_bit_DASHand2] = ACTIONS(1507), + [anon_sym_bit_DASHxor2] = ACTIONS(1507), + [anon_sym_bit_DASHor2] = ACTIONS(1507), + [anon_sym_DOT_DOT2] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), + [anon_sym_QMARK2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_DOT2] = ACTIONS(1505), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1507), + [anon_sym_out_GT_GT] = ACTIONS(1507), + [anon_sym_e_GT_GT] = ACTIONS(1507), + [anon_sym_o_GT_GT] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(380)] = { + [sym_comment] = STATE(380), [ts_builtin_sym_end] = ACTIONS(1460), [anon_sym_EQ] = ACTIONS(1458), [anon_sym_PLUS_EQ] = ACTIONS(1460), @@ -77271,7 +77441,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1458), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_QMARK2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1458), [anon_sym_err_GT] = ACTIONS(1458), [anon_sym_out_GT] = ACTIONS(1458), [anon_sym_e_GT] = ACTIONS(1458), @@ -77290,152 +77462,386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(381)] = { + [sym_comment] = STATE(381), + [ts_builtin_sym_end] = ACTIONS(1511), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1511), + [anon_sym_DASH_EQ] = ACTIONS(1511), + [anon_sym_STAR_EQ] = ACTIONS(1511), + [anon_sym_SLASH_EQ] = ACTIONS(1511), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1511), + [anon_sym_in] = ACTIONS(1511), + [sym__newline] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_err_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_GT_PIPE] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1511), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1509), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1511), + [anon_sym_xor2] = ACTIONS(1511), + [anon_sym_or2] = ACTIONS(1511), + [anon_sym_not_DASHin2] = ACTIONS(1511), + [anon_sym_has2] = ACTIONS(1511), + [anon_sym_not_DASHhas2] = ACTIONS(1511), + [anon_sym_starts_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1511), + [anon_sym_ends_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1511), + [anon_sym_EQ_EQ2] = ACTIONS(1511), + [anon_sym_BANG_EQ2] = ACTIONS(1511), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1511), + [anon_sym_GT_EQ2] = ACTIONS(1511), + [anon_sym_EQ_TILDE2] = ACTIONS(1511), + [anon_sym_BANG_TILDE2] = ACTIONS(1511), + [anon_sym_like2] = ACTIONS(1511), + [anon_sym_not_DASHlike2] = ACTIONS(1511), + [anon_sym_STAR_STAR2] = ACTIONS(1511), + [anon_sym_PLUS_PLUS2] = ACTIONS(1509), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1511), + [anon_sym_SLASH_SLASH2] = ACTIONS(1511), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1511), + [anon_sym_bit_DASHshr2] = ACTIONS(1511), + [anon_sym_bit_DASHand2] = ACTIONS(1511), + [anon_sym_bit_DASHxor2] = ACTIONS(1511), + [anon_sym_bit_DASHor2] = ACTIONS(1511), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [anon_sym_QMARK2] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1511), + [anon_sym_out_GT_GT] = ACTIONS(1511), + [anon_sym_e_GT_GT] = ACTIONS(1511), + [anon_sym_o_GT_GT] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(382)] = { - [sym_path] = STATE(417), [sym_comment] = STATE(382), - [aux_sym__where_predicate_lhs_repeat1] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1526), - [anon_sym_DASH_EQ] = ACTIONS(1526), - [anon_sym_STAR_EQ] = ACTIONS(1526), - [anon_sym_SLASH_EQ] = ACTIONS(1526), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1604), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), + [ts_builtin_sym_end] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_PLUS_EQ] = ACTIONS(1519), + [anon_sym_DASH_EQ] = ACTIONS(1519), + [anon_sym_STAR_EQ] = ACTIONS(1519), + [anon_sym_SLASH_EQ] = ACTIONS(1519), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1519), + [anon_sym_in] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_GT2] = ACTIONS(1517), + [anon_sym_DASH2] = ACTIONS(1517), + [anon_sym_STAR2] = ACTIONS(1517), + [anon_sym_and2] = ACTIONS(1519), + [anon_sym_xor2] = ACTIONS(1519), + [anon_sym_or2] = ACTIONS(1519), + [anon_sym_not_DASHin2] = ACTIONS(1519), + [anon_sym_has2] = ACTIONS(1519), + [anon_sym_not_DASHhas2] = ACTIONS(1519), + [anon_sym_starts_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1519), + [anon_sym_ends_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1519), + [anon_sym_EQ_EQ2] = ACTIONS(1519), + [anon_sym_BANG_EQ2] = ACTIONS(1519), + [anon_sym_LT2] = ACTIONS(1517), + [anon_sym_LT_EQ2] = ACTIONS(1519), + [anon_sym_GT_EQ2] = ACTIONS(1519), + [anon_sym_EQ_TILDE2] = ACTIONS(1519), + [anon_sym_BANG_TILDE2] = ACTIONS(1519), + [anon_sym_like2] = ACTIONS(1519), + [anon_sym_not_DASHlike2] = ACTIONS(1519), + [anon_sym_STAR_STAR2] = ACTIONS(1519), + [anon_sym_PLUS_PLUS2] = ACTIONS(1517), + [anon_sym_SLASH2] = ACTIONS(1517), + [anon_sym_mod2] = ACTIONS(1519), + [anon_sym_SLASH_SLASH2] = ACTIONS(1519), + [anon_sym_PLUS2] = ACTIONS(1517), + [anon_sym_bit_DASHshl2] = ACTIONS(1519), + [anon_sym_bit_DASHshr2] = ACTIONS(1519), + [anon_sym_bit_DASHand2] = ACTIONS(1519), + [anon_sym_bit_DASHxor2] = ACTIONS(1519), + [anon_sym_bit_DASHor2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [anon_sym_QMARK2] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1517), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(3), }, [STATE(383)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5091), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(383), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [ts_builtin_sym_end] = ACTIONS(1523), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_PLUS_EQ] = ACTIONS(1523), + [anon_sym_DASH_EQ] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1523), + [anon_sym_SLASH_EQ] = ACTIONS(1523), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1523), + [anon_sym_in] = ACTIONS(1523), + [sym__newline] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_err_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_GT_PIPE] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1523), + [anon_sym_GT2] = ACTIONS(1521), + [anon_sym_DASH2] = ACTIONS(1521), + [anon_sym_STAR2] = ACTIONS(1521), + [anon_sym_and2] = ACTIONS(1523), + [anon_sym_xor2] = ACTIONS(1523), + [anon_sym_or2] = ACTIONS(1523), + [anon_sym_not_DASHin2] = ACTIONS(1523), + [anon_sym_has2] = ACTIONS(1523), + [anon_sym_not_DASHhas2] = ACTIONS(1523), + [anon_sym_starts_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1523), + [anon_sym_ends_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1523), + [anon_sym_EQ_EQ2] = ACTIONS(1523), + [anon_sym_BANG_EQ2] = ACTIONS(1523), + [anon_sym_LT2] = ACTIONS(1521), + [anon_sym_LT_EQ2] = ACTIONS(1523), + [anon_sym_GT_EQ2] = ACTIONS(1523), + [anon_sym_EQ_TILDE2] = ACTIONS(1523), + [anon_sym_BANG_TILDE2] = ACTIONS(1523), + [anon_sym_like2] = ACTIONS(1523), + [anon_sym_not_DASHlike2] = ACTIONS(1523), + [anon_sym_STAR_STAR2] = ACTIONS(1523), + [anon_sym_PLUS_PLUS2] = ACTIONS(1521), + [anon_sym_SLASH2] = ACTIONS(1521), + [anon_sym_mod2] = ACTIONS(1523), + [anon_sym_SLASH_SLASH2] = ACTIONS(1523), + [anon_sym_PLUS2] = ACTIONS(1521), + [anon_sym_bit_DASHshl2] = ACTIONS(1523), + [anon_sym_bit_DASHshr2] = ACTIONS(1523), + [anon_sym_bit_DASHand2] = ACTIONS(1523), + [anon_sym_bit_DASHxor2] = ACTIONS(1523), + [anon_sym_bit_DASHor2] = ACTIONS(1523), + [anon_sym_DOT_DOT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1523), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1523), + [anon_sym_QMARK2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_DOT2] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1521), + [anon_sym_out_GT] = ACTIONS(1521), + [anon_sym_e_GT] = ACTIONS(1521), + [anon_sym_o_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT] = ACTIONS(1521), + [anon_sym_err_GT_GT] = ACTIONS(1523), + [anon_sym_out_GT_GT] = ACTIONS(1523), + [anon_sym_e_GT_GT] = ACTIONS(1523), + [anon_sym_o_GT_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(384)] = { + [sym_comment] = STATE(384), + [ts_builtin_sym_end] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1527), + [anon_sym_in] = ACTIONS(1527), + [sym__newline] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_err_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_GT_PIPE] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1527), + [anon_sym_xor2] = ACTIONS(1527), + [anon_sym_or2] = ACTIONS(1527), + [anon_sym_not_DASHin2] = ACTIONS(1527), + [anon_sym_has2] = ACTIONS(1527), + [anon_sym_not_DASHhas2] = ACTIONS(1527), + [anon_sym_starts_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), + [anon_sym_ends_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), + [anon_sym_EQ_EQ2] = ACTIONS(1527), + [anon_sym_BANG_EQ2] = ACTIONS(1527), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1527), + [anon_sym_GT_EQ2] = ACTIONS(1527), + [anon_sym_EQ_TILDE2] = ACTIONS(1527), + [anon_sym_BANG_TILDE2] = ACTIONS(1527), + [anon_sym_like2] = ACTIONS(1527), + [anon_sym_not_DASHlike2] = ACTIONS(1527), + [anon_sym_STAR_STAR2] = ACTIONS(1527), + [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1527), + [anon_sym_SLASH_SLASH2] = ACTIONS(1527), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1527), + [anon_sym_bit_DASHshr2] = ACTIONS(1527), + [anon_sym_bit_DASHand2] = ACTIONS(1527), + [anon_sym_bit_DASHxor2] = ACTIONS(1527), + [anon_sym_bit_DASHor2] = ACTIONS(1527), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [anon_sym_QMARK2] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1527), + [anon_sym_out_GT_GT] = ACTIONS(1527), + [anon_sym_e_GT_GT] = ACTIONS(1527), + [anon_sym_o_GT_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(385)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4982), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(385), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1607), + [anon_sym_RBRACK] = ACTIONS(1600), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -77446,74 +77852,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(384)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4809), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(384), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [STATE(386)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4850), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(386), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1518), + [anon_sym_RBRACK] = ACTIONS(1545), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -77524,152 +77930,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(385)] = { - [sym_comment] = STATE(385), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), + [STATE(387)] = { + [sym_comment] = STATE(387), + [aux_sym__types_body_repeat2] = STATE(1482), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_PLUS_EQ] = ACTIONS(1602), + [anon_sym_DASH_EQ] = ACTIONS(1602), + [anon_sym_STAR_EQ] = ACTIONS(1602), + [anon_sym_SLASH_EQ] = ACTIONS(1602), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1604), + [sym__newline] = ACTIONS(1604), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_err_GT_PIPE] = ACTIONS(1604), + [anon_sym_out_GT_PIPE] = ACTIONS(1604), + [anon_sym_e_GT_PIPE] = ACTIONS(1604), + [anon_sym_o_GT_PIPE] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1604), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1604), + [anon_sym_xor2] = ACTIONS(1604), + [anon_sym_or2] = ACTIONS(1604), + [anon_sym_not_DASHin2] = ACTIONS(1604), + [anon_sym_has2] = ACTIONS(1604), + [anon_sym_not_DASHhas2] = ACTIONS(1604), + [anon_sym_starts_DASHwith2] = ACTIONS(1604), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1604), + [anon_sym_ends_DASHwith2] = ACTIONS(1604), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1604), + [anon_sym_EQ_EQ2] = ACTIONS(1604), + [anon_sym_BANG_EQ2] = ACTIONS(1604), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1604), + [anon_sym_GT_EQ2] = ACTIONS(1604), + [anon_sym_EQ_TILDE2] = ACTIONS(1604), + [anon_sym_BANG_TILDE2] = ACTIONS(1604), + [anon_sym_like2] = ACTIONS(1604), + [anon_sym_not_DASHlike2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1604), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1604), + [anon_sym_SLASH_SLASH2] = ACTIONS(1604), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1604), + [anon_sym_bit_DASHshr2] = ACTIONS(1604), + [anon_sym_bit_DASHand2] = ACTIONS(1604), + [anon_sym_bit_DASHxor2] = ACTIONS(1604), + [anon_sym_bit_DASHor2] = ACTIONS(1604), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [sym__entry_separator] = ACTIONS(1612), + [anon_sym_COLON2] = ACTIONS(1614), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1604), + [anon_sym_out_GT_GT] = ACTIONS(1604), + [anon_sym_e_GT_GT] = ACTIONS(1604), + [anon_sym_o_GT_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1604), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(386)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4980), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(386), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [STATE(388)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4869), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(388), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1609), + [anon_sym_RBRACK] = ACTIONS(1537), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -77680,74 +78086,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(387)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4826), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(387), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [STATE(389)] = { + [sym_comment] = STATE(389), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1535), + [anon_sym_DASH_EQ] = ACTIONS(1535), + [anon_sym_STAR_EQ] = ACTIONS(1535), + [anon_sym_SLASH_EQ] = ACTIONS(1535), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1533), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [anon_sym_COLON2] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(390)] = { + [sym__expr_parenthesized_immediate] = STATE(681), + [sym__immediate_decimal] = STATE(682), + [sym_val_variable] = STATE(681), + [sym_comment] = STATE(390), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1616), + [aux_sym__immediate_decimal_token1] = ACTIONS(1594), + [aux_sym__immediate_decimal_token2] = ACTIONS(1594), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(391)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4867), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(391), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1611), + [anon_sym_RBRACK] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -77758,698 +78320,464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(388)] = { - [sym_comment] = STATE(388), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(389)] = { - [sym__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(645), - [sym_val_variable] = STATE(698), - [sym_comment] = STATE(389), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1613), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(390)] = { - [sym_comment] = STATE(390), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(391)] = { - [sym_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(392)] = { + [sym_path] = STATE(427), [sym_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1545), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [aux_sym__where_predicate_lhs_repeat1] = STATE(393), + [ts_builtin_sym_end] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1494), + [sym__newline] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_err_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_GT_PIPE] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), + [anon_sym_GT2] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1492), + [anon_sym_and2] = ACTIONS(1494), + [anon_sym_xor2] = ACTIONS(1494), + [anon_sym_or2] = ACTIONS(1494), + [anon_sym_not_DASHin2] = ACTIONS(1494), + [anon_sym_has2] = ACTIONS(1494), + [anon_sym_not_DASHhas2] = ACTIONS(1494), + [anon_sym_starts_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1494), + [anon_sym_ends_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1494), + [anon_sym_EQ_EQ2] = ACTIONS(1494), + [anon_sym_BANG_EQ2] = ACTIONS(1494), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ2] = ACTIONS(1494), + [anon_sym_GT_EQ2] = ACTIONS(1494), + [anon_sym_EQ_TILDE2] = ACTIONS(1494), + [anon_sym_BANG_TILDE2] = ACTIONS(1494), + [anon_sym_like2] = ACTIONS(1494), + [anon_sym_not_DASHlike2] = ACTIONS(1494), + [anon_sym_STAR_STAR2] = ACTIONS(1494), + [anon_sym_PLUS_PLUS2] = ACTIONS(1492), + [anon_sym_SLASH2] = ACTIONS(1492), + [anon_sym_mod2] = ACTIONS(1494), + [anon_sym_SLASH_SLASH2] = ACTIONS(1494), + [anon_sym_PLUS2] = ACTIONS(1492), + [anon_sym_bit_DASHshl2] = ACTIONS(1494), + [anon_sym_bit_DASHshr2] = ACTIONS(1494), + [anon_sym_bit_DASHand2] = ACTIONS(1494), + [anon_sym_bit_DASHxor2] = ACTIONS(1494), + [anon_sym_bit_DASHor2] = ACTIONS(1494), + [anon_sym_DOT_DOT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), + [anon_sym_DOT2] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1492), + [anon_sym_out_GT] = ACTIONS(1492), + [anon_sym_e_GT] = ACTIONS(1492), + [anon_sym_o_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT] = ACTIONS(1492), + [anon_sym_err_GT_GT] = ACTIONS(1494), + [anon_sym_out_GT_GT] = ACTIONS(1494), + [anon_sym_e_GT_GT] = ACTIONS(1494), + [anon_sym_o_GT_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), [anon_sym_POUND] = ACTIONS(3), }, [STATE(393)] = { + [sym_path] = STATE(427), [sym_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [aux_sym__where_predicate_lhs_repeat1] = STATE(393), + [ts_builtin_sym_end] = ACTIONS(1498), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1498), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), [anon_sym_POUND] = ACTIONS(3), }, [STATE(394)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5109), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(395)] = { + [sym__expr_parenthesized_immediate] = STATE(679), + [sym__immediate_decimal] = STATE(680), + [sym_val_variable] = STATE(679), [sym_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [anon_sym_in] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1625), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_has2] = ACTIONS(1623), + [anon_sym_not_DASHhas2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_like2] = ACTIONS(1623), + [anon_sym_not_DASHlike2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1625), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1625), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT] = ACTIONS(1627), + [aux_sym__immediate_decimal_token1] = ACTIONS(1594), + [aux_sym__immediate_decimal_token2] = ACTIONS(1594), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(3), }, [STATE(396)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5056), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(396), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1515), + [anon_sym_DASH_EQ] = ACTIONS(1515), + [anon_sym_STAR_EQ] = ACTIONS(1515), + [anon_sym_SLASH_EQ] = ACTIONS(1515), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1513), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [anon_sym_COLON2] = ACTIONS(1515), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(397)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4849), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(397), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1547), + [anon_sym_RBRACK] = ACTIONS(1629), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -78460,859 +78788,627 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(397)] = { - [sym_comment] = STATE(397), - [aux_sym__types_body_repeat2] = STATE(1475), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1617), - [anon_sym_DASH_EQ] = ACTIONS(1617), - [anon_sym_STAR_EQ] = ACTIONS(1617), - [anon_sym_SLASH_EQ] = ACTIONS(1617), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1617), - [anon_sym_in] = ACTIONS(1619), - [sym__newline] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_err_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_GT_PIPE] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1619), - [anon_sym_xor2] = ACTIONS(1619), - [anon_sym_or2] = ACTIONS(1619), - [anon_sym_not_DASHin2] = ACTIONS(1619), - [anon_sym_has2] = ACTIONS(1619), - [anon_sym_not_DASHhas2] = ACTIONS(1619), - [anon_sym_starts_DASHwith2] = ACTIONS(1619), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1619), - [anon_sym_ends_DASHwith2] = ACTIONS(1619), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1619), - [anon_sym_EQ_EQ2] = ACTIONS(1619), - [anon_sym_BANG_EQ2] = ACTIONS(1619), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1619), - [anon_sym_GT_EQ2] = ACTIONS(1619), - [anon_sym_EQ_TILDE2] = ACTIONS(1619), - [anon_sym_BANG_TILDE2] = ACTIONS(1619), - [anon_sym_like2] = ACTIONS(1619), - [anon_sym_not_DASHlike2] = ACTIONS(1619), - [anon_sym_STAR_STAR2] = ACTIONS(1619), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1619), - [anon_sym_SLASH_SLASH2] = ACTIONS(1619), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1619), - [anon_sym_bit_DASHshr2] = ACTIONS(1619), - [anon_sym_bit_DASHand2] = ACTIONS(1619), - [anon_sym_bit_DASHxor2] = ACTIONS(1619), - [anon_sym_bit_DASHor2] = ACTIONS(1619), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [sym__entry_separator] = ACTIONS(1627), - [anon_sym_COLON2] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1619), - [anon_sym_out_GT_GT] = ACTIONS(1619), - [anon_sym_e_GT_GT] = ACTIONS(1619), - [anon_sym_o_GT_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(398)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(959), - [sym_val_variable] = STATE(742), + [sym__expr_parenthesized_immediate] = STATE(829), + [sym__immediate_decimal] = STATE(952), + [sym_val_variable] = STATE(829), [sym_comment] = STATE(398), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1637), - [aux_sym__immediate_decimal_token4] = ACTIONS(1637), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [aux_sym__immediate_decimal_token1] = ACTIONS(1631), + [aux_sym__immediate_decimal_token2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), [anon_sym_POUND] = ACTIONS(3), }, [STATE(399)] = { - [sym_cell_path] = STATE(466), - [sym_path] = STATE(441), + [sym__expr_parenthesized_immediate] = STATE(871), + [sym__immediate_decimal] = STATE(923), + [sym_val_variable] = STATE(871), [sym_comment] = STATE(399), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_COLON2] = ACTIONS(1641), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1635), + [anon_sym_DASH2] = ACTIONS(1635), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_STAR2] = ACTIONS(1635), + [anon_sym_and2] = ACTIONS(1633), + [anon_sym_xor2] = ACTIONS(1633), + [anon_sym_or2] = ACTIONS(1633), + [anon_sym_not_DASHin2] = ACTIONS(1633), + [anon_sym_has2] = ACTIONS(1633), + [anon_sym_not_DASHhas2] = ACTIONS(1633), + [anon_sym_starts_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1633), + [anon_sym_ends_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1633), + [anon_sym_EQ_EQ2] = ACTIONS(1633), + [anon_sym_BANG_EQ2] = ACTIONS(1633), + [anon_sym_LT2] = ACTIONS(1635), + [anon_sym_LT_EQ2] = ACTIONS(1633), + [anon_sym_GT_EQ2] = ACTIONS(1633), + [anon_sym_EQ_TILDE2] = ACTIONS(1633), + [anon_sym_BANG_TILDE2] = ACTIONS(1633), + [anon_sym_like2] = ACTIONS(1633), + [anon_sym_not_DASHlike2] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1633), + [anon_sym_PLUS_PLUS2] = ACTIONS(1633), + [anon_sym_SLASH2] = ACTIONS(1635), + [anon_sym_mod2] = ACTIONS(1633), + [anon_sym_SLASH_SLASH2] = ACTIONS(1633), + [anon_sym_PLUS2] = ACTIONS(1635), + [anon_sym_bit_DASHshl2] = ACTIONS(1633), + [anon_sym_bit_DASHshr2] = ACTIONS(1633), + [anon_sym_bit_DASHand2] = ACTIONS(1633), + [anon_sym_bit_DASHxor2] = ACTIONS(1633), + [anon_sym_bit_DASHor2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1637), + [aux_sym__immediate_decimal_token2] = ACTIONS(1637), + [aux_sym__immediate_decimal_token3] = ACTIONS(1639), + [aux_sym__immediate_decimal_token4] = ACTIONS(1639), + [anon_sym_err_GT] = ACTIONS(1635), + [anon_sym_out_GT] = ACTIONS(1635), + [anon_sym_e_GT] = ACTIONS(1635), + [anon_sym_o_GT] = ACTIONS(1635), + [anon_sym_err_PLUSout_GT] = ACTIONS(1635), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1635), + [anon_sym_o_PLUSe_GT] = ACTIONS(1635), + [anon_sym_e_PLUSo_GT] = ACTIONS(1635), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [sym__unquoted_pattern] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, [STATE(400)] = { - [sym__expr_parenthesized_immediate] = STATE(721), - [sym__immediate_decimal] = STATE(722), - [sym_val_variable] = STATE(721), [sym_comment] = STATE(400), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_PLUS_EQ] = ACTIONS(1574), + [anon_sym_DASH_EQ] = ACTIONS(1574), + [anon_sym_STAR_EQ] = ACTIONS(1574), + [anon_sym_SLASH_EQ] = ACTIONS(1574), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1574), + [anon_sym_in] = ACTIONS(1574), + [sym__newline] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_err_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_GT_PIPE] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1574), + [anon_sym_xor2] = ACTIONS(1574), + [anon_sym_or2] = ACTIONS(1574), + [anon_sym_not_DASHin2] = ACTIONS(1574), + [anon_sym_has2] = ACTIONS(1574), + [anon_sym_not_DASHhas2] = ACTIONS(1574), + [anon_sym_starts_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), + [anon_sym_ends_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), + [anon_sym_EQ_EQ2] = ACTIONS(1574), + [anon_sym_BANG_EQ2] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1574), + [anon_sym_GT_EQ2] = ACTIONS(1574), + [anon_sym_EQ_TILDE2] = ACTIONS(1574), + [anon_sym_BANG_TILDE2] = ACTIONS(1574), + [anon_sym_like2] = ACTIONS(1574), + [anon_sym_not_DASHlike2] = ACTIONS(1574), + [anon_sym_STAR_STAR2] = ACTIONS(1574), + [anon_sym_PLUS_PLUS2] = ACTIONS(1572), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1574), + [anon_sym_SLASH_SLASH2] = ACTIONS(1574), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1574), + [anon_sym_bit_DASHshr2] = ACTIONS(1574), + [anon_sym_bit_DASHand2] = ACTIONS(1574), + [anon_sym_bit_DASHxor2] = ACTIONS(1574), + [anon_sym_bit_DASHor2] = ACTIONS(1574), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [anon_sym_COLON2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1574), + [anon_sym_out_GT_GT] = ACTIONS(1574), + [anon_sym_e_GT_GT] = ACTIONS(1574), + [anon_sym_o_GT_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), [anon_sym_POUND] = ACTIONS(3), }, [STATE(401)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(673), - [sym_val_variable] = STATE(929), + [sym__path_suffix] = STATE(445), [sym_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1653), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_in] = ACTIONS(1434), + [sym__newline] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_err_GT_PIPE] = ACTIONS(1434), + [anon_sym_out_GT_PIPE] = ACTIONS(1434), + [anon_sym_e_GT_PIPE] = ACTIONS(1434), + [anon_sym_o_GT_PIPE] = ACTIONS(1434), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_GT2] = ACTIONS(1432), + [anon_sym_DASH2] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_EQ_GT] = ACTIONS(1434), + [anon_sym_STAR2] = ACTIONS(1432), + [anon_sym_and2] = ACTIONS(1434), + [anon_sym_xor2] = ACTIONS(1434), + [anon_sym_or2] = ACTIONS(1434), + [anon_sym_not_DASHin2] = ACTIONS(1434), + [anon_sym_has2] = ACTIONS(1434), + [anon_sym_not_DASHhas2] = ACTIONS(1434), + [anon_sym_starts_DASHwith2] = ACTIONS(1434), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), + [anon_sym_ends_DASHwith2] = ACTIONS(1434), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), + [anon_sym_EQ_EQ2] = ACTIONS(1434), + [anon_sym_BANG_EQ2] = ACTIONS(1434), + [anon_sym_LT2] = ACTIONS(1432), + [anon_sym_LT_EQ2] = ACTIONS(1434), + [anon_sym_GT_EQ2] = ACTIONS(1434), + [anon_sym_EQ_TILDE2] = ACTIONS(1434), + [anon_sym_BANG_TILDE2] = ACTIONS(1434), + [anon_sym_like2] = ACTIONS(1434), + [anon_sym_not_DASHlike2] = ACTIONS(1434), + [anon_sym_STAR_STAR2] = ACTIONS(1434), + [anon_sym_PLUS_PLUS2] = ACTIONS(1434), + [anon_sym_SLASH2] = ACTIONS(1432), + [anon_sym_mod2] = ACTIONS(1434), + [anon_sym_SLASH_SLASH2] = ACTIONS(1434), + [anon_sym_PLUS2] = ACTIONS(1432), + [anon_sym_bit_DASHshl2] = ACTIONS(1434), + [anon_sym_bit_DASHshr2] = ACTIONS(1434), + [anon_sym_bit_DASHand2] = ACTIONS(1434), + [anon_sym_bit_DASHxor2] = ACTIONS(1434), + [anon_sym_bit_DASHor2] = ACTIONS(1434), + [anon_sym_DOT_DOT2] = ACTIONS(1432), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), + [anon_sym_COLON2] = ACTIONS(1434), + [anon_sym_QMARK2] = ACTIONS(1643), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_DOT2] = ACTIONS(1432), + [anon_sym_err_GT] = ACTIONS(1432), + [anon_sym_out_GT] = ACTIONS(1432), + [anon_sym_e_GT] = ACTIONS(1432), + [anon_sym_o_GT] = ACTIONS(1432), + [anon_sym_err_PLUSout_GT] = ACTIONS(1432), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), + [anon_sym_o_PLUSe_GT] = ACTIONS(1432), + [anon_sym_e_PLUSo_GT] = ACTIONS(1432), + [anon_sym_err_GT_GT] = ACTIONS(1434), + [anon_sym_out_GT_GT] = ACTIONS(1434), + [anon_sym_e_GT_GT] = ACTIONS(1434), + [anon_sym_o_GT_GT] = ACTIONS(1434), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), }, [STATE(402)] = { + [sym_cell_path] = STATE(455), + [sym_path] = STATE(446), [sym_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1659), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1647), + [sym__newline] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_err_GT_PIPE] = ACTIONS(1647), + [anon_sym_out_GT_PIPE] = ACTIONS(1647), + [anon_sym_e_GT_PIPE] = ACTIONS(1647), + [anon_sym_o_GT_PIPE] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_GT2] = ACTIONS(1649), + [anon_sym_DASH2] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_EQ_GT] = ACTIONS(1647), + [anon_sym_STAR2] = ACTIONS(1649), + [anon_sym_and2] = ACTIONS(1647), + [anon_sym_xor2] = ACTIONS(1647), + [anon_sym_or2] = ACTIONS(1647), + [anon_sym_not_DASHin2] = ACTIONS(1647), + [anon_sym_has2] = ACTIONS(1647), + [anon_sym_not_DASHhas2] = ACTIONS(1647), + [anon_sym_starts_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1647), + [anon_sym_ends_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1647), + [anon_sym_EQ_EQ2] = ACTIONS(1647), + [anon_sym_BANG_EQ2] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1649), + [anon_sym_LT_EQ2] = ACTIONS(1647), + [anon_sym_GT_EQ2] = ACTIONS(1647), + [anon_sym_EQ_TILDE2] = ACTIONS(1647), + [anon_sym_BANG_TILDE2] = ACTIONS(1647), + [anon_sym_like2] = ACTIONS(1647), + [anon_sym_not_DASHlike2] = ACTIONS(1647), + [anon_sym_STAR_STAR2] = ACTIONS(1647), + [anon_sym_PLUS_PLUS2] = ACTIONS(1647), + [anon_sym_SLASH2] = ACTIONS(1649), + [anon_sym_mod2] = ACTIONS(1647), + [anon_sym_SLASH_SLASH2] = ACTIONS(1647), + [anon_sym_PLUS2] = ACTIONS(1649), + [anon_sym_bit_DASHshl2] = ACTIONS(1647), + [anon_sym_bit_DASHshr2] = ACTIONS(1647), + [anon_sym_bit_DASHand2] = ACTIONS(1647), + [anon_sym_bit_DASHxor2] = ACTIONS(1647), + [anon_sym_bit_DASHor2] = ACTIONS(1647), + [anon_sym_DOT_DOT2] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), + [anon_sym_COLON2] = ACTIONS(1647), + [anon_sym_DOT2] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1649), + [anon_sym_out_GT] = ACTIONS(1649), + [anon_sym_e_GT] = ACTIONS(1649), + [anon_sym_o_GT] = ACTIONS(1649), + [anon_sym_err_PLUSout_GT] = ACTIONS(1649), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1649), + [anon_sym_o_PLUSe_GT] = ACTIONS(1649), + [anon_sym_e_PLUSo_GT] = ACTIONS(1649), + [anon_sym_err_GT_GT] = ACTIONS(1647), + [anon_sym_out_GT_GT] = ACTIONS(1647), + [anon_sym_e_GT_GT] = ACTIONS(1647), + [anon_sym_o_GT_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), [anon_sym_POUND] = ACTIONS(3), }, [STATE(403)] = { - [sym__expr_parenthesized_immediate] = STATE(723), - [sym__immediate_decimal] = STATE(896), - [sym_val_variable] = STATE(723), + [sym__expr_parenthesized_immediate] = STATE(829), + [sym__immediate_decimal] = STATE(919), + [sym_val_variable] = STATE(829), [sym_comment] = STATE(403), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [aux_sym__immediate_decimal_token1] = ACTIONS(1637), + [aux_sym__immediate_decimal_token2] = ACTIONS(1637), + [aux_sym__immediate_decimal_token3] = ACTIONS(1639), + [aux_sym__immediate_decimal_token4] = ACTIONS(1639), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(404)] = { + [sym__expr_parenthesized_immediate] = STATE(847), + [sym__immediate_decimal] = STATE(848), + [sym_val_variable] = STATE(847), [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(1653), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1655), + [anon_sym_DASH2] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1655), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_has2] = ACTIONS(1653), + [anon_sym_not_DASHhas2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1655), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_like2] = ACTIONS(1653), + [anon_sym_not_DASHlike2] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1655), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1655), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [aux_sym__immediate_decimal_token1] = ACTIONS(1631), + [aux_sym__immediate_decimal_token2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1655), + [anon_sym_out_GT] = ACTIONS(1655), + [anon_sym_e_GT] = ACTIONS(1655), + [anon_sym_o_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT] = ACTIONS(1655), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), }, [STATE(405)] = { + [sym__expr_parenthesized_immediate] = STATE(911), + [sym__immediate_decimal] = STATE(688), + [sym_val_variable] = STATE(911), [sym_comment] = STATE(405), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [ts_builtin_sym_end] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(406)] = { - [sym__path_suffix] = STATE(437), + [sym__expr_parenthesized_immediate] = STATE(849), + [sym__immediate_decimal] = STATE(864), + [sym_val_variable] = STATE(849), [sym_comment] = STATE(406), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1663), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(407)] = { - [sym__expr_parenthesized_immediate] = STATE(723), - [sym__immediate_decimal] = STATE(954), - [sym_val_variable] = STATE(723), - [sym_comment] = STATE(407), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1637), - [aux_sym__immediate_decimal_token4] = ACTIONS(1637), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(408)] = { - [sym__expr_parenthesized_immediate] = STATE(736), - [sym__immediate_decimal] = STATE(737), - [sym_val_variable] = STATE(736), - [sym_comment] = STATE(408), [anon_sym_in] = ACTIONS(1667), [sym__newline] = ACTIONS(1667), [anon_sym_SEMI] = ACTIONS(1667), @@ -79326,7 +79422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1586), [anon_sym_GT2] = ACTIONS(1669), [anon_sym_DASH2] = ACTIONS(1669), [anon_sym_LBRACE] = ACTIONS(1667), @@ -79351,7 +79447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1667), [anon_sym_like2] = ACTIONS(1667), [anon_sym_not_DASHlike2] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1588), + [anon_sym_LPAREN2] = ACTIONS(1590), [anon_sym_STAR_STAR2] = ACTIONS(1667), [anon_sym_PLUS_PLUS2] = ACTIONS(1667), [anon_sym_SLASH2] = ACTIONS(1669), @@ -79363,10 +79459,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1667), [anon_sym_bit_DASHxor2] = ACTIONS(1667), [anon_sym_bit_DASHor2] = ACTIONS(1667), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), + [aux_sym__immediate_decimal_token1] = ACTIONS(1631), + [aux_sym__immediate_decimal_token2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), [anon_sym_err_GT] = ACTIONS(1669), [anon_sym_out_GT] = ACTIONS(1669), [anon_sym_e_GT] = ACTIONS(1669), @@ -79385,924 +79481,1382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(407)] = { + [sym_comment] = STATE(407), + [ts_builtin_sym_end] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_QMARK2] = ACTIONS(1671), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(408)] = { + [sym__expr_parenthesized_immediate] = STATE(867), + [sym__immediate_decimal] = STATE(869), + [sym_val_variable] = STATE(867), + [sym_comment] = STATE(408), + [anon_sym_in] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1675), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_has2] = ACTIONS(1673), + [anon_sym_not_DASHhas2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_like2] = ACTIONS(1673), + [anon_sym_not_DASHlike2] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1675), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1675), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token1] = ACTIONS(1631), + [aux_sym__immediate_decimal_token2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(409)] = { - [sym__expr_parenthesized_immediate] = STATE(738), - [sym__immediate_decimal] = STATE(739), - [sym_val_variable] = STATE(738), + [sym__expr_parenthesized_immediate] = STATE(871), + [sym__immediate_decimal] = STATE(938), + [sym_val_variable] = STATE(871), [sym_comment] = STATE(409), - [anon_sym_in] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_has2] = ACTIONS(1671), - [anon_sym_not_DASHhas2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_like2] = ACTIONS(1671), - [anon_sym_not_DASHlike2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1635), + [anon_sym_DASH2] = ACTIONS(1635), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_STAR2] = ACTIONS(1635), + [anon_sym_and2] = ACTIONS(1633), + [anon_sym_xor2] = ACTIONS(1633), + [anon_sym_or2] = ACTIONS(1633), + [anon_sym_not_DASHin2] = ACTIONS(1633), + [anon_sym_has2] = ACTIONS(1633), + [anon_sym_not_DASHhas2] = ACTIONS(1633), + [anon_sym_starts_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1633), + [anon_sym_ends_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1633), + [anon_sym_EQ_EQ2] = ACTIONS(1633), + [anon_sym_BANG_EQ2] = ACTIONS(1633), + [anon_sym_LT2] = ACTIONS(1635), + [anon_sym_LT_EQ2] = ACTIONS(1633), + [anon_sym_GT_EQ2] = ACTIONS(1633), + [anon_sym_EQ_TILDE2] = ACTIONS(1633), + [anon_sym_BANG_TILDE2] = ACTIONS(1633), + [anon_sym_like2] = ACTIONS(1633), + [anon_sym_not_DASHlike2] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1633), + [anon_sym_PLUS_PLUS2] = ACTIONS(1633), + [anon_sym_SLASH2] = ACTIONS(1635), + [anon_sym_mod2] = ACTIONS(1633), + [anon_sym_SLASH_SLASH2] = ACTIONS(1633), + [anon_sym_PLUS2] = ACTIONS(1635), + [anon_sym_bit_DASHshl2] = ACTIONS(1633), + [anon_sym_bit_DASHshr2] = ACTIONS(1633), + [anon_sym_bit_DASHand2] = ACTIONS(1633), + [anon_sym_bit_DASHxor2] = ACTIONS(1633), + [anon_sym_bit_DASHor2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1631), + [aux_sym__immediate_decimal_token2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1635), + [anon_sym_out_GT] = ACTIONS(1635), + [anon_sym_e_GT] = ACTIONS(1635), + [anon_sym_o_GT] = ACTIONS(1635), + [anon_sym_err_PLUSout_GT] = ACTIONS(1635), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1635), + [anon_sym_o_PLUSe_GT] = ACTIONS(1635), + [anon_sym_e_PLUSo_GT] = ACTIONS(1635), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), [anon_sym_POUND] = ACTIONS(3), }, [STATE(410)] = { - [sym__expr_parenthesized_immediate] = STATE(740), - [sym__immediate_decimal] = STATE(741), - [sym_val_variable] = STATE(740), + [sym__expr_parenthesized_immediate] = STATE(825), + [sym__immediate_decimal] = STATE(826), + [sym_val_variable] = STATE(825), [sym_comment] = STATE(410), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1625), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_has2] = ACTIONS(1623), + [anon_sym_not_DASHhas2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_like2] = ACTIONS(1623), + [anon_sym_not_DASHlike2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1625), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1625), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(1631), + [aux_sym__immediate_decimal_token2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(3), }, [STATE(411)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(925), - [sym_val_variable] = STATE(742), + [sym_cell_path] = STATE(457), + [sym_path] = STATE(446), [sym_comment] = STATE(411), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1677), + [sym__newline] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_GT2] = ACTIONS(1679), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_EQ_GT] = ACTIONS(1677), + [anon_sym_STAR2] = ACTIONS(1679), + [anon_sym_and2] = ACTIONS(1677), + [anon_sym_xor2] = ACTIONS(1677), + [anon_sym_or2] = ACTIONS(1677), + [anon_sym_not_DASHin2] = ACTIONS(1677), + [anon_sym_has2] = ACTIONS(1677), + [anon_sym_not_DASHhas2] = ACTIONS(1677), + [anon_sym_starts_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1677), + [anon_sym_ends_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1677), + [anon_sym_EQ_EQ2] = ACTIONS(1677), + [anon_sym_BANG_EQ2] = ACTIONS(1677), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ2] = ACTIONS(1677), + [anon_sym_GT_EQ2] = ACTIONS(1677), + [anon_sym_EQ_TILDE2] = ACTIONS(1677), + [anon_sym_BANG_TILDE2] = ACTIONS(1677), + [anon_sym_like2] = ACTIONS(1677), + [anon_sym_not_DASHlike2] = ACTIONS(1677), + [anon_sym_STAR_STAR2] = ACTIONS(1677), + [anon_sym_PLUS_PLUS2] = ACTIONS(1677), + [anon_sym_SLASH2] = ACTIONS(1679), + [anon_sym_mod2] = ACTIONS(1677), + [anon_sym_SLASH_SLASH2] = ACTIONS(1677), + [anon_sym_PLUS2] = ACTIONS(1679), + [anon_sym_bit_DASHshl2] = ACTIONS(1677), + [anon_sym_bit_DASHshr2] = ACTIONS(1677), + [anon_sym_bit_DASHand2] = ACTIONS(1677), + [anon_sym_bit_DASHxor2] = ACTIONS(1677), + [anon_sym_bit_DASHor2] = ACTIONS(1677), + [anon_sym_DOT_DOT2] = ACTIONS(1679), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [anon_sym_COLON2] = ACTIONS(1677), + [anon_sym_DOT2] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1679), + [anon_sym_out_GT] = ACTIONS(1679), + [anon_sym_e_GT] = ACTIONS(1679), + [anon_sym_o_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT] = ACTIONS(1679), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), [anon_sym_POUND] = ACTIONS(3), }, [STATE(412)] = { - [sym_cell_path] = STATE(465), - [sym_path] = STATE(441), [sym_comment] = STATE(412), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1679), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_EQ_GT] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1679), - [anon_sym_xor2] = ACTIONS(1679), - [anon_sym_or2] = ACTIONS(1679), - [anon_sym_not_DASHin2] = ACTIONS(1679), - [anon_sym_has2] = ACTIONS(1679), - [anon_sym_not_DASHhas2] = ACTIONS(1679), - [anon_sym_starts_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), - [anon_sym_ends_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), - [anon_sym_EQ_EQ2] = ACTIONS(1679), - [anon_sym_BANG_EQ2] = ACTIONS(1679), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1679), - [anon_sym_GT_EQ2] = ACTIONS(1679), - [anon_sym_EQ_TILDE2] = ACTIONS(1679), - [anon_sym_BANG_TILDE2] = ACTIONS(1679), - [anon_sym_like2] = ACTIONS(1679), - [anon_sym_not_DASHlike2] = ACTIONS(1679), - [anon_sym_STAR_STAR2] = ACTIONS(1679), - [anon_sym_PLUS_PLUS2] = ACTIONS(1679), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1679), - [anon_sym_SLASH_SLASH2] = ACTIONS(1679), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1679), - [anon_sym_bit_DASHshr2] = ACTIONS(1679), - [anon_sym_bit_DASHand2] = ACTIONS(1679), - [anon_sym_bit_DASHxor2] = ACTIONS(1679), - [anon_sym_bit_DASHor2] = ACTIONS(1679), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1679), - [anon_sym_COLON2] = ACTIONS(1679), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), + [ts_builtin_sym_end] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), }, [STATE(413)] = { [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [anon_sym_in] = ACTIONS(1511), + [sym__newline] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_err_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_GT_PIPE] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_EQ_GT] = ACTIONS(1511), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1511), + [anon_sym_xor2] = ACTIONS(1511), + [anon_sym_or2] = ACTIONS(1511), + [anon_sym_not_DASHin2] = ACTIONS(1511), + [anon_sym_has2] = ACTIONS(1511), + [anon_sym_not_DASHhas2] = ACTIONS(1511), + [anon_sym_starts_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1511), + [anon_sym_ends_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1511), + [anon_sym_EQ_EQ2] = ACTIONS(1511), + [anon_sym_BANG_EQ2] = ACTIONS(1511), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1511), + [anon_sym_GT_EQ2] = ACTIONS(1511), + [anon_sym_EQ_TILDE2] = ACTIONS(1511), + [anon_sym_BANG_TILDE2] = ACTIONS(1511), + [anon_sym_like2] = ACTIONS(1511), + [anon_sym_not_DASHlike2] = ACTIONS(1511), + [anon_sym_STAR_STAR2] = ACTIONS(1511), + [anon_sym_PLUS_PLUS2] = ACTIONS(1511), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1511), + [anon_sym_SLASH_SLASH2] = ACTIONS(1511), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1511), + [anon_sym_bit_DASHshr2] = ACTIONS(1511), + [anon_sym_bit_DASHand2] = ACTIONS(1511), + [anon_sym_bit_DASHxor2] = ACTIONS(1511), + [anon_sym_bit_DASHor2] = ACTIONS(1511), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [anon_sym_COLON2] = ACTIONS(1511), + [anon_sym_QMARK2] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1511), + [anon_sym_out_GT_GT] = ACTIONS(1511), + [anon_sym_e_GT_GT] = ACTIONS(1511), + [anon_sym_o_GT_GT] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), [anon_sym_POUND] = ACTIONS(3), }, [STATE(414)] = { - [sym_cell_path] = STATE(492), - [sym_path] = STATE(441), [sym_comment] = STATE(414), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_EQ_GT] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1434), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), + [anon_sym_in] = ACTIONS(1507), + [sym__newline] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_err_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_GT_PIPE] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1507), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(1507), + [anon_sym_STAR2] = ACTIONS(1505), + [anon_sym_and2] = ACTIONS(1507), + [anon_sym_xor2] = ACTIONS(1507), + [anon_sym_or2] = ACTIONS(1507), + [anon_sym_not_DASHin2] = ACTIONS(1507), + [anon_sym_has2] = ACTIONS(1507), + [anon_sym_not_DASHhas2] = ACTIONS(1507), + [anon_sym_starts_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1507), + [anon_sym_ends_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1507), + [anon_sym_EQ_EQ2] = ACTIONS(1507), + [anon_sym_BANG_EQ2] = ACTIONS(1507), + [anon_sym_LT2] = ACTIONS(1505), + [anon_sym_LT_EQ2] = ACTIONS(1507), + [anon_sym_GT_EQ2] = ACTIONS(1507), + [anon_sym_EQ_TILDE2] = ACTIONS(1507), + [anon_sym_BANG_TILDE2] = ACTIONS(1507), + [anon_sym_like2] = ACTIONS(1507), + [anon_sym_not_DASHlike2] = ACTIONS(1507), + [anon_sym_STAR_STAR2] = ACTIONS(1507), + [anon_sym_PLUS_PLUS2] = ACTIONS(1507), + [anon_sym_SLASH2] = ACTIONS(1505), + [anon_sym_mod2] = ACTIONS(1507), + [anon_sym_SLASH_SLASH2] = ACTIONS(1507), + [anon_sym_PLUS2] = ACTIONS(1505), + [anon_sym_bit_DASHshl2] = ACTIONS(1507), + [anon_sym_bit_DASHshr2] = ACTIONS(1507), + [anon_sym_bit_DASHand2] = ACTIONS(1507), + [anon_sym_bit_DASHxor2] = ACTIONS(1507), + [anon_sym_bit_DASHor2] = ACTIONS(1507), + [anon_sym_DOT_DOT2] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), + [anon_sym_COLON2] = ACTIONS(1507), + [anon_sym_QMARK2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_DOT2] = ACTIONS(1505), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1507), + [anon_sym_out_GT_GT] = ACTIONS(1507), + [anon_sym_e_GT_GT] = ACTIONS(1507), + [anon_sym_o_GT_GT] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1507), [anon_sym_POUND] = ACTIONS(3), }, [STATE(415)] = { + [sym__expr_parenthesized_immediate] = STATE(1291), + [sym__immediate_decimal] = STATE(993), + [sym_val_variable] = STATE(1291), [sym_comment] = STATE(415), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_EQ_GT] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(416)] = { - [sym__expr_parenthesized_immediate] = STATE(1343), - [sym__immediate_decimal] = STATE(1090), - [sym_val_variable] = STATE(1343), - [sym_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), + [ts_builtin_sym_end] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), [aux_sym__immediate_decimal_token1] = ACTIONS(1683), [aux_sym__immediate_decimal_token2] = ACTIONS(1683), [aux_sym__immediate_decimal_token3] = ACTIONS(1685), [aux_sym__immediate_decimal_token4] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(416)] = { + [sym_cell_path] = STATE(499), + [sym_path] = STATE(446), + [sym_comment] = STATE(416), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1446), + [sym__newline] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_err_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_GT_PIPE] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_GT2] = ACTIONS(1444), + [anon_sym_DASH2] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_EQ_GT] = ACTIONS(1446), + [anon_sym_STAR2] = ACTIONS(1444), + [anon_sym_and2] = ACTIONS(1446), + [anon_sym_xor2] = ACTIONS(1446), + [anon_sym_or2] = ACTIONS(1446), + [anon_sym_not_DASHin2] = ACTIONS(1446), + [anon_sym_has2] = ACTIONS(1446), + [anon_sym_not_DASHhas2] = ACTIONS(1446), + [anon_sym_starts_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1446), + [anon_sym_ends_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), + [anon_sym_EQ_EQ2] = ACTIONS(1446), + [anon_sym_BANG_EQ2] = ACTIONS(1446), + [anon_sym_LT2] = ACTIONS(1444), + [anon_sym_LT_EQ2] = ACTIONS(1446), + [anon_sym_GT_EQ2] = ACTIONS(1446), + [anon_sym_EQ_TILDE2] = ACTIONS(1446), + [anon_sym_BANG_TILDE2] = ACTIONS(1446), + [anon_sym_like2] = ACTIONS(1446), + [anon_sym_not_DASHlike2] = ACTIONS(1446), + [anon_sym_STAR_STAR2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS2] = ACTIONS(1446), + [anon_sym_SLASH2] = ACTIONS(1444), + [anon_sym_mod2] = ACTIONS(1446), + [anon_sym_SLASH_SLASH2] = ACTIONS(1446), + [anon_sym_PLUS2] = ACTIONS(1444), + [anon_sym_bit_DASHshl2] = ACTIONS(1446), + [anon_sym_bit_DASHshr2] = ACTIONS(1446), + [anon_sym_bit_DASHand2] = ACTIONS(1446), + [anon_sym_bit_DASHxor2] = ACTIONS(1446), + [anon_sym_bit_DASHor2] = ACTIONS(1446), + [anon_sym_DOT_DOT2] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1446), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1446), + [anon_sym_DOT2] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1444), + [anon_sym_out_GT] = ACTIONS(1444), + [anon_sym_e_GT] = ACTIONS(1444), + [anon_sym_o_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT] = ACTIONS(1444), + [anon_sym_err_GT_GT] = ACTIONS(1446), + [anon_sym_out_GT_GT] = ACTIONS(1446), + [anon_sym_e_GT_GT] = ACTIONS(1446), + [anon_sym_o_GT_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), [anon_sym_POUND] = ACTIONS(3), }, [STATE(417)] = { + [sym__expr_parenthesized_immediate] = STATE(911), + [sym__immediate_decimal] = STATE(912), + [sym_val_variable] = STATE(911), [sym_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1687), + [aux_sym__immediate_decimal_token1] = ACTIONS(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), [anon_sym_POUND] = ACTIONS(3), }, [STATE(418)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1068), - [sym_val_variable] = STATE(1311), [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_in] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_GT2] = ACTIONS(1517), + [anon_sym_DASH2] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_EQ_GT] = ACTIONS(1519), + [anon_sym_STAR2] = ACTIONS(1517), + [anon_sym_and2] = ACTIONS(1519), + [anon_sym_xor2] = ACTIONS(1519), + [anon_sym_or2] = ACTIONS(1519), + [anon_sym_not_DASHin2] = ACTIONS(1519), + [anon_sym_has2] = ACTIONS(1519), + [anon_sym_not_DASHhas2] = ACTIONS(1519), + [anon_sym_starts_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1519), + [anon_sym_ends_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1519), + [anon_sym_EQ_EQ2] = ACTIONS(1519), + [anon_sym_BANG_EQ2] = ACTIONS(1519), + [anon_sym_LT2] = ACTIONS(1517), + [anon_sym_LT_EQ2] = ACTIONS(1519), + [anon_sym_GT_EQ2] = ACTIONS(1519), + [anon_sym_EQ_TILDE2] = ACTIONS(1519), + [anon_sym_BANG_TILDE2] = ACTIONS(1519), + [anon_sym_like2] = ACTIONS(1519), + [anon_sym_not_DASHlike2] = ACTIONS(1519), + [anon_sym_STAR_STAR2] = ACTIONS(1519), + [anon_sym_PLUS_PLUS2] = ACTIONS(1519), + [anon_sym_SLASH2] = ACTIONS(1517), + [anon_sym_mod2] = ACTIONS(1519), + [anon_sym_SLASH_SLASH2] = ACTIONS(1519), + [anon_sym_PLUS2] = ACTIONS(1517), + [anon_sym_bit_DASHshl2] = ACTIONS(1519), + [anon_sym_bit_DASHshr2] = ACTIONS(1519), + [anon_sym_bit_DASHand2] = ACTIONS(1519), + [anon_sym_bit_DASHxor2] = ACTIONS(1519), + [anon_sym_bit_DASHor2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [anon_sym_COLON2] = ACTIONS(1519), + [anon_sym_QMARK2] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1517), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(3), }, [STATE(419)] = { - [sym__expr_parenthesized_immediate] = STATE(918), - [sym__immediate_decimal] = STATE(920), - [sym_val_variable] = STATE(918), [sym_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1687), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(1523), + [sym__newline] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_err_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_GT_PIPE] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1523), + [anon_sym_RPAREN] = ACTIONS(1523), + [anon_sym_GT2] = ACTIONS(1521), + [anon_sym_DASH2] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_EQ_GT] = ACTIONS(1523), + [anon_sym_STAR2] = ACTIONS(1521), + [anon_sym_and2] = ACTIONS(1523), + [anon_sym_xor2] = ACTIONS(1523), + [anon_sym_or2] = ACTIONS(1523), + [anon_sym_not_DASHin2] = ACTIONS(1523), + [anon_sym_has2] = ACTIONS(1523), + [anon_sym_not_DASHhas2] = ACTIONS(1523), + [anon_sym_starts_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1523), + [anon_sym_ends_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1523), + [anon_sym_EQ_EQ2] = ACTIONS(1523), + [anon_sym_BANG_EQ2] = ACTIONS(1523), + [anon_sym_LT2] = ACTIONS(1521), + [anon_sym_LT_EQ2] = ACTIONS(1523), + [anon_sym_GT_EQ2] = ACTIONS(1523), + [anon_sym_EQ_TILDE2] = ACTIONS(1523), + [anon_sym_BANG_TILDE2] = ACTIONS(1523), + [anon_sym_like2] = ACTIONS(1523), + [anon_sym_not_DASHlike2] = ACTIONS(1523), + [anon_sym_STAR_STAR2] = ACTIONS(1523), + [anon_sym_PLUS_PLUS2] = ACTIONS(1523), + [anon_sym_SLASH2] = ACTIONS(1521), + [anon_sym_mod2] = ACTIONS(1523), + [anon_sym_SLASH_SLASH2] = ACTIONS(1523), + [anon_sym_PLUS2] = ACTIONS(1521), + [anon_sym_bit_DASHshl2] = ACTIONS(1523), + [anon_sym_bit_DASHshr2] = ACTIONS(1523), + [anon_sym_bit_DASHand2] = ACTIONS(1523), + [anon_sym_bit_DASHxor2] = ACTIONS(1523), + [anon_sym_bit_DASHor2] = ACTIONS(1523), + [anon_sym_DOT_DOT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1523), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1523), + [anon_sym_COLON2] = ACTIONS(1523), + [anon_sym_QMARK2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_DOT2] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1521), + [anon_sym_out_GT] = ACTIONS(1521), + [anon_sym_e_GT] = ACTIONS(1521), + [anon_sym_o_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT] = ACTIONS(1521), + [anon_sym_err_GT_GT] = ACTIONS(1523), + [anon_sym_out_GT_GT] = ACTIONS(1523), + [anon_sym_e_GT_GT] = ACTIONS(1523), + [anon_sym_o_GT_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), [anon_sym_POUND] = ACTIONS(3), }, [STATE(420)] = { - [sym_path] = STATE(441), [sym_comment] = STATE(420), - [aux_sym__where_predicate_lhs_repeat1] = STATE(420), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_EQ_GT] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1526), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1689), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), + [anon_sym_in] = ACTIONS(1527), + [sym__newline] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_err_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_GT_PIPE] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_EQ_GT] = ACTIONS(1527), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1527), + [anon_sym_xor2] = ACTIONS(1527), + [anon_sym_or2] = ACTIONS(1527), + [anon_sym_not_DASHin2] = ACTIONS(1527), + [anon_sym_has2] = ACTIONS(1527), + [anon_sym_not_DASHhas2] = ACTIONS(1527), + [anon_sym_starts_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), + [anon_sym_ends_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), + [anon_sym_EQ_EQ2] = ACTIONS(1527), + [anon_sym_BANG_EQ2] = ACTIONS(1527), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1527), + [anon_sym_GT_EQ2] = ACTIONS(1527), + [anon_sym_EQ_TILDE2] = ACTIONS(1527), + [anon_sym_BANG_TILDE2] = ACTIONS(1527), + [anon_sym_like2] = ACTIONS(1527), + [anon_sym_not_DASHlike2] = ACTIONS(1527), + [anon_sym_STAR_STAR2] = ACTIONS(1527), + [anon_sym_PLUS_PLUS2] = ACTIONS(1527), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1527), + [anon_sym_SLASH_SLASH2] = ACTIONS(1527), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1527), + [anon_sym_bit_DASHshr2] = ACTIONS(1527), + [anon_sym_bit_DASHand2] = ACTIONS(1527), + [anon_sym_bit_DASHxor2] = ACTIONS(1527), + [anon_sym_bit_DASHor2] = ACTIONS(1527), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [anon_sym_COLON2] = ACTIONS(1527), + [anon_sym_QMARK2] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1527), + [anon_sym_out_GT_GT] = ACTIONS(1527), + [anon_sym_e_GT_GT] = ACTIONS(1527), + [anon_sym_o_GT_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), [anon_sym_POUND] = ACTIONS(3), }, [STATE(421)] = { + [sym_path] = STATE(446), [sym_comment] = STATE(421), + [aux_sym__where_predicate_lhs_repeat1] = STATE(431), + [anon_sym_in] = ACTIONS(1494), + [sym__newline] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_err_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_GT_PIPE] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_GT2] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_EQ_GT] = ACTIONS(1494), + [anon_sym_STAR2] = ACTIONS(1492), + [anon_sym_and2] = ACTIONS(1494), + [anon_sym_xor2] = ACTIONS(1494), + [anon_sym_or2] = ACTIONS(1494), + [anon_sym_not_DASHin2] = ACTIONS(1494), + [anon_sym_has2] = ACTIONS(1494), + [anon_sym_not_DASHhas2] = ACTIONS(1494), + [anon_sym_starts_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1494), + [anon_sym_ends_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1494), + [anon_sym_EQ_EQ2] = ACTIONS(1494), + [anon_sym_BANG_EQ2] = ACTIONS(1494), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ2] = ACTIONS(1494), + [anon_sym_GT_EQ2] = ACTIONS(1494), + [anon_sym_EQ_TILDE2] = ACTIONS(1494), + [anon_sym_BANG_TILDE2] = ACTIONS(1494), + [anon_sym_like2] = ACTIONS(1494), + [anon_sym_not_DASHlike2] = ACTIONS(1494), + [anon_sym_STAR_STAR2] = ACTIONS(1494), + [anon_sym_PLUS_PLUS2] = ACTIONS(1494), + [anon_sym_SLASH2] = ACTIONS(1492), + [anon_sym_mod2] = ACTIONS(1494), + [anon_sym_SLASH_SLASH2] = ACTIONS(1494), + [anon_sym_PLUS2] = ACTIONS(1492), + [anon_sym_bit_DASHshl2] = ACTIONS(1494), + [anon_sym_bit_DASHshr2] = ACTIONS(1494), + [anon_sym_bit_DASHand2] = ACTIONS(1494), + [anon_sym_bit_DASHxor2] = ACTIONS(1494), + [anon_sym_bit_DASHor2] = ACTIONS(1494), + [anon_sym_DOT_DOT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), + [anon_sym_COLON2] = ACTIONS(1494), + [anon_sym_DOT2] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1492), + [anon_sym_out_GT] = ACTIONS(1492), + [anon_sym_e_GT] = ACTIONS(1492), + [anon_sym_o_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT] = ACTIONS(1492), + [anon_sym_err_GT_GT] = ACTIONS(1494), + [anon_sym_out_GT_GT] = ACTIONS(1494), + [anon_sym_e_GT_GT] = ACTIONS(1494), + [anon_sym_o_GT_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(422)] = { + [sym_comment] = STATE(422), + [ts_builtin_sym_end] = ACTIONS(1531), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1531), + [anon_sym_in] = ACTIONS(1531), + [sym__newline] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_err_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_GT_PIPE] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1531), + [anon_sym_xor2] = ACTIONS(1531), + [anon_sym_or2] = ACTIONS(1531), + [anon_sym_not_DASHin2] = ACTIONS(1531), + [anon_sym_has2] = ACTIONS(1531), + [anon_sym_not_DASHhas2] = ACTIONS(1531), + [anon_sym_starts_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), + [anon_sym_ends_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), + [anon_sym_EQ_EQ2] = ACTIONS(1531), + [anon_sym_BANG_EQ2] = ACTIONS(1531), + [anon_sym_LT2] = ACTIONS(1529), + [anon_sym_LT_EQ2] = ACTIONS(1531), + [anon_sym_GT_EQ2] = ACTIONS(1531), + [anon_sym_EQ_TILDE2] = ACTIONS(1531), + [anon_sym_BANG_TILDE2] = ACTIONS(1531), + [anon_sym_like2] = ACTIONS(1531), + [anon_sym_not_DASHlike2] = ACTIONS(1531), + [anon_sym_STAR_STAR2] = ACTIONS(1531), + [anon_sym_PLUS_PLUS2] = ACTIONS(1529), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1531), + [anon_sym_SLASH_SLASH2] = ACTIONS(1531), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_bit_DASHshl2] = ACTIONS(1531), + [anon_sym_bit_DASHshr2] = ACTIONS(1531), + [anon_sym_bit_DASHand2] = ACTIONS(1531), + [anon_sym_bit_DASHxor2] = ACTIONS(1531), + [anon_sym_bit_DASHor2] = ACTIONS(1531), + [anon_sym_DOT_DOT2] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1529), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [anon_sym_err_GT_GT] = ACTIONS(1531), + [anon_sym_out_GT_GT] = ACTIONS(1531), + [anon_sym_e_GT_GT] = ACTIONS(1531), + [anon_sym_o_GT_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(423)] = { + [sym_comment] = STATE(423), + [ts_builtin_sym_end] = ACTIONS(1535), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1535), + [anon_sym_DASH_EQ] = ACTIONS(1535), + [anon_sym_STAR_EQ] = ACTIONS(1535), + [anon_sym_SLASH_EQ] = ACTIONS(1535), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1533), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(424)] = { + [sym__expr_parenthesized_immediate] = STATE(1343), + [sym__immediate_decimal] = STATE(995), + [sym_val_variable] = STATE(1343), + [sym_comment] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(1633), + [anon_sym_in] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1635), + [anon_sym_DASH2] = ACTIONS(1635), + [anon_sym_STAR2] = ACTIONS(1635), + [anon_sym_and2] = ACTIONS(1633), + [anon_sym_xor2] = ACTIONS(1633), + [anon_sym_or2] = ACTIONS(1633), + [anon_sym_not_DASHin2] = ACTIONS(1633), + [anon_sym_has2] = ACTIONS(1633), + [anon_sym_not_DASHhas2] = ACTIONS(1633), + [anon_sym_starts_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1633), + [anon_sym_ends_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1633), + [anon_sym_EQ_EQ2] = ACTIONS(1633), + [anon_sym_BANG_EQ2] = ACTIONS(1633), + [anon_sym_LT2] = ACTIONS(1635), + [anon_sym_LT_EQ2] = ACTIONS(1633), + [anon_sym_GT_EQ2] = ACTIONS(1633), + [anon_sym_EQ_TILDE2] = ACTIONS(1633), + [anon_sym_BANG_TILDE2] = ACTIONS(1633), + [anon_sym_like2] = ACTIONS(1633), + [anon_sym_not_DASHlike2] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1633), + [anon_sym_PLUS_PLUS2] = ACTIONS(1633), + [anon_sym_SLASH2] = ACTIONS(1635), + [anon_sym_mod2] = ACTIONS(1633), + [anon_sym_SLASH_SLASH2] = ACTIONS(1633), + [anon_sym_PLUS2] = ACTIONS(1635), + [anon_sym_bit_DASHshl2] = ACTIONS(1633), + [anon_sym_bit_DASHshr2] = ACTIONS(1633), + [anon_sym_bit_DASHand2] = ACTIONS(1633), + [anon_sym_bit_DASHxor2] = ACTIONS(1633), + [anon_sym_bit_DASHor2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token3] = ACTIONS(1685), + [aux_sym__immediate_decimal_token4] = ACTIONS(1685), + [anon_sym_err_GT] = ACTIONS(1635), + [anon_sym_out_GT] = ACTIONS(1635), + [anon_sym_e_GT] = ACTIONS(1635), + [anon_sym_o_GT] = ACTIONS(1635), + [anon_sym_err_PLUSout_GT] = ACTIONS(1635), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1635), + [anon_sym_o_PLUSe_GT] = ACTIONS(1635), + [anon_sym_e_PLUSo_GT] = ACTIONS(1635), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [sym__unquoted_pattern] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(425)] = { + [sym_comment] = STATE(425), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -80352,10 +80906,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(741), [anon_sym_bit_DASHor2] = ACTIONS(741), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1692), + [anon_sym_DOT] = ACTIONS(1689), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1694), + [aux_sym__immediate_decimal_token5] = ACTIONS(1691), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -80377,8 +80931,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(422)] = { - [sym_comment] = STATE(422), + [STATE(426)] = { + [sym_comment] = STATE(426), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), [anon_sym_SEMI] = ACTIONS(749), @@ -80430,8 +80984,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1696), - [aux_sym__immediate_decimal_token5] = ACTIONS(1698), + [aux_sym__immediate_decimal_token1] = ACTIONS(1693), + [aux_sym__immediate_decimal_token5] = ACTIONS(1695), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -80453,10 +81007,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(423)] = { - [sym_path] = STATE(441), - [sym_comment] = STATE(423), - [aux_sym__where_predicate_lhs_repeat1] = STATE(420), + [STATE(427)] = { + [sym_comment] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1515), + [anon_sym_DASH_EQ] = ACTIONS(1515), + [anon_sym_STAR_EQ] = ACTIONS(1515), + [anon_sym_SLASH_EQ] = ACTIONS(1515), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1513), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1513), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(428)] = { + [sym_comment] = STATE(428), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_EQ_GT] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1452), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1452), + [anon_sym_QMARK2] = ACTIONS(1697), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(429)] = { + [sym_comment] = STATE(429), [anon_sym_in] = ACTIONS(1460), [sym__newline] = ACTIONS(1460), [anon_sym_SEMI] = ACTIONS(1460), @@ -80510,7 +81214,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1645), + [anon_sym_QMARK2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1458), [anon_sym_err_GT] = ACTIONS(1458), [anon_sym_out_GT] = ACTIONS(1458), [anon_sym_e_GT] = ACTIONS(1458), @@ -80529,541 +81235,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(424)] = { - [sym_comment] = STATE(424), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_EQ_GT] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1545), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(425)] = { - [sym_comment] = STATE(425), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1700), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(426)] = { - [sym_comment] = STATE(426), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_EQ_GT] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(427)] = { - [sym_comment] = STATE(427), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_EQ_GT] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1472), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(428)] = { - [sym_comment] = STATE(428), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_EQ_GT] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(429)] = { - [sym_comment] = STATE(429), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_EQ_GT] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1516), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(430)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(934), - [sym_val_variable] = STATE(929), + [sym__expr_parenthesized_immediate] = STATE(908), + [sym__immediate_decimal] = STATE(909), + [sym_val_variable] = STATE(908), [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1702), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1625), + [anon_sym_STAR2] = ACTIONS(1625), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_has2] = ACTIONS(1623), + [anon_sym_not_DASHhas2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_like2] = ACTIONS(1623), + [anon_sym_not_DASHlike2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1625), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1625), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT] = ACTIONS(1699), + [aux_sym__immediate_decimal_token1] = ACTIONS(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(3), }, [STATE(431)] = { + [sym_path] = STATE(446), [sym_comment] = STATE(431), - [anon_sym_EQ] = ACTIONS(1617), + [aux_sym__where_predicate_lhs_repeat1] = STATE(431), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_EQ_GT] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1498), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_COLON2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(1701), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(432)] = { + [sym_comment] = STATE(432), + [anon_sym_EQ] = ACTIONS(1602), [anon_sym_PLUS_EQ] = ACTIONS(1704), [anon_sym_DASH_EQ] = ACTIONS(1704), [anon_sym_STAR_EQ] = ACTIONS(1704), @@ -81081,10 +81407,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_STAR2] = ACTIONS(1604), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -81097,7 +81423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1604), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -81105,28 +81431,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1604), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -81137,165 +81463,464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(432)] = { - [sym_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(433)] = { [sym_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1710), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1712), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_EQ_GT] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1452), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), }, [STATE(434)] = { [sym_comment] = STATE(434), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_PLUS_EQ] = ACTIONS(1716), - [anon_sym_DASH_EQ] = ACTIONS(1716), - [anon_sym_STAR_EQ] = ACTIONS(1716), - [anon_sym_SLASH_EQ] = ACTIONS(1716), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1716), + [ts_builtin_sym_end] = ACTIONS(1574), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_PLUS_EQ] = ACTIONS(1574), + [anon_sym_DASH_EQ] = ACTIONS(1574), + [anon_sym_STAR_EQ] = ACTIONS(1574), + [anon_sym_SLASH_EQ] = ACTIONS(1574), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1574), + [anon_sym_in] = ACTIONS(1574), + [sym__newline] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_err_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_GT_PIPE] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1572), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1574), + [anon_sym_xor2] = ACTIONS(1574), + [anon_sym_or2] = ACTIONS(1574), + [anon_sym_not_DASHin2] = ACTIONS(1574), + [anon_sym_has2] = ACTIONS(1574), + [anon_sym_not_DASHhas2] = ACTIONS(1574), + [anon_sym_starts_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), + [anon_sym_ends_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), + [anon_sym_EQ_EQ2] = ACTIONS(1574), + [anon_sym_BANG_EQ2] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1574), + [anon_sym_GT_EQ2] = ACTIONS(1574), + [anon_sym_EQ_TILDE2] = ACTIONS(1574), + [anon_sym_BANG_TILDE2] = ACTIONS(1574), + [anon_sym_like2] = ACTIONS(1574), + [anon_sym_not_DASHlike2] = ACTIONS(1574), + [anon_sym_STAR_STAR2] = ACTIONS(1574), + [anon_sym_PLUS_PLUS2] = ACTIONS(1572), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1574), + [anon_sym_SLASH_SLASH2] = ACTIONS(1574), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1574), + [anon_sym_bit_DASHshr2] = ACTIONS(1574), + [anon_sym_bit_DASHand2] = ACTIONS(1574), + [anon_sym_bit_DASHxor2] = ACTIONS(1574), + [anon_sym_bit_DASHor2] = ACTIONS(1574), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1574), + [anon_sym_out_GT_GT] = ACTIONS(1574), + [anon_sym_e_GT_GT] = ACTIONS(1574), + [anon_sym_o_GT_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(435)] = { + [sym__expr_parenthesized_immediate] = STATE(1336), + [sym__immediate_decimal] = STATE(1337), + [sym_val_variable] = STATE(1336), + [sym_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1655), + [anon_sym_DASH2] = ACTIONS(1655), + [anon_sym_STAR2] = ACTIONS(1655), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_has2] = ACTIONS(1653), + [anon_sym_not_DASHhas2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1655), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_like2] = ACTIONS(1653), + [anon_sym_not_DASHlike2] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1655), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1655), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1655), + [anon_sym_out_GT] = ACTIONS(1655), + [anon_sym_e_GT] = ACTIONS(1655), + [anon_sym_o_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT] = ACTIONS(1655), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(436)] = { + [sym__expr_parenthesized_immediate] = STATE(4718), + [sym_comment] = STATE(436), + [anon_sym_in] = ACTIONS(908), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_RPAREN] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(908), + [anon_sym_xor2] = ACTIONS(908), + [anon_sym_or2] = ACTIONS(908), + [anon_sym_not_DASHin2] = ACTIONS(908), + [anon_sym_has2] = ACTIONS(908), + [anon_sym_not_DASHhas2] = ACTIONS(908), + [anon_sym_starts_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(908), + [anon_sym_ends_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(908), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(908), + [anon_sym_like2] = ACTIONS(908), + [anon_sym_not_DASHlike2] = ACTIONS(908), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(908), + [anon_sym_PLUS_PLUS2] = ACTIONS(908), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(908), + [anon_sym_SLASH_SLASH2] = ACTIONS(908), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(908), + [anon_sym_bit_DASHshr2] = ACTIONS(908), + [anon_sym_bit_DASHand2] = ACTIONS(908), + [anon_sym_bit_DASHxor2] = ACTIONS(908), + [anon_sym_bit_DASHor2] = ACTIONS(908), + [anon_sym_DOT_DOT2] = ACTIONS(1716), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1718), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1718), + [sym_filesize_unit] = ACTIONS(1720), + [sym_duration_unit] = ACTIONS(1722), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [sym__unquoted_pattern] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(437)] = { + [sym_comment] = STATE(437), + [ts_builtin_sym_end] = ACTIONS(749), + [anon_sym_in] = ACTIONS(749), + [sym__newline] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_err_GT_PIPE] = ACTIONS(749), + [anon_sym_out_GT_PIPE] = ACTIONS(749), + [anon_sym_e_GT_PIPE] = ACTIONS(749), + [anon_sym_o_GT_PIPE] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(749), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(749), + [anon_sym_xor2] = ACTIONS(749), + [anon_sym_or2] = ACTIONS(749), + [anon_sym_not_DASHin2] = ACTIONS(749), + [anon_sym_has2] = ACTIONS(749), + [anon_sym_not_DASHhas2] = ACTIONS(749), + [anon_sym_starts_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), + [anon_sym_ends_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), + [anon_sym_EQ_EQ2] = ACTIONS(749), + [anon_sym_BANG_EQ2] = ACTIONS(749), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(749), + [anon_sym_GT_EQ2] = ACTIONS(749), + [anon_sym_EQ_TILDE2] = ACTIONS(749), + [anon_sym_BANG_TILDE2] = ACTIONS(749), + [anon_sym_like2] = ACTIONS(749), + [anon_sym_not_DASHlike2] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(749), + [anon_sym_STAR_STAR2] = ACTIONS(749), + [anon_sym_PLUS_PLUS2] = ACTIONS(749), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(749), + [anon_sym_SLASH_SLASH2] = ACTIONS(749), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(749), + [anon_sym_bit_DASHshr2] = ACTIONS(749), + [anon_sym_bit_DASHand2] = ACTIONS(749), + [anon_sym_bit_DASHxor2] = ACTIONS(749), + [anon_sym_bit_DASHor2] = ACTIONS(749), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(1726), + [aux_sym__immediate_decimal_token5] = ACTIONS(1728), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(749), + [anon_sym_out_GT_GT] = ACTIONS(749), + [anon_sym_e_GT_GT] = ACTIONS(749), + [anon_sym_o_GT_GT] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), + [sym__unquoted_pattern] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(438)] = { + [sym__expr_parenthesized_immediate] = STATE(1287), + [sym__immediate_decimal] = STATE(1288), + [sym_val_variable] = STATE(1287), + [sym_comment] = STATE(438), + [ts_builtin_sym_end] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1625), + [anon_sym_STAR2] = ACTIONS(1625), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_has2] = ACTIONS(1623), + [anon_sym_not_DASHhas2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_like2] = ACTIONS(1623), + [anon_sym_not_DASHlike2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1625), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1625), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(439)] = { + [sym_comment] = STATE(439), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_PLUS_EQ] = ACTIONS(1704), + [anon_sym_DASH_EQ] = ACTIONS(1704), + [anon_sym_STAR_EQ] = ACTIONS(1704), + [anon_sym_SLASH_EQ] = ACTIONS(1704), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1704), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -81308,10 +81933,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1604), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -81324,7 +81949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1604), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -81332,27 +81957,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1604), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -81363,239 +81988,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(435)] = { - [sym_comment] = STATE(435), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1718), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [STATE(440)] = { + [sym__expr_parenthesized_immediate] = STATE(1338), + [sym__immediate_decimal] = STATE(1339), + [sym_val_variable] = STATE(1338), + [sym_comment] = STATE(440), + [ts_builtin_sym_end] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [sym__newline] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_err_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_GT_PIPE] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1667), + [anon_sym_xor2] = ACTIONS(1667), + [anon_sym_or2] = ACTIONS(1667), + [anon_sym_not_DASHin2] = ACTIONS(1667), + [anon_sym_has2] = ACTIONS(1667), + [anon_sym_not_DASHhas2] = ACTIONS(1667), + [anon_sym_starts_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), + [anon_sym_ends_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), + [anon_sym_EQ_EQ2] = ACTIONS(1667), + [anon_sym_BANG_EQ2] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1667), + [anon_sym_GT_EQ2] = ACTIONS(1667), + [anon_sym_EQ_TILDE2] = ACTIONS(1667), + [anon_sym_BANG_TILDE2] = ACTIONS(1667), + [anon_sym_like2] = ACTIONS(1667), + [anon_sym_not_DASHlike2] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1667), + [anon_sym_PLUS_PLUS2] = ACTIONS(1667), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1667), + [anon_sym_SLASH_SLASH2] = ACTIONS(1667), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1667), + [anon_sym_bit_DASHshr2] = ACTIONS(1667), + [anon_sym_bit_DASHand2] = ACTIONS(1667), + [anon_sym_bit_DASHxor2] = ACTIONS(1667), + [anon_sym_bit_DASHor2] = ACTIONS(1667), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1667), + [anon_sym_out_GT_GT] = ACTIONS(1667), + [anon_sym_e_GT_GT] = ACTIONS(1667), + [anon_sym_o_GT_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(436)] = { - [sym_comment] = STATE(436), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1694), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [STATE(441)] = { + [sym__expr_parenthesized_immediate] = STATE(1340), + [sym__immediate_decimal] = STATE(1341), + [sym_val_variable] = STATE(1340), + [sym_comment] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(1673), + [anon_sym_in] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_STAR2] = ACTIONS(1675), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_has2] = ACTIONS(1673), + [anon_sym_not_DASHhas2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_like2] = ACTIONS(1673), + [anon_sym_not_DASHlike2] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1675), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1675), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(437)] = { - [sym_comment] = STATE(437), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_EQ_GT] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1522), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), + [STATE(442)] = { + [sym__expr_parenthesized_immediate] = STATE(1343), + [sym__immediate_decimal] = STATE(1263), + [sym_val_variable] = STATE(1343), + [sym_comment] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(1633), + [anon_sym_in] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1635), + [anon_sym_DASH2] = ACTIONS(1635), + [anon_sym_STAR2] = ACTIONS(1635), + [anon_sym_and2] = ACTIONS(1633), + [anon_sym_xor2] = ACTIONS(1633), + [anon_sym_or2] = ACTIONS(1633), + [anon_sym_not_DASHin2] = ACTIONS(1633), + [anon_sym_has2] = ACTIONS(1633), + [anon_sym_not_DASHhas2] = ACTIONS(1633), + [anon_sym_starts_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1633), + [anon_sym_ends_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1633), + [anon_sym_EQ_EQ2] = ACTIONS(1633), + [anon_sym_BANG_EQ2] = ACTIONS(1633), + [anon_sym_LT2] = ACTIONS(1635), + [anon_sym_LT_EQ2] = ACTIONS(1633), + [anon_sym_GT_EQ2] = ACTIONS(1633), + [anon_sym_EQ_TILDE2] = ACTIONS(1633), + [anon_sym_BANG_TILDE2] = ACTIONS(1633), + [anon_sym_like2] = ACTIONS(1633), + [anon_sym_not_DASHlike2] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1633), + [anon_sym_PLUS_PLUS2] = ACTIONS(1633), + [anon_sym_SLASH2] = ACTIONS(1635), + [anon_sym_mod2] = ACTIONS(1633), + [anon_sym_SLASH_SLASH2] = ACTIONS(1633), + [anon_sym_PLUS2] = ACTIONS(1635), + [anon_sym_bit_DASHshl2] = ACTIONS(1633), + [anon_sym_bit_DASHshr2] = ACTIONS(1633), + [anon_sym_bit_DASHand2] = ACTIONS(1633), + [anon_sym_bit_DASHxor2] = ACTIONS(1633), + [anon_sym_bit_DASHor2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1635), + [anon_sym_out_GT] = ACTIONS(1635), + [anon_sym_e_GT] = ACTIONS(1635), + [anon_sym_o_GT] = ACTIONS(1635), + [anon_sym_err_PLUSout_GT] = ACTIONS(1635), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1635), + [anon_sym_o_PLUSe_GT] = ACTIONS(1635), + [anon_sym_e_PLUSo_GT] = ACTIONS(1635), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(438)] = { - [sym_comment] = STATE(438), - [anon_sym_EQ] = ACTIONS(1720), - [anon_sym_PLUS_EQ] = ACTIONS(1722), - [anon_sym_DASH_EQ] = ACTIONS(1722), - [anon_sym_STAR_EQ] = ACTIONS(1722), - [anon_sym_SLASH_EQ] = ACTIONS(1722), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1722), + [STATE(443)] = { + [sym__expr_parenthesized_immediate] = STATE(1291), + [sym__immediate_decimal] = STATE(1292), + [sym_val_variable] = STATE(1291), + [sym_comment] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(444)] = { + [sym_comment] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(1706), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1732), + [anon_sym_DASH_EQ] = ACTIONS(1732), + [anon_sym_STAR_EQ] = ACTIONS(1732), + [anon_sym_SLASH_EQ] = ACTIONS(1732), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1732), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -81608,10 +82309,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_STAR2] = ACTIONS(1604), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -81624,7 +82324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1604), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -81632,27 +82332,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1604), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_DOT_DOT2] = ACTIONS(1734), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -81663,14 +82363,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(439)] = { - [sym_comment] = STATE(439), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1704), - [anon_sym_DASH_EQ] = ACTIONS(1704), - [anon_sym_STAR_EQ] = ACTIONS(1704), - [anon_sym_SLASH_EQ] = ACTIONS(1704), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1704), + [STATE(445)] = { + [sym_comment] = STATE(445), + [anon_sym_if] = ACTIONS(1531), + [anon_sym_in] = ACTIONS(1531), + [sym__newline] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_err_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_GT_PIPE] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), + [anon_sym_RPAREN] = ACTIONS(1531), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_EQ_GT] = ACTIONS(1531), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1531), + [anon_sym_xor2] = ACTIONS(1531), + [anon_sym_or2] = ACTIONS(1531), + [anon_sym_not_DASHin2] = ACTIONS(1531), + [anon_sym_has2] = ACTIONS(1531), + [anon_sym_not_DASHhas2] = ACTIONS(1531), + [anon_sym_starts_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), + [anon_sym_ends_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), + [anon_sym_EQ_EQ2] = ACTIONS(1531), + [anon_sym_BANG_EQ2] = ACTIONS(1531), + [anon_sym_LT2] = ACTIONS(1529), + [anon_sym_LT_EQ2] = ACTIONS(1531), + [anon_sym_GT_EQ2] = ACTIONS(1531), + [anon_sym_EQ_TILDE2] = ACTIONS(1531), + [anon_sym_BANG_TILDE2] = ACTIONS(1531), + [anon_sym_like2] = ACTIONS(1531), + [anon_sym_not_DASHlike2] = ACTIONS(1531), + [anon_sym_STAR_STAR2] = ACTIONS(1531), + [anon_sym_PLUS_PLUS2] = ACTIONS(1531), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1531), + [anon_sym_SLASH_SLASH2] = ACTIONS(1531), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_bit_DASHshl2] = ACTIONS(1531), + [anon_sym_bit_DASHshr2] = ACTIONS(1531), + [anon_sym_bit_DASHand2] = ACTIONS(1531), + [anon_sym_bit_DASHxor2] = ACTIONS(1531), + [anon_sym_bit_DASHor2] = ACTIONS(1531), + [anon_sym_DOT_DOT2] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), + [anon_sym_COLON2] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1529), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [anon_sym_err_GT_GT] = ACTIONS(1531), + [anon_sym_out_GT_GT] = ACTIONS(1531), + [anon_sym_e_GT_GT] = ACTIONS(1531), + [anon_sym_o_GT_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(446)] = { + [sym_comment] = STATE(446), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1515), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1515), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [anon_sym_COLON2] = ACTIONS(1515), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(447)] = { + [sym_comment] = STATE(447), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), + [aux_sym__immediate_decimal_token1] = ACTIONS(1742), + [aux_sym__immediate_decimal_token5] = ACTIONS(1744), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(448)] = { + [sym_comment] = STATE(448), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1748), + [anon_sym_DASH_EQ] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1748), + [anon_sym_SLASH_EQ] = ACTIONS(1748), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1748), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -81683,10 +82608,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_STAR2] = ACTIONS(1604), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -81699,7 +82624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1604), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -81707,27 +82632,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1604), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -81738,390 +82663,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(440)] = { - [sym_comment] = STATE(440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(441)] = { - [sym_comment] = STATE(441), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(442)] = { - [sym_comment] = STATE(442), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(1730), - [aux_sym__immediate_decimal_token5] = ACTIONS(1732), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [STATE(449)] = { + [sym_comment] = STATE(449), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT_DOT2] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(443)] = { - [sym__expr_parenthesized_immediate] = STATE(1269), - [sym__immediate_decimal] = STATE(1271), - [sym_val_variable] = STATE(1269), - [sym_comment] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [STATE(450)] = { + [sym_comment] = STATE(450), + [anon_sym_in] = ACTIONS(741), + [sym__newline] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_err_GT_PIPE] = ACTIONS(741), + [anon_sym_out_GT_PIPE] = ACTIONS(741), + [anon_sym_e_GT_PIPE] = ACTIONS(741), + [anon_sym_o_GT_PIPE] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(741), + [anon_sym_xor2] = ACTIONS(741), + [anon_sym_or2] = ACTIONS(741), + [anon_sym_not_DASHin2] = ACTIONS(741), + [anon_sym_has2] = ACTIONS(741), + [anon_sym_not_DASHhas2] = ACTIONS(741), + [anon_sym_starts_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), + [anon_sym_ends_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), + [anon_sym_EQ_EQ2] = ACTIONS(741), + [anon_sym_BANG_EQ2] = ACTIONS(741), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(741), + [anon_sym_GT_EQ2] = ACTIONS(741), + [anon_sym_EQ_TILDE2] = ACTIONS(741), + [anon_sym_BANG_TILDE2] = ACTIONS(741), + [anon_sym_like2] = ACTIONS(741), + [anon_sym_not_DASHlike2] = ACTIONS(741), + [anon_sym_LPAREN2] = ACTIONS(741), + [anon_sym_STAR_STAR2] = ACTIONS(741), + [anon_sym_PLUS_PLUS2] = ACTIONS(741), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(741), + [anon_sym_SLASH_SLASH2] = ACTIONS(741), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(741), + [anon_sym_bit_DASHshr2] = ACTIONS(741), + [anon_sym_bit_DASHand2] = ACTIONS(741), + [anon_sym_bit_DASHxor2] = ACTIONS(741), + [anon_sym_bit_DASHor2] = ACTIONS(741), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(741), + [anon_sym_out_GT_GT] = ACTIONS(741), + [anon_sym_e_GT_GT] = ACTIONS(741), + [anon_sym_o_GT_GT] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), + [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(444)] = { - [sym_comment] = STATE(444), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1740), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [STATE(451)] = { + [sym_comment] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(741), + [sym__newline] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_err_GT_PIPE] = ACTIONS(741), + [anon_sym_out_GT_PIPE] = ACTIONS(741), + [anon_sym_e_GT_PIPE] = ACTIONS(741), + [anon_sym_o_GT_PIPE] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(741), + [anon_sym_xor2] = ACTIONS(741), + [anon_sym_or2] = ACTIONS(741), + [anon_sym_not_DASHin2] = ACTIONS(741), + [anon_sym_has2] = ACTIONS(741), + [anon_sym_not_DASHhas2] = ACTIONS(741), + [anon_sym_starts_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), + [anon_sym_ends_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), + [anon_sym_EQ_EQ2] = ACTIONS(741), + [anon_sym_BANG_EQ2] = ACTIONS(741), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(741), + [anon_sym_GT_EQ2] = ACTIONS(741), + [anon_sym_EQ_TILDE2] = ACTIONS(741), + [anon_sym_BANG_TILDE2] = ACTIONS(741), + [anon_sym_like2] = ACTIONS(741), + [anon_sym_not_DASHlike2] = ACTIONS(741), + [anon_sym_LPAREN2] = ACTIONS(741), + [anon_sym_STAR_STAR2] = ACTIONS(741), + [anon_sym_PLUS_PLUS2] = ACTIONS(741), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(741), + [anon_sym_SLASH_SLASH2] = ACTIONS(741), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(741), + [anon_sym_bit_DASHshr2] = ACTIONS(741), + [anon_sym_bit_DASHand2] = ACTIONS(741), + [anon_sym_bit_DASHxor2] = ACTIONS(741), + [anon_sym_bit_DASHor2] = ACTIONS(741), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(1758), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(741), + [anon_sym_out_GT_GT] = ACTIONS(741), + [anon_sym_e_GT_GT] = ACTIONS(741), + [anon_sym_o_GT_GT] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), + [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(445)] = { - [sym_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_PLUS_EQ] = ACTIONS(1746), - [anon_sym_DASH_EQ] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1746), - [anon_sym_SLASH_EQ] = ACTIONS(1746), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1746), + [STATE(452)] = { + [sym_comment] = STATE(452), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1764), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -82134,9 +82908,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_STAR2] = ACTIONS(1604), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -82149,7 +82924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1604), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -82157,27 +82932,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1604), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -82188,705 +82963,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(446)] = { - [sym__expr_parenthesized_immediate] = STATE(4739), - [sym_comment] = STATE(446), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(1754), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), - [sym_filesize_unit] = ACTIONS(1758), - [sym_duration_unit] = ACTIONS(1760), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(447)] = { - [sym_comment] = STATE(447), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_EQ_GT] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(448)] = { - [sym__expr_parenthesized_immediate] = STATE(1336), - [sym__immediate_decimal] = STATE(1337), - [sym_val_variable] = STATE(1336), - [sym_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [sym__newline] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_err_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_GT_PIPE] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_has2] = ACTIONS(1667), - [anon_sym_not_DASHhas2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1667), - [anon_sym_GT_EQ2] = ACTIONS(1667), - [anon_sym_EQ_TILDE2] = ACTIONS(1667), - [anon_sym_BANG_TILDE2] = ACTIONS(1667), - [anon_sym_like2] = ACTIONS(1667), - [anon_sym_not_DASHlike2] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1667), - [anon_sym_bit_DASHshr2] = ACTIONS(1667), - [anon_sym_bit_DASHand2] = ACTIONS(1667), - [anon_sym_bit_DASHxor2] = ACTIONS(1667), - [anon_sym_bit_DASHor2] = ACTIONS(1667), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1667), - [anon_sym_out_GT_GT] = ACTIONS(1667), - [anon_sym_e_GT_GT] = ACTIONS(1667), - [anon_sym_o_GT_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(449)] = { - [sym__expr_parenthesized_immediate] = STATE(1339), - [sym__immediate_decimal] = STATE(1340), - [sym_val_variable] = STATE(1339), - [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_has2] = ACTIONS(1671), - [anon_sym_not_DASHhas2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_like2] = ACTIONS(1671), - [anon_sym_not_DASHlike2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(450)] = { - [sym__expr_parenthesized_immediate] = STATE(1341), - [sym__immediate_decimal] = STATE(1342), - [sym_val_variable] = STATE(1341), - [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(451)] = { - [sym__expr_parenthesized_immediate] = STATE(1343), - [sym__immediate_decimal] = STATE(1344), - [sym_val_variable] = STATE(1343), - [sym_comment] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(452)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1318), - [sym_val_variable] = STATE(1311), - [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(453)] = { - [sym_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [STATE(453)] = { + [sym_comment] = STATE(453), + [anon_sym_in] = ACTIONS(757), + [sym__newline] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_err_GT_PIPE] = ACTIONS(757), + [anon_sym_out_GT_PIPE] = ACTIONS(757), + [anon_sym_e_GT_PIPE] = ACTIONS(757), + [anon_sym_o_GT_PIPE] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(757), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(757), + [anon_sym_xor2] = ACTIONS(757), + [anon_sym_or2] = ACTIONS(757), + [anon_sym_not_DASHin2] = ACTIONS(757), + [anon_sym_has2] = ACTIONS(757), + [anon_sym_not_DASHhas2] = ACTIONS(757), + [anon_sym_starts_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(757), + [anon_sym_ends_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(757), + [anon_sym_EQ_EQ2] = ACTIONS(757), + [anon_sym_BANG_EQ2] = ACTIONS(757), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(757), + [anon_sym_GT_EQ2] = ACTIONS(757), + [anon_sym_EQ_TILDE2] = ACTIONS(757), + [anon_sym_BANG_TILDE2] = ACTIONS(757), + [anon_sym_like2] = ACTIONS(757), + [anon_sym_not_DASHlike2] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR_STAR2] = ACTIONS(757), + [anon_sym_PLUS_PLUS2] = ACTIONS(757), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(757), + [anon_sym_SLASH_SLASH2] = ACTIONS(757), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(757), + [anon_sym_bit_DASHshr2] = ACTIONS(757), + [anon_sym_bit_DASHand2] = ACTIONS(757), + [anon_sym_bit_DASHxor2] = ACTIONS(757), + [anon_sym_bit_DASHor2] = ACTIONS(757), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1766), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(757), + [anon_sym_out_GT_GT] = ACTIONS(757), + [anon_sym_e_GT_GT] = ACTIONS(757), + [anon_sym_o_GT_GT] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(757), + [sym__unquoted_pattern] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(3), }, [STATE(454)] = { [sym_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1764), - [aux_sym__immediate_decimal_token5] = ACTIONS(1766), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_EQ_GT] = ACTIONS(1535), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1535), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [anon_sym_COLON2] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), [anon_sym_POUND] = ACTIONS(3), }, [STATE(455)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(5085), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), [sym_comment] = STATE(455), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1770), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_EQ_GT] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1770), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_has2] = ACTIONS(1768), + [anon_sym_not_DASHhas2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1770), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_like2] = ACTIONS(1768), + [anon_sym_not_DASHlike2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1770), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1770), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1770), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_COLON2] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1770), + [anon_sym_out_GT] = ACTIONS(1770), + [anon_sym_e_GT] = ACTIONS(1770), + [anon_sym_o_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT] = ACTIONS(1770), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(456)] = { + [sym_cmd_identifier] = STATE(4340), + [sym__match_pattern_record_body] = STATE(5227), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4387), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4445), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(456), + [aux_sym__types_body_repeat1] = STATE(510), + [aux_sym__match_pattern_record_body_repeat1] = STATE(773), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -82907,60 +83231,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1782), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(456)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4796), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(456), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(457)] = { + [sym_comment] = STATE(457), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [sym__newline] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_err_GT_PIPE] = ACTIONS(1647), + [anon_sym_out_GT_PIPE] = ACTIONS(1647), + [anon_sym_e_GT_PIPE] = ACTIONS(1647), + [anon_sym_o_GT_PIPE] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_GT2] = ACTIONS(1649), + [anon_sym_DASH2] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_EQ_GT] = ACTIONS(1647), + [anon_sym_STAR2] = ACTIONS(1649), + [anon_sym_and2] = ACTIONS(1647), + [anon_sym_xor2] = ACTIONS(1647), + [anon_sym_or2] = ACTIONS(1647), + [anon_sym_not_DASHin2] = ACTIONS(1647), + [anon_sym_has2] = ACTIONS(1647), + [anon_sym_not_DASHhas2] = ACTIONS(1647), + [anon_sym_starts_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1647), + [anon_sym_ends_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1647), + [anon_sym_EQ_EQ2] = ACTIONS(1647), + [anon_sym_BANG_EQ2] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1649), + [anon_sym_LT_EQ2] = ACTIONS(1647), + [anon_sym_GT_EQ2] = ACTIONS(1647), + [anon_sym_EQ_TILDE2] = ACTIONS(1647), + [anon_sym_BANG_TILDE2] = ACTIONS(1647), + [anon_sym_like2] = ACTIONS(1647), + [anon_sym_not_DASHlike2] = ACTIONS(1647), + [anon_sym_STAR_STAR2] = ACTIONS(1647), + [anon_sym_PLUS_PLUS2] = ACTIONS(1647), + [anon_sym_SLASH2] = ACTIONS(1649), + [anon_sym_mod2] = ACTIONS(1647), + [anon_sym_SLASH_SLASH2] = ACTIONS(1647), + [anon_sym_PLUS2] = ACTIONS(1649), + [anon_sym_bit_DASHshl2] = ACTIONS(1647), + [anon_sym_bit_DASHshr2] = ACTIONS(1647), + [anon_sym_bit_DASHand2] = ACTIONS(1647), + [anon_sym_bit_DASHxor2] = ACTIONS(1647), + [anon_sym_bit_DASHor2] = ACTIONS(1647), + [anon_sym_DOT_DOT2] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), + [anon_sym_COLON2] = ACTIONS(1647), + [anon_sym_err_GT] = ACTIONS(1649), + [anon_sym_out_GT] = ACTIONS(1649), + [anon_sym_e_GT] = ACTIONS(1649), + [anon_sym_o_GT] = ACTIONS(1649), + [anon_sym_err_PLUSout_GT] = ACTIONS(1649), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1649), + [anon_sym_o_PLUSe_GT] = ACTIONS(1649), + [anon_sym_e_PLUSo_GT] = ACTIONS(1649), + [anon_sym_err_GT_GT] = ACTIONS(1647), + [anon_sym_out_GT_GT] = ACTIONS(1647), + [anon_sym_e_GT_GT] = ACTIONS(1647), + [anon_sym_o_GT_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(458)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5257), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(458), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -82981,60 +83379,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1800), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(457)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(4816), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(457), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), + [STATE(459)] = { + [sym__expr_parenthesized_immediate] = STATE(4754), + [sym_comment] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(908), + [anon_sym_in] = ACTIONS(908), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(908), + [anon_sym_xor2] = ACTIONS(908), + [anon_sym_or2] = ACTIONS(908), + [anon_sym_not_DASHin2] = ACTIONS(908), + [anon_sym_has2] = ACTIONS(908), + [anon_sym_not_DASHhas2] = ACTIONS(908), + [anon_sym_starts_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(908), + [anon_sym_ends_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(908), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(908), + [anon_sym_like2] = ACTIONS(908), + [anon_sym_not_DASHlike2] = ACTIONS(908), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(908), + [anon_sym_PLUS_PLUS2] = ACTIONS(908), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(908), + [anon_sym_SLASH_SLASH2] = ACTIONS(908), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(908), + [anon_sym_bit_DASHshr2] = ACTIONS(908), + [anon_sym_bit_DASHand2] = ACTIONS(908), + [anon_sym_bit_DASHxor2] = ACTIONS(908), + [anon_sym_bit_DASHor2] = ACTIONS(908), + [anon_sym_DOT_DOT2] = ACTIONS(1802), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1804), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1804), + [sym_filesize_unit] = ACTIONS(1806), + [sym_duration_unit] = ACTIONS(1808), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [sym__unquoted_pattern] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(460)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5079), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(460), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83055,60 +83527,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1812), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(458)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(5190), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(458), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), + [STATE(461)] = { + [sym_cmd_identifier] = STATE(4340), + [sym__match_pattern_record_body] = STATE(4865), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4387), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4445), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(461), + [aux_sym__types_body_repeat1] = STATE(510), + [aux_sym__match_pattern_record_body_repeat1] = STATE(773), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83129,134 +83601,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1814), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(459)] = { - [sym_comment] = STATE(459), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [STATE(462)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_val_entry] = STATE(4428), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(462), + [aux_sym__types_body_repeat1] = STATE(2117), + [aux_sym_list_body_repeat1] = STATE(529), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(460)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(460), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(463)] = { + [sym_comment] = STATE(463), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1816), + [aux_sym__immediate_decimal_token5] = ACTIONS(1820), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(464)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5106), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(464), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83277,60 +83823,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1822), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(461)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5191), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(461), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(465)] = { + [sym_comment] = STATE(465), + [anon_sym_EQ] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1826), + [anon_sym_DASH_EQ] = ACTIONS(1826), + [anon_sym_STAR_EQ] = ACTIONS(1826), + [anon_sym_SLASH_EQ] = ACTIONS(1826), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1826), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(466)] = { + [sym_comment] = STATE(466), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(757), + [sym__newline] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_err_GT_PIPE] = ACTIONS(757), + [anon_sym_out_GT_PIPE] = ACTIONS(757), + [anon_sym_e_GT_PIPE] = ACTIONS(757), + [anon_sym_o_GT_PIPE] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(757), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(757), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(757), + [anon_sym_xor2] = ACTIONS(757), + [anon_sym_or2] = ACTIONS(757), + [anon_sym_not_DASHin2] = ACTIONS(757), + [anon_sym_has2] = ACTIONS(757), + [anon_sym_not_DASHhas2] = ACTIONS(757), + [anon_sym_starts_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(757), + [anon_sym_ends_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(757), + [anon_sym_EQ_EQ2] = ACTIONS(757), + [anon_sym_BANG_EQ2] = ACTIONS(757), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(757), + [anon_sym_GT_EQ2] = ACTIONS(757), + [anon_sym_EQ_TILDE2] = ACTIONS(757), + [anon_sym_BANG_TILDE2] = ACTIONS(757), + [anon_sym_like2] = ACTIONS(757), + [anon_sym_not_DASHlike2] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR_STAR2] = ACTIONS(757), + [anon_sym_PLUS_PLUS2] = ACTIONS(757), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(757), + [anon_sym_SLASH_SLASH2] = ACTIONS(757), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(757), + [anon_sym_bit_DASHshr2] = ACTIONS(757), + [anon_sym_bit_DASHand2] = ACTIONS(757), + [anon_sym_bit_DASHxor2] = ACTIONS(757), + [anon_sym_bit_DASHor2] = ACTIONS(757), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1828), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(757), + [anon_sym_out_GT_GT] = ACTIONS(757), + [anon_sym_e_GT_GT] = ACTIONS(757), + [anon_sym_o_GT_GT] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(757), + [sym__unquoted_pattern] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(467)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5157), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(467), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83351,504 +84045,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1830), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(462)] = { - [sym_comment] = STATE(462), - [anon_sym_in] = ACTIONS(851), - [sym__newline] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_err_GT_PIPE] = ACTIONS(851), - [anon_sym_out_GT_PIPE] = ACTIONS(851), - [anon_sym_e_GT_PIPE] = ACTIONS(851), - [anon_sym_o_GT_PIPE] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(851), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(851), - [anon_sym_RBRACE] = ACTIONS(851), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(851), - [anon_sym_xor2] = ACTIONS(851), - [anon_sym_or2] = ACTIONS(851), - [anon_sym_not_DASHin2] = ACTIONS(851), - [anon_sym_has2] = ACTIONS(851), - [anon_sym_not_DASHhas2] = ACTIONS(851), - [anon_sym_starts_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(851), - [anon_sym_ends_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(851), - [anon_sym_EQ_EQ2] = ACTIONS(851), - [anon_sym_BANG_EQ2] = ACTIONS(851), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(851), - [anon_sym_GT_EQ2] = ACTIONS(851), - [anon_sym_EQ_TILDE2] = ACTIONS(851), - [anon_sym_BANG_TILDE2] = ACTIONS(851), - [anon_sym_like2] = ACTIONS(851), - [anon_sym_not_DASHlike2] = ACTIONS(851), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_STAR_STAR2] = ACTIONS(851), - [anon_sym_PLUS_PLUS2] = ACTIONS(851), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(851), - [anon_sym_SLASH_SLASH2] = ACTIONS(851), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(851), - [anon_sym_bit_DASHshr2] = ACTIONS(851), - [anon_sym_bit_DASHand2] = ACTIONS(851), - [anon_sym_bit_DASHxor2] = ACTIONS(851), - [anon_sym_bit_DASHor2] = ACTIONS(851), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(851), - [anon_sym_out_GT_GT] = ACTIONS(851), - [anon_sym_e_GT_GT] = ACTIONS(851), - [anon_sym_o_GT_GT] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(851), - [sym__unquoted_pattern] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(463)] = { - [sym__expr_parenthesized_immediate] = STATE(4775), - [sym_comment] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(1812), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1814), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1814), - [sym_filesize_unit] = ACTIONS(1816), - [sym_duration_unit] = ACTIONS(1818), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(464)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4583), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(464), - [aux_sym__types_body_repeat1] = STATE(2117), - [aux_sym_list_body_repeat1] = STATE(630), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(465)] = { - [sym_comment] = STATE(465), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_COLON2] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [STATE(468)] = { + [sym_comment] = STATE(468), + [anon_sym_in] = ACTIONS(749), + [sym__newline] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_err_GT_PIPE] = ACTIONS(749), + [anon_sym_out_GT_PIPE] = ACTIONS(749), + [anon_sym_e_GT_PIPE] = ACTIONS(749), + [anon_sym_o_GT_PIPE] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(749), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(749), + [anon_sym_xor2] = ACTIONS(749), + [anon_sym_or2] = ACTIONS(749), + [anon_sym_not_DASHin2] = ACTIONS(749), + [anon_sym_has2] = ACTIONS(749), + [anon_sym_not_DASHhas2] = ACTIONS(749), + [anon_sym_starts_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), + [anon_sym_ends_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), + [anon_sym_EQ_EQ2] = ACTIONS(749), + [anon_sym_BANG_EQ2] = ACTIONS(749), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(749), + [anon_sym_GT_EQ2] = ACTIONS(749), + [anon_sym_EQ_TILDE2] = ACTIONS(749), + [anon_sym_BANG_TILDE2] = ACTIONS(749), + [anon_sym_like2] = ACTIONS(749), + [anon_sym_not_DASHlike2] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(749), + [anon_sym_STAR_STAR2] = ACTIONS(749), + [anon_sym_PLUS_PLUS2] = ACTIONS(749), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(749), + [anon_sym_SLASH_SLASH2] = ACTIONS(749), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(749), + [anon_sym_bit_DASHshr2] = ACTIONS(749), + [anon_sym_bit_DASHand2] = ACTIONS(749), + [anon_sym_bit_DASHxor2] = ACTIONS(749), + [anon_sym_bit_DASHor2] = ACTIONS(749), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(749), + [anon_sym_out_GT_GT] = ACTIONS(749), + [anon_sym_e_GT_GT] = ACTIONS(749), + [anon_sym_o_GT_GT] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), + [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(466)] = { - [sym_comment] = STATE(466), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_RPAREN] = ACTIONS(1822), - [anon_sym_GT2] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_EQ_GT] = ACTIONS(1822), - [anon_sym_STAR2] = ACTIONS(1824), - [anon_sym_and2] = ACTIONS(1822), - [anon_sym_xor2] = ACTIONS(1822), - [anon_sym_or2] = ACTIONS(1822), - [anon_sym_not_DASHin2] = ACTIONS(1822), - [anon_sym_has2] = ACTIONS(1822), - [anon_sym_not_DASHhas2] = ACTIONS(1822), - [anon_sym_starts_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1822), - [anon_sym_ends_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1822), - [anon_sym_EQ_EQ2] = ACTIONS(1822), - [anon_sym_BANG_EQ2] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1824), - [anon_sym_LT_EQ2] = ACTIONS(1822), - [anon_sym_GT_EQ2] = ACTIONS(1822), - [anon_sym_EQ_TILDE2] = ACTIONS(1822), - [anon_sym_BANG_TILDE2] = ACTIONS(1822), - [anon_sym_like2] = ACTIONS(1822), - [anon_sym_not_DASHlike2] = ACTIONS(1822), - [anon_sym_STAR_STAR2] = ACTIONS(1822), - [anon_sym_PLUS_PLUS2] = ACTIONS(1822), - [anon_sym_SLASH2] = ACTIONS(1824), - [anon_sym_mod2] = ACTIONS(1822), - [anon_sym_SLASH_SLASH2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_bit_DASHshl2] = ACTIONS(1822), - [anon_sym_bit_DASHshr2] = ACTIONS(1822), - [anon_sym_bit_DASHand2] = ACTIONS(1822), - [anon_sym_bit_DASHxor2] = ACTIONS(1822), - [anon_sym_bit_DASHor2] = ACTIONS(1822), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), - [anon_sym_COLON2] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [STATE(469)] = { + [sym_comment] = STATE(469), + [anon_sym_in] = ACTIONS(757), + [sym__newline] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_err_GT_PIPE] = ACTIONS(757), + [anon_sym_out_GT_PIPE] = ACTIONS(757), + [anon_sym_e_GT_PIPE] = ACTIONS(757), + [anon_sym_o_GT_PIPE] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(757), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(757), + [anon_sym_xor2] = ACTIONS(757), + [anon_sym_or2] = ACTIONS(757), + [anon_sym_not_DASHin2] = ACTIONS(757), + [anon_sym_has2] = ACTIONS(757), + [anon_sym_not_DASHhas2] = ACTIONS(757), + [anon_sym_starts_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(757), + [anon_sym_ends_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(757), + [anon_sym_EQ_EQ2] = ACTIONS(757), + [anon_sym_BANG_EQ2] = ACTIONS(757), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(757), + [anon_sym_GT_EQ2] = ACTIONS(757), + [anon_sym_EQ_TILDE2] = ACTIONS(757), + [anon_sym_BANG_TILDE2] = ACTIONS(757), + [anon_sym_like2] = ACTIONS(757), + [anon_sym_not_DASHlike2] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR_STAR2] = ACTIONS(757), + [anon_sym_PLUS_PLUS2] = ACTIONS(757), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(757), + [anon_sym_SLASH_SLASH2] = ACTIONS(757), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(757), + [anon_sym_bit_DASHshr2] = ACTIONS(757), + [anon_sym_bit_DASHand2] = ACTIONS(757), + [anon_sym_bit_DASHxor2] = ACTIONS(757), + [anon_sym_bit_DASHor2] = ACTIONS(757), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(757), + [anon_sym_out_GT_GT] = ACTIONS(757), + [anon_sym_e_GT_GT] = ACTIONS(757), + [anon_sym_o_GT_GT] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(757), + [sym__unquoted_pattern] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(467)] = { - [sym_comment] = STATE(467), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [STATE(470)] = { + [sym_comment] = STATE(470), + [anon_sym_in] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [sym__unquoted_pattern] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(468)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5015), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(468), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(471)] = { + [sym_cmd_identifier] = STATE(4340), + [sym__match_pattern_record_body] = STATE(4978), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4387), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4445), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(471), + [aux_sym__types_body_repeat1] = STATE(510), + [aux_sym__match_pattern_record_body_repeat1] = STATE(773), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83869,38 +84341,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1832), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(469)] = { - [sym_comment] = STATE(469), + [STATE(472)] = { + [sym_comment] = STATE(472), [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), @@ -83951,7 +84423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1712), + [aux_sym__immediate_decimal_token5] = ACTIONS(1760), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -83973,88 +84445,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(470)] = { - [sym_comment] = STATE(470), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(471)] = { - [sym_comment] = STATE(471), - [anon_sym_EQ] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1830), - [anon_sym_DASH_EQ] = ACTIONS(1830), - [anon_sym_STAR_EQ] = ACTIONS(1830), - [anon_sym_SLASH_EQ] = ACTIONS(1830), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1830), + [STATE(473)] = { + [sym_comment] = STATE(473), + [anon_sym_EQ] = ACTIONS(1834), + [anon_sym_PLUS_EQ] = ACTIONS(1836), + [anon_sym_DASH_EQ] = ACTIONS(1836), + [anon_sym_STAR_EQ] = ACTIONS(1836), + [anon_sym_SLASH_EQ] = ACTIONS(1836), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1836), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -84067,9 +84465,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_STAR2] = ACTIONS(1604), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -84082,7 +84480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1604), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -84090,27 +84488,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1604), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -84121,82 +84519,594 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(472)] = { - [sym_comment] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1832), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [STATE(474)] = { + [sym_comment] = STATE(474), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT_DOT2] = ACTIONS(1752), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(473)] = { - [sym_comment] = STATE(473), + [STATE(475)] = { + [sym_comment] = STATE(475), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1816), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(476)] = { + [sym_cell_path] = STATE(937), + [sym_path] = STATE(446), + [sym_comment] = STATE(476), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1838), + [sym__newline] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_err_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_GT_PIPE] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_GT2] = ACTIONS(1840), + [anon_sym_DASH2] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_EQ_GT] = ACTIONS(1838), + [anon_sym_STAR2] = ACTIONS(1840), + [anon_sym_and2] = ACTIONS(1838), + [anon_sym_xor2] = ACTIONS(1838), + [anon_sym_or2] = ACTIONS(1838), + [anon_sym_not_DASHin2] = ACTIONS(1838), + [anon_sym_has2] = ACTIONS(1838), + [anon_sym_not_DASHhas2] = ACTIONS(1838), + [anon_sym_starts_DASHwith2] = ACTIONS(1838), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1838), + [anon_sym_ends_DASHwith2] = ACTIONS(1838), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1838), + [anon_sym_EQ_EQ2] = ACTIONS(1838), + [anon_sym_BANG_EQ2] = ACTIONS(1838), + [anon_sym_LT2] = ACTIONS(1840), + [anon_sym_LT_EQ2] = ACTIONS(1838), + [anon_sym_GT_EQ2] = ACTIONS(1838), + [anon_sym_EQ_TILDE2] = ACTIONS(1838), + [anon_sym_BANG_TILDE2] = ACTIONS(1838), + [anon_sym_like2] = ACTIONS(1838), + [anon_sym_not_DASHlike2] = ACTIONS(1838), + [anon_sym_STAR_STAR2] = ACTIONS(1838), + [anon_sym_PLUS_PLUS2] = ACTIONS(1838), + [anon_sym_SLASH2] = ACTIONS(1840), + [anon_sym_mod2] = ACTIONS(1838), + [anon_sym_SLASH_SLASH2] = ACTIONS(1838), + [anon_sym_PLUS2] = ACTIONS(1840), + [anon_sym_bit_DASHshl2] = ACTIONS(1838), + [anon_sym_bit_DASHshr2] = ACTIONS(1838), + [anon_sym_bit_DASHand2] = ACTIONS(1838), + [anon_sym_bit_DASHxor2] = ACTIONS(1838), + [anon_sym_bit_DASHor2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1840), + [anon_sym_out_GT] = ACTIONS(1840), + [anon_sym_e_GT] = ACTIONS(1840), + [anon_sym_o_GT] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT] = ACTIONS(1840), + [anon_sym_err_GT_GT] = ACTIONS(1838), + [anon_sym_out_GT_GT] = ACTIONS(1838), + [anon_sym_e_GT_GT] = ACTIONS(1838), + [anon_sym_o_GT_GT] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(477)] = { + [sym_comment] = STATE(477), + [ts_builtin_sym_end] = ACTIONS(1511), + [anon_sym_in] = ACTIONS(1511), + [sym__newline] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_err_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_GT_PIPE] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1511), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1511), + [anon_sym_xor2] = ACTIONS(1511), + [anon_sym_or2] = ACTIONS(1511), + [anon_sym_not_DASHin2] = ACTIONS(1511), + [anon_sym_has2] = ACTIONS(1511), + [anon_sym_not_DASHhas2] = ACTIONS(1511), + [anon_sym_starts_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1511), + [anon_sym_ends_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1511), + [anon_sym_EQ_EQ2] = ACTIONS(1511), + [anon_sym_BANG_EQ2] = ACTIONS(1511), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1511), + [anon_sym_GT_EQ2] = ACTIONS(1511), + [anon_sym_EQ_TILDE2] = ACTIONS(1511), + [anon_sym_BANG_TILDE2] = ACTIONS(1511), + [anon_sym_like2] = ACTIONS(1511), + [anon_sym_not_DASHlike2] = ACTIONS(1511), + [anon_sym_STAR_STAR2] = ACTIONS(1511), + [anon_sym_PLUS_PLUS2] = ACTIONS(1511), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1511), + [anon_sym_SLASH_SLASH2] = ACTIONS(1511), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1511), + [anon_sym_bit_DASHshr2] = ACTIONS(1511), + [anon_sym_bit_DASHand2] = ACTIONS(1511), + [anon_sym_bit_DASHxor2] = ACTIONS(1511), + [anon_sym_bit_DASHor2] = ACTIONS(1511), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [anon_sym_QMARK2] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1511), + [anon_sym_out_GT_GT] = ACTIONS(1511), + [anon_sym_e_GT_GT] = ACTIONS(1511), + [anon_sym_o_GT_GT] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(478)] = { + [sym_cell_path] = STATE(897), + [sym_path] = STATE(446), + [sym_comment] = STATE(478), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1844), + [sym__newline] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_err_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_GT_PIPE] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_GT2] = ACTIONS(1846), + [anon_sym_DASH2] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_EQ_GT] = ACTIONS(1844), + [anon_sym_STAR2] = ACTIONS(1846), + [anon_sym_and2] = ACTIONS(1844), + [anon_sym_xor2] = ACTIONS(1844), + [anon_sym_or2] = ACTIONS(1844), + [anon_sym_not_DASHin2] = ACTIONS(1844), + [anon_sym_has2] = ACTIONS(1844), + [anon_sym_not_DASHhas2] = ACTIONS(1844), + [anon_sym_starts_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1844), + [anon_sym_ends_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1844), + [anon_sym_EQ_EQ2] = ACTIONS(1844), + [anon_sym_BANG_EQ2] = ACTIONS(1844), + [anon_sym_LT2] = ACTIONS(1846), + [anon_sym_LT_EQ2] = ACTIONS(1844), + [anon_sym_GT_EQ2] = ACTIONS(1844), + [anon_sym_EQ_TILDE2] = ACTIONS(1844), + [anon_sym_BANG_TILDE2] = ACTIONS(1844), + [anon_sym_like2] = ACTIONS(1844), + [anon_sym_not_DASHlike2] = ACTIONS(1844), + [anon_sym_STAR_STAR2] = ACTIONS(1844), + [anon_sym_PLUS_PLUS2] = ACTIONS(1844), + [anon_sym_SLASH2] = ACTIONS(1846), + [anon_sym_mod2] = ACTIONS(1844), + [anon_sym_SLASH_SLASH2] = ACTIONS(1844), + [anon_sym_PLUS2] = ACTIONS(1846), + [anon_sym_bit_DASHshl2] = ACTIONS(1844), + [anon_sym_bit_DASHshr2] = ACTIONS(1844), + [anon_sym_bit_DASHand2] = ACTIONS(1844), + [anon_sym_bit_DASHxor2] = ACTIONS(1844), + [anon_sym_bit_DASHor2] = ACTIONS(1844), + [anon_sym_DOT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1846), + [anon_sym_out_GT] = ACTIONS(1846), + [anon_sym_e_GT] = ACTIONS(1846), + [anon_sym_o_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT] = ACTIONS(1846), + [anon_sym_err_GT_GT] = ACTIONS(1844), + [anon_sym_out_GT_GT] = ACTIONS(1844), + [anon_sym_e_GT_GT] = ACTIONS(1844), + [anon_sym_o_GT_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(479)] = { + [sym_cell_path] = STATE(942), + [sym_path] = STATE(446), + [sym_comment] = STATE(479), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1848), + [sym__newline] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_err_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_GT_PIPE] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_GT2] = ACTIONS(1851), + [anon_sym_DASH2] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_EQ_GT] = ACTIONS(1848), + [anon_sym_STAR2] = ACTIONS(1851), + [anon_sym_and2] = ACTIONS(1848), + [anon_sym_xor2] = ACTIONS(1848), + [anon_sym_or2] = ACTIONS(1848), + [anon_sym_not_DASHin2] = ACTIONS(1848), + [anon_sym_has2] = ACTIONS(1848), + [anon_sym_not_DASHhas2] = ACTIONS(1848), + [anon_sym_starts_DASHwith2] = ACTIONS(1848), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1848), + [anon_sym_ends_DASHwith2] = ACTIONS(1848), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1848), + [anon_sym_EQ_EQ2] = ACTIONS(1848), + [anon_sym_BANG_EQ2] = ACTIONS(1848), + [anon_sym_LT2] = ACTIONS(1851), + [anon_sym_LT_EQ2] = ACTIONS(1848), + [anon_sym_GT_EQ2] = ACTIONS(1848), + [anon_sym_EQ_TILDE2] = ACTIONS(1848), + [anon_sym_BANG_TILDE2] = ACTIONS(1848), + [anon_sym_like2] = ACTIONS(1848), + [anon_sym_not_DASHlike2] = ACTIONS(1848), + [anon_sym_STAR_STAR2] = ACTIONS(1848), + [anon_sym_PLUS_PLUS2] = ACTIONS(1848), + [anon_sym_SLASH2] = ACTIONS(1851), + [anon_sym_mod2] = ACTIONS(1848), + [anon_sym_SLASH_SLASH2] = ACTIONS(1848), + [anon_sym_PLUS2] = ACTIONS(1851), + [anon_sym_bit_DASHshl2] = ACTIONS(1848), + [anon_sym_bit_DASHshr2] = ACTIONS(1848), + [anon_sym_bit_DASHand2] = ACTIONS(1848), + [anon_sym_bit_DASHxor2] = ACTIONS(1848), + [anon_sym_bit_DASHor2] = ACTIONS(1848), + [anon_sym_DOT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1851), + [anon_sym_out_GT] = ACTIONS(1851), + [anon_sym_e_GT] = ACTIONS(1851), + [anon_sym_o_GT] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT] = ACTIONS(1851), + [anon_sym_err_GT_GT] = ACTIONS(1848), + [anon_sym_out_GT_GT] = ACTIONS(1848), + [anon_sym_e_GT_GT] = ACTIONS(1848), + [anon_sym_o_GT_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(480)] = { + [sym_comment] = STATE(480), + [anon_sym_in] = ACTIONS(1854), + [sym__newline] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_err_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_GT_PIPE] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), + [anon_sym_RPAREN] = ACTIONS(1854), + [anon_sym_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [anon_sym_DOT_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1854), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1856), + [anon_sym_out_GT] = ACTIONS(1856), + [anon_sym_e_GT] = ACTIONS(1856), + [anon_sym_o_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT] = ACTIONS(1856), + [anon_sym_err_GT_GT] = ACTIONS(1854), + [anon_sym_out_GT_GT] = ACTIONS(1854), + [anon_sym_e_GT_GT] = ACTIONS(1854), + [anon_sym_o_GT_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [sym__unquoted_pattern] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(481)] = { + [sym_comment] = STATE(481), + [ts_builtin_sym_end] = ACTIONS(1519), + [anon_sym_in] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_GT2] = ACTIONS(1517), + [anon_sym_DASH2] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_STAR2] = ACTIONS(1517), + [anon_sym_and2] = ACTIONS(1519), + [anon_sym_xor2] = ACTIONS(1519), + [anon_sym_or2] = ACTIONS(1519), + [anon_sym_not_DASHin2] = ACTIONS(1519), + [anon_sym_has2] = ACTIONS(1519), + [anon_sym_not_DASHhas2] = ACTIONS(1519), + [anon_sym_starts_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1519), + [anon_sym_ends_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1519), + [anon_sym_EQ_EQ2] = ACTIONS(1519), + [anon_sym_BANG_EQ2] = ACTIONS(1519), + [anon_sym_LT2] = ACTIONS(1517), + [anon_sym_LT_EQ2] = ACTIONS(1519), + [anon_sym_GT_EQ2] = ACTIONS(1519), + [anon_sym_EQ_TILDE2] = ACTIONS(1519), + [anon_sym_BANG_TILDE2] = ACTIONS(1519), + [anon_sym_like2] = ACTIONS(1519), + [anon_sym_not_DASHlike2] = ACTIONS(1519), + [anon_sym_STAR_STAR2] = ACTIONS(1519), + [anon_sym_PLUS_PLUS2] = ACTIONS(1519), + [anon_sym_SLASH2] = ACTIONS(1517), + [anon_sym_mod2] = ACTIONS(1519), + [anon_sym_SLASH_SLASH2] = ACTIONS(1519), + [anon_sym_PLUS2] = ACTIONS(1517), + [anon_sym_bit_DASHshl2] = ACTIONS(1519), + [anon_sym_bit_DASHshr2] = ACTIONS(1519), + [anon_sym_bit_DASHand2] = ACTIONS(1519), + [anon_sym_bit_DASHxor2] = ACTIONS(1519), + [anon_sym_bit_DASHor2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [anon_sym_QMARK2] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1517), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(482)] = { + [sym_comment] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), [anon_sym_SEMI] = ACTIONS(749), @@ -84209,10 +85119,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(749), [anon_sym_xor2] = ACTIONS(749), @@ -84269,816 +85177,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(474)] = { - [sym_comment] = STATE(474), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1836), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(475)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5053), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(475), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(476)] = { - [sym_comment] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(477)] = { - [sym_comment] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(1840), - [aux_sym__immediate_decimal_token5] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(478)] = { - [sym_cell_path] = STATE(935), - [sym_path] = STATE(783), - [sym_comment] = STATE(478), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(479)] = { - [sym_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(480)] = { - [sym_comment] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(481)] = { - [sym_comment] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1846), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(482)] = { - [sym_comment] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(483)] = { [sym_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1516), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [ts_builtin_sym_end] = ACTIONS(1523), + [anon_sym_in] = ACTIONS(1523), + [sym__newline] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_err_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_GT_PIPE] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1523), + [anon_sym_GT2] = ACTIONS(1521), + [anon_sym_DASH2] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR2] = ACTIONS(1521), + [anon_sym_and2] = ACTIONS(1523), + [anon_sym_xor2] = ACTIONS(1523), + [anon_sym_or2] = ACTIONS(1523), + [anon_sym_not_DASHin2] = ACTIONS(1523), + [anon_sym_has2] = ACTIONS(1523), + [anon_sym_not_DASHhas2] = ACTIONS(1523), + [anon_sym_starts_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1523), + [anon_sym_ends_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1523), + [anon_sym_EQ_EQ2] = ACTIONS(1523), + [anon_sym_BANG_EQ2] = ACTIONS(1523), + [anon_sym_LT2] = ACTIONS(1521), + [anon_sym_LT_EQ2] = ACTIONS(1523), + [anon_sym_GT_EQ2] = ACTIONS(1523), + [anon_sym_EQ_TILDE2] = ACTIONS(1523), + [anon_sym_BANG_TILDE2] = ACTIONS(1523), + [anon_sym_like2] = ACTIONS(1523), + [anon_sym_not_DASHlike2] = ACTIONS(1523), + [anon_sym_STAR_STAR2] = ACTIONS(1523), + [anon_sym_PLUS_PLUS2] = ACTIONS(1523), + [anon_sym_SLASH2] = ACTIONS(1521), + [anon_sym_mod2] = ACTIONS(1523), + [anon_sym_SLASH_SLASH2] = ACTIONS(1523), + [anon_sym_PLUS2] = ACTIONS(1521), + [anon_sym_bit_DASHshl2] = ACTIONS(1523), + [anon_sym_bit_DASHshr2] = ACTIONS(1523), + [anon_sym_bit_DASHand2] = ACTIONS(1523), + [anon_sym_bit_DASHxor2] = ACTIONS(1523), + [anon_sym_bit_DASHor2] = ACTIONS(1523), + [anon_sym_DOT_DOT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1523), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1523), + [anon_sym_QMARK2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_DOT2] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1521), + [anon_sym_out_GT] = ACTIONS(1521), + [anon_sym_e_GT] = ACTIONS(1521), + [anon_sym_o_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT] = ACTIONS(1521), + [anon_sym_err_GT_GT] = ACTIONS(1523), + [anon_sym_out_GT_GT] = ACTIONS(1523), + [anon_sym_e_GT_GT] = ACTIONS(1523), + [anon_sym_o_GT_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), [anon_sym_POUND] = ACTIONS(3), }, [STATE(484)] = { - [sym_cell_path] = STATE(923), - [sym_path] = STATE(441), [sym_comment] = STATE(484), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1850), - [sym__newline] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_err_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_GT_PIPE] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_GT2] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(1850), - [anon_sym_STAR2] = ACTIONS(1853), - [anon_sym_and2] = ACTIONS(1850), - [anon_sym_xor2] = ACTIONS(1850), - [anon_sym_or2] = ACTIONS(1850), - [anon_sym_not_DASHin2] = ACTIONS(1850), - [anon_sym_has2] = ACTIONS(1850), - [anon_sym_not_DASHhas2] = ACTIONS(1850), - [anon_sym_starts_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1850), - [anon_sym_ends_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1850), - [anon_sym_EQ_EQ2] = ACTIONS(1850), - [anon_sym_BANG_EQ2] = ACTIONS(1850), - [anon_sym_LT2] = ACTIONS(1853), - [anon_sym_LT_EQ2] = ACTIONS(1850), - [anon_sym_GT_EQ2] = ACTIONS(1850), - [anon_sym_EQ_TILDE2] = ACTIONS(1850), - [anon_sym_BANG_TILDE2] = ACTIONS(1850), - [anon_sym_like2] = ACTIONS(1850), - [anon_sym_not_DASHlike2] = ACTIONS(1850), - [anon_sym_STAR_STAR2] = ACTIONS(1850), - [anon_sym_PLUS_PLUS2] = ACTIONS(1850), - [anon_sym_SLASH2] = ACTIONS(1853), - [anon_sym_mod2] = ACTIONS(1850), - [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_bit_DASHshl2] = ACTIONS(1850), - [anon_sym_bit_DASHshr2] = ACTIONS(1850), - [anon_sym_bit_DASHand2] = ACTIONS(1850), - [anon_sym_bit_DASHxor2] = ACTIONS(1850), - [anon_sym_bit_DASHor2] = ACTIONS(1850), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1853), - [anon_sym_out_GT] = ACTIONS(1853), - [anon_sym_e_GT] = ACTIONS(1853), - [anon_sym_o_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT] = ACTIONS(1853), - [anon_sym_err_GT_GT] = ACTIONS(1850), - [anon_sym_out_GT_GT] = ACTIONS(1850), - [anon_sym_e_GT_GT] = ACTIONS(1850), - [anon_sym_o_GT_GT] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), + [ts_builtin_sym_end] = ACTIONS(1460), + [anon_sym_in] = ACTIONS(1460), + [sym__newline] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_err_GT_PIPE] = ACTIONS(1460), + [anon_sym_out_GT_PIPE] = ACTIONS(1460), + [anon_sym_e_GT_PIPE] = ACTIONS(1460), + [anon_sym_o_GT_PIPE] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), + [anon_sym_GT2] = ACTIONS(1458), + [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_STAR2] = ACTIONS(1458), + [anon_sym_and2] = ACTIONS(1460), + [anon_sym_xor2] = ACTIONS(1460), + [anon_sym_or2] = ACTIONS(1460), + [anon_sym_not_DASHin2] = ACTIONS(1460), + [anon_sym_has2] = ACTIONS(1460), + [anon_sym_not_DASHhas2] = ACTIONS(1460), + [anon_sym_starts_DASHwith2] = ACTIONS(1460), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), + [anon_sym_ends_DASHwith2] = ACTIONS(1460), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), + [anon_sym_EQ_EQ2] = ACTIONS(1460), + [anon_sym_BANG_EQ2] = ACTIONS(1460), + [anon_sym_LT2] = ACTIONS(1458), + [anon_sym_LT_EQ2] = ACTIONS(1460), + [anon_sym_GT_EQ2] = ACTIONS(1460), + [anon_sym_EQ_TILDE2] = ACTIONS(1460), + [anon_sym_BANG_TILDE2] = ACTIONS(1460), + [anon_sym_like2] = ACTIONS(1460), + [anon_sym_not_DASHlike2] = ACTIONS(1460), + [anon_sym_STAR_STAR2] = ACTIONS(1460), + [anon_sym_PLUS_PLUS2] = ACTIONS(1460), + [anon_sym_SLASH2] = ACTIONS(1458), + [anon_sym_mod2] = ACTIONS(1460), + [anon_sym_SLASH_SLASH2] = ACTIONS(1460), + [anon_sym_PLUS2] = ACTIONS(1458), + [anon_sym_bit_DASHshl2] = ACTIONS(1460), + [anon_sym_bit_DASHshr2] = ACTIONS(1460), + [anon_sym_bit_DASHand2] = ACTIONS(1460), + [anon_sym_bit_DASHxor2] = ACTIONS(1460), + [anon_sym_bit_DASHor2] = ACTIONS(1460), + [anon_sym_DOT_DOT2] = ACTIONS(1458), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), + [anon_sym_QMARK2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1458), + [anon_sym_err_GT] = ACTIONS(1458), + [anon_sym_out_GT] = ACTIONS(1458), + [anon_sym_e_GT] = ACTIONS(1458), + [anon_sym_o_GT] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT] = ACTIONS(1458), + [anon_sym_err_GT_GT] = ACTIONS(1460), + [anon_sym_out_GT_GT] = ACTIONS(1460), + [anon_sym_e_GT_GT] = ACTIONS(1460), + [anon_sym_o_GT_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), [anon_sym_POUND] = ACTIONS(3), }, [STATE(485)] = { - [sym_cell_path] = STATE(936), - [sym_path] = STATE(441), [sym_comment] = STATE(485), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [anon_sym_if] = ACTIONS(1858), [anon_sym_in] = ACTIONS(1858), [sym__newline] = ACTIONS(1858), [anon_sym_SEMI] = ACTIONS(1858), @@ -85128,7 +85375,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1858), [anon_sym_bit_DASHxor2] = ACTIONS(1858), [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1858), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1858), [anon_sym_err_GT] = ACTIONS(1860), [anon_sym_out_GT] = ACTIONS(1860), [anon_sym_e_GT] = ACTIONS(1860), @@ -85148,740 +85397,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(486)] = { - [sym_cell_path] = STATE(724), - [sym_path] = STATE(441), + [sym_cell_path] = STATE(955), + [sym_path] = STATE(827), [sym_comment] = STATE(486), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1864), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_EQ_GT] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), - [anon_sym_and2] = ACTIONS(1862), - [anon_sym_xor2] = ACTIONS(1862), - [anon_sym_or2] = ACTIONS(1862), - [anon_sym_not_DASHin2] = ACTIONS(1862), - [anon_sym_has2] = ACTIONS(1862), - [anon_sym_not_DASHhas2] = ACTIONS(1862), - [anon_sym_starts_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), - [anon_sym_ends_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), - [anon_sym_EQ_EQ2] = ACTIONS(1862), - [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), - [anon_sym_LT_EQ2] = ACTIONS(1862), - [anon_sym_GT_EQ2] = ACTIONS(1862), - [anon_sym_EQ_TILDE2] = ACTIONS(1862), - [anon_sym_BANG_TILDE2] = ACTIONS(1862), - [anon_sym_like2] = ACTIONS(1862), - [anon_sym_not_DASHlike2] = ACTIONS(1862), - [anon_sym_STAR_STAR2] = ACTIONS(1862), - [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1864), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), - [anon_sym_bit_DASHshl2] = ACTIONS(1862), - [anon_sym_bit_DASHshr2] = ACTIONS(1862), - [anon_sym_bit_DASHand2] = ACTIONS(1862), - [anon_sym_bit_DASHxor2] = ACTIONS(1862), - [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(1856), - [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), - [anon_sym_err_GT_GT] = ACTIONS(1862), - [anon_sym_out_GT_GT] = ACTIONS(1862), - [anon_sym_e_GT_GT] = ACTIONS(1862), - [anon_sym_o_GT_GT] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1677), + [anon_sym_in] = ACTIONS(1677), + [sym__newline] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_GT2] = ACTIONS(1679), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_STAR2] = ACTIONS(1679), + [anon_sym_and2] = ACTIONS(1677), + [anon_sym_xor2] = ACTIONS(1677), + [anon_sym_or2] = ACTIONS(1677), + [anon_sym_not_DASHin2] = ACTIONS(1677), + [anon_sym_has2] = ACTIONS(1677), + [anon_sym_not_DASHhas2] = ACTIONS(1677), + [anon_sym_starts_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1677), + [anon_sym_ends_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1677), + [anon_sym_EQ_EQ2] = ACTIONS(1677), + [anon_sym_BANG_EQ2] = ACTIONS(1677), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ2] = ACTIONS(1677), + [anon_sym_GT_EQ2] = ACTIONS(1677), + [anon_sym_EQ_TILDE2] = ACTIONS(1677), + [anon_sym_BANG_TILDE2] = ACTIONS(1677), + [anon_sym_like2] = ACTIONS(1677), + [anon_sym_not_DASHlike2] = ACTIONS(1677), + [anon_sym_STAR_STAR2] = ACTIONS(1677), + [anon_sym_PLUS_PLUS2] = ACTIONS(1677), + [anon_sym_SLASH2] = ACTIONS(1679), + [anon_sym_mod2] = ACTIONS(1677), + [anon_sym_SLASH_SLASH2] = ACTIONS(1677), + [anon_sym_PLUS2] = ACTIONS(1679), + [anon_sym_bit_DASHshl2] = ACTIONS(1677), + [anon_sym_bit_DASHshr2] = ACTIONS(1677), + [anon_sym_bit_DASHand2] = ACTIONS(1677), + [anon_sym_bit_DASHxor2] = ACTIONS(1677), + [anon_sym_bit_DASHor2] = ACTIONS(1677), + [anon_sym_DOT_DOT2] = ACTIONS(1679), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [anon_sym_DOT2] = ACTIONS(1862), + [anon_sym_err_GT] = ACTIONS(1679), + [anon_sym_out_GT] = ACTIONS(1679), + [anon_sym_e_GT] = ACTIONS(1679), + [anon_sym_o_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT] = ACTIONS(1679), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), [anon_sym_POUND] = ACTIONS(3), }, [STATE(487)] = { [sym_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1545), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(757), + [sym__newline] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_err_GT_PIPE] = ACTIONS(757), + [anon_sym_out_GT_PIPE] = ACTIONS(757), + [anon_sym_e_GT_PIPE] = ACTIONS(757), + [anon_sym_o_GT_PIPE] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(757), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(757), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(757), + [anon_sym_xor2] = ACTIONS(757), + [anon_sym_or2] = ACTIONS(757), + [anon_sym_not_DASHin2] = ACTIONS(757), + [anon_sym_has2] = ACTIONS(757), + [anon_sym_not_DASHhas2] = ACTIONS(757), + [anon_sym_starts_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(757), + [anon_sym_ends_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(757), + [anon_sym_EQ_EQ2] = ACTIONS(757), + [anon_sym_BANG_EQ2] = ACTIONS(757), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(757), + [anon_sym_GT_EQ2] = ACTIONS(757), + [anon_sym_EQ_TILDE2] = ACTIONS(757), + [anon_sym_BANG_TILDE2] = ACTIONS(757), + [anon_sym_like2] = ACTIONS(757), + [anon_sym_not_DASHlike2] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR_STAR2] = ACTIONS(757), + [anon_sym_PLUS_PLUS2] = ACTIONS(757), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(757), + [anon_sym_SLASH_SLASH2] = ACTIONS(757), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(757), + [anon_sym_bit_DASHshr2] = ACTIONS(757), + [anon_sym_bit_DASHand2] = ACTIONS(757), + [anon_sym_bit_DASHxor2] = ACTIONS(757), + [anon_sym_bit_DASHor2] = ACTIONS(757), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(757), + [anon_sym_out_GT_GT] = ACTIONS(757), + [anon_sym_e_GT_GT] = ACTIONS(757), + [anon_sym_o_GT_GT] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(757), + [sym__unquoted_pattern] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(3), }, [STATE(488)] = { [sym_comment] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1472), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, [STATE(489)] = { - [sym_cell_path] = STATE(899), - [sym_path] = STATE(441), + [sym_cell_path] = STATE(935), + [sym_path] = STATE(827), [sym_comment] = STATE(489), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [sym__newline] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_err_GT_PIPE] = ACTIONS(1647), + [anon_sym_out_GT_PIPE] = ACTIONS(1647), + [anon_sym_e_GT_PIPE] = ACTIONS(1647), + [anon_sym_o_GT_PIPE] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), + [anon_sym_GT2] = ACTIONS(1649), + [anon_sym_DASH2] = ACTIONS(1647), + [anon_sym_STAR2] = ACTIONS(1649), + [anon_sym_and2] = ACTIONS(1647), + [anon_sym_xor2] = ACTIONS(1647), + [anon_sym_or2] = ACTIONS(1647), + [anon_sym_not_DASHin2] = ACTIONS(1647), + [anon_sym_has2] = ACTIONS(1647), + [anon_sym_not_DASHhas2] = ACTIONS(1647), + [anon_sym_starts_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1647), + [anon_sym_ends_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1647), + [anon_sym_EQ_EQ2] = ACTIONS(1647), + [anon_sym_BANG_EQ2] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1649), + [anon_sym_LT_EQ2] = ACTIONS(1647), + [anon_sym_GT_EQ2] = ACTIONS(1647), + [anon_sym_EQ_TILDE2] = ACTIONS(1647), + [anon_sym_BANG_TILDE2] = ACTIONS(1647), + [anon_sym_like2] = ACTIONS(1647), + [anon_sym_not_DASHlike2] = ACTIONS(1647), + [anon_sym_STAR_STAR2] = ACTIONS(1647), + [anon_sym_PLUS_PLUS2] = ACTIONS(1647), + [anon_sym_SLASH2] = ACTIONS(1649), + [anon_sym_mod2] = ACTIONS(1647), + [anon_sym_SLASH_SLASH2] = ACTIONS(1647), + [anon_sym_PLUS2] = ACTIONS(1649), + [anon_sym_bit_DASHshl2] = ACTIONS(1647), + [anon_sym_bit_DASHshr2] = ACTIONS(1647), + [anon_sym_bit_DASHand2] = ACTIONS(1647), + [anon_sym_bit_DASHxor2] = ACTIONS(1647), + [anon_sym_bit_DASHor2] = ACTIONS(1647), + [anon_sym_DOT_DOT2] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), + [anon_sym_DOT2] = ACTIONS(1862), + [anon_sym_err_GT] = ACTIONS(1649), + [anon_sym_out_GT] = ACTIONS(1649), + [anon_sym_e_GT] = ACTIONS(1649), + [anon_sym_o_GT] = ACTIONS(1649), + [anon_sym_err_PLUSout_GT] = ACTIONS(1649), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1649), + [anon_sym_o_PLUSe_GT] = ACTIONS(1649), + [anon_sym_e_PLUSo_GT] = ACTIONS(1649), + [anon_sym_err_GT_GT] = ACTIONS(1647), + [anon_sym_out_GT_GT] = ACTIONS(1647), + [anon_sym_e_GT_GT] = ACTIONS(1647), + [anon_sym_o_GT_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), [anon_sym_POUND] = ACTIONS(3), }, [STATE(490)] = { + [sym__path_suffix] = STATE(744), [sym_comment] = STATE(490), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_DOT_DOT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(491)] = { - [sym_comment] = STATE(491), - [anon_sym_if] = ACTIONS(1874), - [anon_sym_in] = ACTIONS(1874), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1874), - [anon_sym_GT2] = ACTIONS(1876), - [anon_sym_DASH2] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_EQ_GT] = ACTIONS(1874), - [anon_sym_STAR2] = ACTIONS(1876), - [anon_sym_and2] = ACTIONS(1874), - [anon_sym_xor2] = ACTIONS(1874), - [anon_sym_or2] = ACTIONS(1874), - [anon_sym_not_DASHin2] = ACTIONS(1874), - [anon_sym_has2] = ACTIONS(1874), - [anon_sym_not_DASHhas2] = ACTIONS(1874), - [anon_sym_starts_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), - [anon_sym_ends_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), - [anon_sym_EQ_EQ2] = ACTIONS(1874), - [anon_sym_BANG_EQ2] = ACTIONS(1874), - [anon_sym_LT2] = ACTIONS(1876), - [anon_sym_LT_EQ2] = ACTIONS(1874), - [anon_sym_GT_EQ2] = ACTIONS(1874), - [anon_sym_EQ_TILDE2] = ACTIONS(1874), - [anon_sym_BANG_TILDE2] = ACTIONS(1874), - [anon_sym_like2] = ACTIONS(1874), - [anon_sym_not_DASHlike2] = ACTIONS(1874), - [anon_sym_STAR_STAR2] = ACTIONS(1874), - [anon_sym_PLUS_PLUS2] = ACTIONS(1874), - [anon_sym_SLASH2] = ACTIONS(1876), - [anon_sym_mod2] = ACTIONS(1874), - [anon_sym_SLASH_SLASH2] = ACTIONS(1874), - [anon_sym_PLUS2] = ACTIONS(1876), - [anon_sym_bit_DASHshl2] = ACTIONS(1874), - [anon_sym_bit_DASHshr2] = ACTIONS(1874), - [anon_sym_bit_DASHand2] = ACTIONS(1874), - [anon_sym_bit_DASHxor2] = ACTIONS(1874), - [anon_sym_bit_DASHor2] = ACTIONS(1874), - [anon_sym_DOT_DOT2] = ACTIONS(1876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1876), - [anon_sym_out_GT] = ACTIONS(1876), - [anon_sym_e_GT] = ACTIONS(1876), - [anon_sym_o_GT] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT] = ACTIONS(1876), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(492)] = { - [sym_comment] = STATE(492), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_EQ_GT] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1558), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(493)] = { - [sym_cell_path] = STATE(735), - [sym_path] = STATE(441), - [sym_comment] = STATE(493), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1878), - [sym__newline] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_err_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_GT_PIPE] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1878), - [anon_sym_GT2] = ACTIONS(1880), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_EQ_GT] = ACTIONS(1878), - [anon_sym_STAR2] = ACTIONS(1880), - [anon_sym_and2] = ACTIONS(1878), - [anon_sym_xor2] = ACTIONS(1878), - [anon_sym_or2] = ACTIONS(1878), - [anon_sym_not_DASHin2] = ACTIONS(1878), - [anon_sym_has2] = ACTIONS(1878), - [anon_sym_not_DASHhas2] = ACTIONS(1878), - [anon_sym_starts_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), - [anon_sym_ends_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), - [anon_sym_EQ_EQ2] = ACTIONS(1878), - [anon_sym_BANG_EQ2] = ACTIONS(1878), - [anon_sym_LT2] = ACTIONS(1880), - [anon_sym_LT_EQ2] = ACTIONS(1878), - [anon_sym_GT_EQ2] = ACTIONS(1878), - [anon_sym_EQ_TILDE2] = ACTIONS(1878), - [anon_sym_BANG_TILDE2] = ACTIONS(1878), - [anon_sym_like2] = ACTIONS(1878), - [anon_sym_not_DASHlike2] = ACTIONS(1878), - [anon_sym_STAR_STAR2] = ACTIONS(1878), - [anon_sym_PLUS_PLUS2] = ACTIONS(1878), - [anon_sym_SLASH2] = ACTIONS(1880), - [anon_sym_mod2] = ACTIONS(1878), - [anon_sym_SLASH_SLASH2] = ACTIONS(1878), - [anon_sym_PLUS2] = ACTIONS(1880), - [anon_sym_bit_DASHshl2] = ACTIONS(1878), - [anon_sym_bit_DASHshr2] = ACTIONS(1878), - [anon_sym_bit_DASHand2] = ACTIONS(1878), - [anon_sym_bit_DASHxor2] = ACTIONS(1878), - [anon_sym_bit_DASHor2] = ACTIONS(1878), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1880), - [anon_sym_out_GT] = ACTIONS(1880), - [anon_sym_e_GT] = ACTIONS(1880), - [anon_sym_o_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT] = ACTIONS(1880), - [anon_sym_err_GT_GT] = ACTIONS(1878), - [anon_sym_out_GT_GT] = ACTIONS(1878), - [anon_sym_e_GT_GT] = ACTIONS(1878), - [anon_sym_o_GT_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(494)] = { - [sym_cell_path] = STATE(932), - [sym_path] = STATE(783), - [sym_comment] = STATE(494), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(1679), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1679), - [anon_sym_xor2] = ACTIONS(1679), - [anon_sym_or2] = ACTIONS(1679), - [anon_sym_not_DASHin2] = ACTIONS(1679), - [anon_sym_has2] = ACTIONS(1679), - [anon_sym_not_DASHhas2] = ACTIONS(1679), - [anon_sym_starts_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), - [anon_sym_ends_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), - [anon_sym_EQ_EQ2] = ACTIONS(1679), - [anon_sym_BANG_EQ2] = ACTIONS(1679), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1679), - [anon_sym_GT_EQ2] = ACTIONS(1679), - [anon_sym_EQ_TILDE2] = ACTIONS(1679), - [anon_sym_BANG_TILDE2] = ACTIONS(1679), - [anon_sym_like2] = ACTIONS(1679), - [anon_sym_not_DASHlike2] = ACTIONS(1679), - [anon_sym_STAR_STAR2] = ACTIONS(1679), - [anon_sym_PLUS_PLUS2] = ACTIONS(1679), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1679), - [anon_sym_SLASH_SLASH2] = ACTIONS(1679), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1679), - [anon_sym_bit_DASHshr2] = ACTIONS(1679), - [anon_sym_bit_DASHand2] = ACTIONS(1679), - [anon_sym_bit_DASHxor2] = ACTIONS(1679), - [anon_sym_bit_DASHor2] = ACTIONS(1679), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1679), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(495)] = { - [sym_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(496)] = { - [sym_cell_path] = STATE(933), - [sym_path] = STATE(783), - [sym_comment] = STATE(496), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), [ts_builtin_sym_end] = ACTIONS(1434), [anon_sym_in] = ACTIONS(1434), [sym__newline] = ACTIONS(1434), @@ -85931,7 +85740,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1432), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1844), + [anon_sym_QMARK2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_DOT2] = ACTIONS(1432), [anon_sym_err_GT] = ACTIONS(1432), [anon_sym_out_GT] = ACTIONS(1432), [anon_sym_e_GT] = ACTIONS(1432), @@ -85950,322 +85761,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(497)] = { - [sym_cell_path] = STATE(930), - [sym_path] = STATE(441), - [sym_comment] = STATE(497), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1882), - [sym__newline] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_err_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_GT_PIPE] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_GT2] = ACTIONS(1884), - [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_EQ_GT] = ACTIONS(1882), - [anon_sym_STAR2] = ACTIONS(1884), - [anon_sym_and2] = ACTIONS(1882), - [anon_sym_xor2] = ACTIONS(1882), - [anon_sym_or2] = ACTIONS(1882), - [anon_sym_not_DASHin2] = ACTIONS(1882), - [anon_sym_has2] = ACTIONS(1882), - [anon_sym_not_DASHhas2] = ACTIONS(1882), - [anon_sym_starts_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), - [anon_sym_ends_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), - [anon_sym_EQ_EQ2] = ACTIONS(1882), - [anon_sym_BANG_EQ2] = ACTIONS(1882), - [anon_sym_LT2] = ACTIONS(1884), - [anon_sym_LT_EQ2] = ACTIONS(1882), - [anon_sym_GT_EQ2] = ACTIONS(1882), - [anon_sym_EQ_TILDE2] = ACTIONS(1882), - [anon_sym_BANG_TILDE2] = ACTIONS(1882), - [anon_sym_like2] = ACTIONS(1882), - [anon_sym_not_DASHlike2] = ACTIONS(1882), - [anon_sym_STAR_STAR2] = ACTIONS(1882), - [anon_sym_PLUS_PLUS2] = ACTIONS(1882), - [anon_sym_SLASH2] = ACTIONS(1884), - [anon_sym_mod2] = ACTIONS(1882), - [anon_sym_SLASH_SLASH2] = ACTIONS(1882), - [anon_sym_PLUS2] = ACTIONS(1884), - [anon_sym_bit_DASHshl2] = ACTIONS(1882), - [anon_sym_bit_DASHshr2] = ACTIONS(1882), - [anon_sym_bit_DASHand2] = ACTIONS(1882), - [anon_sym_bit_DASHxor2] = ACTIONS(1882), - [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1884), - [anon_sym_out_GT] = ACTIONS(1884), - [anon_sym_e_GT] = ACTIONS(1884), - [anon_sym_o_GT] = ACTIONS(1884), - [anon_sym_err_PLUSout_GT] = ACTIONS(1884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), - [anon_sym_o_PLUSe_GT] = ACTIONS(1884), - [anon_sym_e_PLUSo_GT] = ACTIONS(1884), - [anon_sym_err_GT_GT] = ACTIONS(1882), - [anon_sym_out_GT_GT] = ACTIONS(1882), - [anon_sym_e_GT_GT] = ACTIONS(1882), - [anon_sym_o_GT_GT] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(498)] = { - [sym_comment] = STATE(498), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_GT2] = ACTIONS(1888), - [anon_sym_DASH2] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_EQ_GT] = ACTIONS(1886), - [anon_sym_STAR2] = ACTIONS(1888), - [anon_sym_and2] = ACTIONS(1886), - [anon_sym_xor2] = ACTIONS(1886), - [anon_sym_or2] = ACTIONS(1886), - [anon_sym_not_DASHin2] = ACTIONS(1886), - [anon_sym_has2] = ACTIONS(1886), - [anon_sym_not_DASHhas2] = ACTIONS(1886), - [anon_sym_starts_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1886), - [anon_sym_ends_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), - [anon_sym_EQ_EQ2] = ACTIONS(1886), - [anon_sym_BANG_EQ2] = ACTIONS(1886), - [anon_sym_LT2] = ACTIONS(1888), - [anon_sym_LT_EQ2] = ACTIONS(1886), - [anon_sym_GT_EQ2] = ACTIONS(1886), - [anon_sym_EQ_TILDE2] = ACTIONS(1886), - [anon_sym_BANG_TILDE2] = ACTIONS(1886), - [anon_sym_like2] = ACTIONS(1886), - [anon_sym_not_DASHlike2] = ACTIONS(1886), - [anon_sym_STAR_STAR2] = ACTIONS(1886), - [anon_sym_PLUS_PLUS2] = ACTIONS(1886), - [anon_sym_SLASH2] = ACTIONS(1888), - [anon_sym_mod2] = ACTIONS(1886), - [anon_sym_SLASH_SLASH2] = ACTIONS(1886), - [anon_sym_PLUS2] = ACTIONS(1888), - [anon_sym_bit_DASHshl2] = ACTIONS(1886), - [anon_sym_bit_DASHshr2] = ACTIONS(1886), - [anon_sym_bit_DASHand2] = ACTIONS(1886), - [anon_sym_bit_DASHxor2] = ACTIONS(1886), - [anon_sym_bit_DASHor2] = ACTIONS(1886), - [anon_sym_DOT_DOT2] = ACTIONS(1888), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1888), - [anon_sym_out_GT] = ACTIONS(1888), - [anon_sym_e_GT] = ACTIONS(1888), - [anon_sym_o_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT] = ACTIONS(1888), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(499)] = { - [sym_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(851), - [sym__newline] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_err_GT_PIPE] = ACTIONS(851), - [anon_sym_out_GT_PIPE] = ACTIONS(851), - [anon_sym_e_GT_PIPE] = ACTIONS(851), - [anon_sym_o_GT_PIPE] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(851), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(851), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(851), - [anon_sym_xor2] = ACTIONS(851), - [anon_sym_or2] = ACTIONS(851), - [anon_sym_not_DASHin2] = ACTIONS(851), - [anon_sym_has2] = ACTIONS(851), - [anon_sym_not_DASHhas2] = ACTIONS(851), - [anon_sym_starts_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(851), - [anon_sym_ends_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(851), - [anon_sym_EQ_EQ2] = ACTIONS(851), - [anon_sym_BANG_EQ2] = ACTIONS(851), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(851), - [anon_sym_GT_EQ2] = ACTIONS(851), - [anon_sym_EQ_TILDE2] = ACTIONS(851), - [anon_sym_BANG_TILDE2] = ACTIONS(851), - [anon_sym_like2] = ACTIONS(851), - [anon_sym_not_DASHlike2] = ACTIONS(851), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_STAR_STAR2] = ACTIONS(851), - [anon_sym_PLUS_PLUS2] = ACTIONS(851), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(851), - [anon_sym_SLASH_SLASH2] = ACTIONS(851), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(851), - [anon_sym_bit_DASHshr2] = ACTIONS(851), - [anon_sym_bit_DASHand2] = ACTIONS(851), - [anon_sym_bit_DASHxor2] = ACTIONS(851), - [anon_sym_bit_DASHor2] = ACTIONS(851), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(851), - [anon_sym_out_GT_GT] = ACTIONS(851), - [anon_sym_e_GT_GT] = ACTIONS(851), - [anon_sym_o_GT_GT] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(851), - [sym__unquoted_pattern] = ACTIONS(849), + [STATE(491)] = { + [sym_comment] = STATE(491), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_in] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [sym__unquoted_pattern] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(500)] = { - [sym_comment] = STATE(500), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [STATE(492)] = { + [sym_cell_path] = STATE(846), + [sym_path] = STATE(446), + [sym_comment] = STATE(492), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1868), + [sym__newline] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_err_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_GT_PIPE] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1868), + [anon_sym_RPAREN] = ACTIONS(1868), + [anon_sym_GT2] = ACTIONS(1870), + [anon_sym_DASH2] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_EQ_GT] = ACTIONS(1868), + [anon_sym_STAR2] = ACTIONS(1870), + [anon_sym_and2] = ACTIONS(1868), + [anon_sym_xor2] = ACTIONS(1868), + [anon_sym_or2] = ACTIONS(1868), + [anon_sym_not_DASHin2] = ACTIONS(1868), + [anon_sym_has2] = ACTIONS(1868), + [anon_sym_not_DASHhas2] = ACTIONS(1868), + [anon_sym_starts_DASHwith2] = ACTIONS(1868), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1868), + [anon_sym_ends_DASHwith2] = ACTIONS(1868), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1868), + [anon_sym_EQ_EQ2] = ACTIONS(1868), + [anon_sym_BANG_EQ2] = ACTIONS(1868), + [anon_sym_LT2] = ACTIONS(1870), + [anon_sym_LT_EQ2] = ACTIONS(1868), + [anon_sym_GT_EQ2] = ACTIONS(1868), + [anon_sym_EQ_TILDE2] = ACTIONS(1868), + [anon_sym_BANG_TILDE2] = ACTIONS(1868), + [anon_sym_like2] = ACTIONS(1868), + [anon_sym_not_DASHlike2] = ACTIONS(1868), + [anon_sym_STAR_STAR2] = ACTIONS(1868), + [anon_sym_PLUS_PLUS2] = ACTIONS(1868), + [anon_sym_SLASH2] = ACTIONS(1870), + [anon_sym_mod2] = ACTIONS(1868), + [anon_sym_SLASH_SLASH2] = ACTIONS(1868), + [anon_sym_PLUS2] = ACTIONS(1870), + [anon_sym_bit_DASHshl2] = ACTIONS(1868), + [anon_sym_bit_DASHshr2] = ACTIONS(1868), + [anon_sym_bit_DASHand2] = ACTIONS(1868), + [anon_sym_bit_DASHxor2] = ACTIONS(1868), + [anon_sym_bit_DASHor2] = ACTIONS(1868), + [anon_sym_DOT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1870), + [anon_sym_out_GT] = ACTIONS(1870), + [anon_sym_e_GT] = ACTIONS(1870), + [anon_sym_o_GT] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT] = ACTIONS(1870), + [anon_sym_err_GT_GT] = ACTIONS(1868), + [anon_sym_out_GT_GT] = ACTIONS(1868), + [anon_sym_e_GT_GT] = ACTIONS(1868), + [anon_sym_o_GT_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(501)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4298), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4450), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(501), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym__match_pattern_record_body_repeat1] = STATE(836), - [aux_sym_record_body_repeat1] = STATE(878), + [STATE(493)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4141), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4618), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(493), + [aux_sym__types_body_repeat1] = STATE(1505), + [aux_sym__match_pattern_record_body_repeat1] = STATE(719), + [aux_sym_record_body_repeat1] = STATE(748), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -86286,14126 +85951,14282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [STATE(494)] = { + [sym_cell_path] = STATE(956), + [sym_path] = STATE(446), + [sym_comment] = STATE(494), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1872), + [sym__newline] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_err_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_GT_PIPE] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_GT2] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_EQ_GT] = ACTIONS(1872), + [anon_sym_STAR2] = ACTIONS(1874), + [anon_sym_and2] = ACTIONS(1872), + [anon_sym_xor2] = ACTIONS(1872), + [anon_sym_or2] = ACTIONS(1872), + [anon_sym_not_DASHin2] = ACTIONS(1872), + [anon_sym_has2] = ACTIONS(1872), + [anon_sym_not_DASHhas2] = ACTIONS(1872), + [anon_sym_starts_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), + [anon_sym_ends_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), + [anon_sym_EQ_EQ2] = ACTIONS(1872), + [anon_sym_BANG_EQ2] = ACTIONS(1872), + [anon_sym_LT2] = ACTIONS(1874), + [anon_sym_LT_EQ2] = ACTIONS(1872), + [anon_sym_GT_EQ2] = ACTIONS(1872), + [anon_sym_EQ_TILDE2] = ACTIONS(1872), + [anon_sym_BANG_TILDE2] = ACTIONS(1872), + [anon_sym_like2] = ACTIONS(1872), + [anon_sym_not_DASHlike2] = ACTIONS(1872), + [anon_sym_STAR_STAR2] = ACTIONS(1872), + [anon_sym_PLUS_PLUS2] = ACTIONS(1872), + [anon_sym_SLASH2] = ACTIONS(1874), + [anon_sym_mod2] = ACTIONS(1872), + [anon_sym_SLASH_SLASH2] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1874), + [anon_sym_bit_DASHshl2] = ACTIONS(1872), + [anon_sym_bit_DASHshr2] = ACTIONS(1872), + [anon_sym_bit_DASHand2] = ACTIONS(1872), + [anon_sym_bit_DASHxor2] = ACTIONS(1872), + [anon_sym_bit_DASHor2] = ACTIONS(1872), + [anon_sym_DOT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1874), + [anon_sym_out_GT] = ACTIONS(1874), + [anon_sym_e_GT] = ACTIONS(1874), + [anon_sym_o_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT] = ACTIONS(1874), + [anon_sym_err_GT_GT] = ACTIONS(1872), + [anon_sym_out_GT_GT] = ACTIONS(1872), + [anon_sym_e_GT_GT] = ACTIONS(1872), + [anon_sym_o_GT_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(495)] = { + [sym_cell_path] = STATE(933), + [sym_path] = STATE(827), + [sym_comment] = STATE(495), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1446), + [anon_sym_in] = ACTIONS(1446), + [sym__newline] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_err_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_GT_PIPE] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), + [anon_sym_GT2] = ACTIONS(1444), + [anon_sym_DASH2] = ACTIONS(1446), + [anon_sym_STAR2] = ACTIONS(1444), + [anon_sym_and2] = ACTIONS(1446), + [anon_sym_xor2] = ACTIONS(1446), + [anon_sym_or2] = ACTIONS(1446), + [anon_sym_not_DASHin2] = ACTIONS(1446), + [anon_sym_has2] = ACTIONS(1446), + [anon_sym_not_DASHhas2] = ACTIONS(1446), + [anon_sym_starts_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1446), + [anon_sym_ends_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), + [anon_sym_EQ_EQ2] = ACTIONS(1446), + [anon_sym_BANG_EQ2] = ACTIONS(1446), + [anon_sym_LT2] = ACTIONS(1444), + [anon_sym_LT_EQ2] = ACTIONS(1446), + [anon_sym_GT_EQ2] = ACTIONS(1446), + [anon_sym_EQ_TILDE2] = ACTIONS(1446), + [anon_sym_BANG_TILDE2] = ACTIONS(1446), + [anon_sym_like2] = ACTIONS(1446), + [anon_sym_not_DASHlike2] = ACTIONS(1446), + [anon_sym_STAR_STAR2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS2] = ACTIONS(1446), + [anon_sym_SLASH2] = ACTIONS(1444), + [anon_sym_mod2] = ACTIONS(1446), + [anon_sym_SLASH_SLASH2] = ACTIONS(1446), + [anon_sym_PLUS2] = ACTIONS(1444), + [anon_sym_bit_DASHshl2] = ACTIONS(1446), + [anon_sym_bit_DASHshr2] = ACTIONS(1446), + [anon_sym_bit_DASHand2] = ACTIONS(1446), + [anon_sym_bit_DASHxor2] = ACTIONS(1446), + [anon_sym_bit_DASHor2] = ACTIONS(1446), + [anon_sym_DOT_DOT2] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1446), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1446), + [anon_sym_DOT2] = ACTIONS(1862), + [anon_sym_err_GT] = ACTIONS(1444), + [anon_sym_out_GT] = ACTIONS(1444), + [anon_sym_e_GT] = ACTIONS(1444), + [anon_sym_o_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT] = ACTIONS(1444), + [anon_sym_err_GT_GT] = ACTIONS(1446), + [anon_sym_out_GT_GT] = ACTIONS(1446), + [anon_sym_e_GT_GT] = ACTIONS(1446), + [anon_sym_o_GT_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(496)] = { + [sym_cell_path] = STATE(833), + [sym_path] = STATE(446), + [sym_comment] = STATE(496), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1876), + [sym__newline] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_err_GT_PIPE] = ACTIONS(1876), + [anon_sym_out_GT_PIPE] = ACTIONS(1876), + [anon_sym_e_GT_PIPE] = ACTIONS(1876), + [anon_sym_o_GT_PIPE] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1876), + [anon_sym_GT2] = ACTIONS(1878), + [anon_sym_DASH2] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_EQ_GT] = ACTIONS(1876), + [anon_sym_STAR2] = ACTIONS(1878), + [anon_sym_and2] = ACTIONS(1876), + [anon_sym_xor2] = ACTIONS(1876), + [anon_sym_or2] = ACTIONS(1876), + [anon_sym_not_DASHin2] = ACTIONS(1876), + [anon_sym_has2] = ACTIONS(1876), + [anon_sym_not_DASHhas2] = ACTIONS(1876), + [anon_sym_starts_DASHwith2] = ACTIONS(1876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1876), + [anon_sym_ends_DASHwith2] = ACTIONS(1876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1876), + [anon_sym_EQ_EQ2] = ACTIONS(1876), + [anon_sym_BANG_EQ2] = ACTIONS(1876), + [anon_sym_LT2] = ACTIONS(1878), + [anon_sym_LT_EQ2] = ACTIONS(1876), + [anon_sym_GT_EQ2] = ACTIONS(1876), + [anon_sym_EQ_TILDE2] = ACTIONS(1876), + [anon_sym_BANG_TILDE2] = ACTIONS(1876), + [anon_sym_like2] = ACTIONS(1876), + [anon_sym_not_DASHlike2] = ACTIONS(1876), + [anon_sym_STAR_STAR2] = ACTIONS(1876), + [anon_sym_PLUS_PLUS2] = ACTIONS(1876), + [anon_sym_SLASH2] = ACTIONS(1878), + [anon_sym_mod2] = ACTIONS(1876), + [anon_sym_SLASH_SLASH2] = ACTIONS(1876), + [anon_sym_PLUS2] = ACTIONS(1878), + [anon_sym_bit_DASHshl2] = ACTIONS(1876), + [anon_sym_bit_DASHshr2] = ACTIONS(1876), + [anon_sym_bit_DASHand2] = ACTIONS(1876), + [anon_sym_bit_DASHxor2] = ACTIONS(1876), + [anon_sym_bit_DASHor2] = ACTIONS(1876), + [anon_sym_DOT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1878), + [anon_sym_out_GT] = ACTIONS(1878), + [anon_sym_e_GT] = ACTIONS(1878), + [anon_sym_o_GT] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT] = ACTIONS(1878), + [anon_sym_err_GT_GT] = ACTIONS(1876), + [anon_sym_out_GT_GT] = ACTIONS(1876), + [anon_sym_e_GT_GT] = ACTIONS(1876), + [anon_sym_o_GT_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(497)] = { + [sym_comment] = STATE(497), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [sym__newline] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_err_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_GT_PIPE] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_GT2] = ACTIONS(1882), + [anon_sym_DASH2] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_EQ_GT] = ACTIONS(1880), + [anon_sym_STAR2] = ACTIONS(1882), + [anon_sym_and2] = ACTIONS(1880), + [anon_sym_xor2] = ACTIONS(1880), + [anon_sym_or2] = ACTIONS(1880), + [anon_sym_not_DASHin2] = ACTIONS(1880), + [anon_sym_has2] = ACTIONS(1880), + [anon_sym_not_DASHhas2] = ACTIONS(1880), + [anon_sym_starts_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1880), + [anon_sym_ends_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1880), + [anon_sym_EQ_EQ2] = ACTIONS(1880), + [anon_sym_BANG_EQ2] = ACTIONS(1880), + [anon_sym_LT2] = ACTIONS(1882), + [anon_sym_LT_EQ2] = ACTIONS(1880), + [anon_sym_GT_EQ2] = ACTIONS(1880), + [anon_sym_EQ_TILDE2] = ACTIONS(1880), + [anon_sym_BANG_TILDE2] = ACTIONS(1880), + [anon_sym_like2] = ACTIONS(1880), + [anon_sym_not_DASHlike2] = ACTIONS(1880), + [anon_sym_STAR_STAR2] = ACTIONS(1880), + [anon_sym_PLUS_PLUS2] = ACTIONS(1880), + [anon_sym_SLASH2] = ACTIONS(1882), + [anon_sym_mod2] = ACTIONS(1880), + [anon_sym_SLASH_SLASH2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1882), + [anon_sym_bit_DASHshl2] = ACTIONS(1880), + [anon_sym_bit_DASHshr2] = ACTIONS(1880), + [anon_sym_bit_DASHand2] = ACTIONS(1880), + [anon_sym_bit_DASHxor2] = ACTIONS(1880), + [anon_sym_bit_DASHor2] = ACTIONS(1880), + [anon_sym_DOT_DOT2] = ACTIONS(1882), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1880), + [anon_sym_err_GT] = ACTIONS(1882), + [anon_sym_out_GT] = ACTIONS(1882), + [anon_sym_e_GT] = ACTIONS(1882), + [anon_sym_o_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT] = ACTIONS(1882), + [anon_sym_err_GT_GT] = ACTIONS(1880), + [anon_sym_out_GT_GT] = ACTIONS(1880), + [anon_sym_e_GT_GT] = ACTIONS(1880), + [anon_sym_o_GT_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(498)] = { + [sym_comment] = STATE(498), + [ts_builtin_sym_end] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT_DOT2] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1884), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(499)] = { + [sym_comment] = STATE(499), + [anon_sym_in] = ACTIONS(1574), + [sym__newline] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_err_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_GT_PIPE] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1574), + [anon_sym_LBRACE] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1574), + [anon_sym_xor2] = ACTIONS(1574), + [anon_sym_or2] = ACTIONS(1574), + [anon_sym_not_DASHin2] = ACTIONS(1574), + [anon_sym_has2] = ACTIONS(1574), + [anon_sym_not_DASHhas2] = ACTIONS(1574), + [anon_sym_starts_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), + [anon_sym_ends_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), + [anon_sym_EQ_EQ2] = ACTIONS(1574), + [anon_sym_BANG_EQ2] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1574), + [anon_sym_GT_EQ2] = ACTIONS(1574), + [anon_sym_EQ_TILDE2] = ACTIONS(1574), + [anon_sym_BANG_TILDE2] = ACTIONS(1574), + [anon_sym_like2] = ACTIONS(1574), + [anon_sym_not_DASHlike2] = ACTIONS(1574), + [anon_sym_STAR_STAR2] = ACTIONS(1574), + [anon_sym_PLUS_PLUS2] = ACTIONS(1574), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1574), + [anon_sym_SLASH_SLASH2] = ACTIONS(1574), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1574), + [anon_sym_bit_DASHshr2] = ACTIONS(1574), + [anon_sym_bit_DASHand2] = ACTIONS(1574), + [anon_sym_bit_DASHxor2] = ACTIONS(1574), + [anon_sym_bit_DASHor2] = ACTIONS(1574), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [anon_sym_COLON2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1574), + [anon_sym_out_GT_GT] = ACTIONS(1574), + [anon_sym_e_GT_GT] = ACTIONS(1574), + [anon_sym_o_GT_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(500)] = { + [sym_comment] = STATE(500), + [ts_builtin_sym_end] = ACTIONS(1527), + [anon_sym_in] = ACTIONS(1527), + [sym__newline] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_err_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_GT_PIPE] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1527), + [anon_sym_xor2] = ACTIONS(1527), + [anon_sym_or2] = ACTIONS(1527), + [anon_sym_not_DASHin2] = ACTIONS(1527), + [anon_sym_has2] = ACTIONS(1527), + [anon_sym_not_DASHhas2] = ACTIONS(1527), + [anon_sym_starts_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), + [anon_sym_ends_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), + [anon_sym_EQ_EQ2] = ACTIONS(1527), + [anon_sym_BANG_EQ2] = ACTIONS(1527), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1527), + [anon_sym_GT_EQ2] = ACTIONS(1527), + [anon_sym_EQ_TILDE2] = ACTIONS(1527), + [anon_sym_BANG_TILDE2] = ACTIONS(1527), + [anon_sym_like2] = ACTIONS(1527), + [anon_sym_not_DASHlike2] = ACTIONS(1527), + [anon_sym_STAR_STAR2] = ACTIONS(1527), + [anon_sym_PLUS_PLUS2] = ACTIONS(1527), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1527), + [anon_sym_SLASH_SLASH2] = ACTIONS(1527), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1527), + [anon_sym_bit_DASHshr2] = ACTIONS(1527), + [anon_sym_bit_DASHand2] = ACTIONS(1527), + [anon_sym_bit_DASHxor2] = ACTIONS(1527), + [anon_sym_bit_DASHor2] = ACTIONS(1527), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [anon_sym_QMARK2] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1527), + [anon_sym_out_GT_GT] = ACTIONS(1527), + [anon_sym_e_GT_GT] = ACTIONS(1527), + [anon_sym_o_GT_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(501)] = { + [sym_comment] = STATE(501), + [ts_builtin_sym_end] = ACTIONS(1507), + [anon_sym_in] = ACTIONS(1507), + [sym__newline] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_err_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_GT_PIPE] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1507), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_STAR2] = ACTIONS(1505), + [anon_sym_and2] = ACTIONS(1507), + [anon_sym_xor2] = ACTIONS(1507), + [anon_sym_or2] = ACTIONS(1507), + [anon_sym_not_DASHin2] = ACTIONS(1507), + [anon_sym_has2] = ACTIONS(1507), + [anon_sym_not_DASHhas2] = ACTIONS(1507), + [anon_sym_starts_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1507), + [anon_sym_ends_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1507), + [anon_sym_EQ_EQ2] = ACTIONS(1507), + [anon_sym_BANG_EQ2] = ACTIONS(1507), + [anon_sym_LT2] = ACTIONS(1505), + [anon_sym_LT_EQ2] = ACTIONS(1507), + [anon_sym_GT_EQ2] = ACTIONS(1507), + [anon_sym_EQ_TILDE2] = ACTIONS(1507), + [anon_sym_BANG_TILDE2] = ACTIONS(1507), + [anon_sym_like2] = ACTIONS(1507), + [anon_sym_not_DASHlike2] = ACTIONS(1507), + [anon_sym_STAR_STAR2] = ACTIONS(1507), + [anon_sym_PLUS_PLUS2] = ACTIONS(1507), + [anon_sym_SLASH2] = ACTIONS(1505), + [anon_sym_mod2] = ACTIONS(1507), + [anon_sym_SLASH_SLASH2] = ACTIONS(1507), + [anon_sym_PLUS2] = ACTIONS(1505), + [anon_sym_bit_DASHshl2] = ACTIONS(1507), + [anon_sym_bit_DASHshr2] = ACTIONS(1507), + [anon_sym_bit_DASHand2] = ACTIONS(1507), + [anon_sym_bit_DASHxor2] = ACTIONS(1507), + [anon_sym_bit_DASHor2] = ACTIONS(1507), + [anon_sym_DOT_DOT2] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), + [anon_sym_QMARK2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_DOT2] = ACTIONS(1505), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1507), + [anon_sym_out_GT_GT] = ACTIONS(1507), + [anon_sym_e_GT_GT] = ACTIONS(1507), + [anon_sym_o_GT_GT] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(502)] = { - [sym__path_suffix] = STATE(784), [sym_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), + [aux_sym__immediate_decimal_token1] = ACTIONS(1888), + [aux_sym__immediate_decimal_token5] = ACTIONS(1890), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, [STATE(503)] = { + [aux_sym__repeat_newline] = STATE(659), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1121), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(880), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(503), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(504)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1588), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(504), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(505)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2046), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(505), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(504)] = { + [aux_sym__repeat_newline] = STATE(520), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1104), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(1105), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(504), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(506)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2048), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(506), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(505)] = { + [aux_sym__repeat_newline] = STATE(521), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1232), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(505), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(507)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2050), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(507), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(506)] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1239), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(1110), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(506), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(508)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2052), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(508), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(507)] = { + [aux_sym__repeat_newline] = STATE(523), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1242), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(507), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(509)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2054), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(509), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(508)] = { + [aux_sym__repeat_newline] = STATE(524), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1130), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1120), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(508), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(509)] = { + [sym_comment] = STATE(509), + [ts_builtin_sym_end] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1816), + [aux_sym__immediate_decimal_token5] = ACTIONS(1914), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(510)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2056), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4141), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4451), + [sym__record_key] = STATE(5144), [sym_comment] = STATE(510), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__types_body_repeat1] = STATE(1505), + [aux_sym__match_pattern_record_body_repeat1] = STATE(719), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(511)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2058), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(517), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1224), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1101), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(511), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(512)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1257), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(512), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(513)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2060), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1148), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(722), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(513), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(514)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2062), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1168), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(723), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(514), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(515)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2064), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1180), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(515), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(516)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2066), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1186), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(516), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(517)] = { - [sym_path] = STATE(783), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1195), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(729), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(517), - [aux_sym__where_predicate_lhs_repeat1] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1526), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1934), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(518)] = { - [sym_path] = STATE(783), - [sym_comment] = STATE(518), - [aux_sym__where_predicate_lhs_repeat1] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1460), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(519)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1187), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(519), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(520)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1156), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(520), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(518)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1200), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(518), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(521)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1193), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(521), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(519)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1216), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(519), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(522)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1168), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(522), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(520)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1019), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(520), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(523)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1180), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(523), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(521)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1250), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(521), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(524)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1197), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(524), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(522)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1131), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(1029), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(522), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(525)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1234), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(525), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(523)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1134), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(736), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(523), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(526)] = { - [aux_sym__repeat_newline] = STATE(616), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1982), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(526), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(524)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1138), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(737), + [sym__unquoted_with_expr] = STATE(1045), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(524), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(525)] = { + [sym_path] = STATE(827), + [sym_comment] = STATE(525), + [aux_sym__where_predicate_lhs_repeat1] = STATE(545), + [ts_builtin_sym_end] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1494), + [sym__newline] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_err_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_GT_PIPE] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), + [anon_sym_GT2] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1494), + [anon_sym_STAR2] = ACTIONS(1492), + [anon_sym_and2] = ACTIONS(1494), + [anon_sym_xor2] = ACTIONS(1494), + [anon_sym_or2] = ACTIONS(1494), + [anon_sym_not_DASHin2] = ACTIONS(1494), + [anon_sym_has2] = ACTIONS(1494), + [anon_sym_not_DASHhas2] = ACTIONS(1494), + [anon_sym_starts_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1494), + [anon_sym_ends_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1494), + [anon_sym_EQ_EQ2] = ACTIONS(1494), + [anon_sym_BANG_EQ2] = ACTIONS(1494), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ2] = ACTIONS(1494), + [anon_sym_GT_EQ2] = ACTIONS(1494), + [anon_sym_EQ_TILDE2] = ACTIONS(1494), + [anon_sym_BANG_TILDE2] = ACTIONS(1494), + [anon_sym_like2] = ACTIONS(1494), + [anon_sym_not_DASHlike2] = ACTIONS(1494), + [anon_sym_STAR_STAR2] = ACTIONS(1494), + [anon_sym_PLUS_PLUS2] = ACTIONS(1494), + [anon_sym_SLASH2] = ACTIONS(1492), + [anon_sym_mod2] = ACTIONS(1494), + [anon_sym_SLASH_SLASH2] = ACTIONS(1494), + [anon_sym_PLUS2] = ACTIONS(1492), + [anon_sym_bit_DASHshl2] = ACTIONS(1494), + [anon_sym_bit_DASHshr2] = ACTIONS(1494), + [anon_sym_bit_DASHand2] = ACTIONS(1494), + [anon_sym_bit_DASHxor2] = ACTIONS(1494), + [anon_sym_bit_DASHor2] = ACTIONS(1494), + [anon_sym_DOT_DOT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), + [anon_sym_DOT2] = ACTIONS(1862), + [anon_sym_err_GT] = ACTIONS(1492), + [anon_sym_out_GT] = ACTIONS(1492), + [anon_sym_e_GT] = ACTIONS(1492), + [anon_sym_o_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT] = ACTIONS(1492), + [anon_sym_err_GT_GT] = ACTIONS(1494), + [anon_sym_out_GT_GT] = ACTIONS(1494), + [anon_sym_e_GT_GT] = ACTIONS(1494), + [anon_sym_o_GT_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(526)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4643), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(526), + [aux_sym__types_body_repeat1] = STATE(1505), + [aux_sym_record_body_repeat1] = STATE(748), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), + }, [STATE(527)] = { - [aux_sym__repeat_newline] = STATE(598), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1226), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(527), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [ts_builtin_sym_end] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT_DOT2] = ACTIONS(1752), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(528)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(528), + [anon_sym_else] = ACTIONS(1916), + [anon_sym_catch] = ACTIONS(1916), + [anon_sym_in] = ACTIONS(1916), + [sym__newline] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_err_GT_PIPE] = ACTIONS(1916), + [anon_sym_out_GT_PIPE] = ACTIONS(1916), + [anon_sym_e_GT_PIPE] = ACTIONS(1916), + [anon_sym_o_GT_PIPE] = ACTIONS(1916), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1916), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1916), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1916), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1916), + [anon_sym_COLON] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_GT2] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_STAR2] = ACTIONS(1921), + [anon_sym_and2] = ACTIONS(1916), + [anon_sym_xor2] = ACTIONS(1916), + [anon_sym_or2] = ACTIONS(1916), + [anon_sym_not_DASHin2] = ACTIONS(1916), + [anon_sym_has2] = ACTIONS(1916), + [anon_sym_not_DASHhas2] = ACTIONS(1916), + [anon_sym_starts_DASHwith2] = ACTIONS(1916), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1916), + [anon_sym_ends_DASHwith2] = ACTIONS(1916), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1916), + [anon_sym_EQ_EQ2] = ACTIONS(1916), + [anon_sym_BANG_EQ2] = ACTIONS(1916), + [anon_sym_LT2] = ACTIONS(1921), + [anon_sym_LT_EQ2] = ACTIONS(1916), + [anon_sym_GT_EQ2] = ACTIONS(1916), + [anon_sym_EQ_TILDE2] = ACTIONS(1916), + [anon_sym_BANG_TILDE2] = ACTIONS(1916), + [anon_sym_like2] = ACTIONS(1916), + [anon_sym_not_DASHlike2] = ACTIONS(1916), + [anon_sym_STAR_STAR2] = ACTIONS(1916), + [anon_sym_PLUS_PLUS2] = ACTIONS(1916), + [anon_sym_SLASH2] = ACTIONS(1921), + [anon_sym_mod2] = ACTIONS(1916), + [anon_sym_SLASH_SLASH2] = ACTIONS(1916), + [anon_sym_PLUS2] = ACTIONS(1921), + [anon_sym_bit_DASHshl2] = ACTIONS(1916), + [anon_sym_bit_DASHshr2] = ACTIONS(1916), + [anon_sym_bit_DASHand2] = ACTIONS(1916), + [anon_sym_bit_DASHxor2] = ACTIONS(1916), + [anon_sym_bit_DASHor2] = ACTIONS(1916), + [anon_sym_err_GT] = ACTIONS(1921), + [anon_sym_out_GT] = ACTIONS(1921), + [anon_sym_e_GT] = ACTIONS(1921), + [anon_sym_o_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT] = ACTIONS(1921), + [anon_sym_err_GT_GT] = ACTIONS(1916), + [anon_sym_out_GT_GT] = ACTIONS(1916), + [anon_sym_e_GT_GT] = ACTIONS(1916), + [anon_sym_o_GT_GT] = ACTIONS(1916), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1916), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1916), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1916), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(529)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_val_entry] = STATE(4413), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(529), + [aux_sym_list_body_repeat1] = STATE(530), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), + }, + [STATE(530)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_val_entry] = STATE(4687), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(530), + [aux_sym_list_body_repeat1] = STATE(530), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1926), + [aux_sym_cmd_identifier_token3] = ACTIONS(1929), + [aux_sym_cmd_identifier_token4] = ACTIONS(1929), + [aux_sym_cmd_identifier_token5] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_DOLLAR] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1950), + [anon_sym_DOT_DOT_LT] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1956), + [aux_sym__val_number_decimal_token2] = ACTIONS(1959), + [aux_sym__val_number_decimal_token3] = ACTIONS(1962), + [aux_sym__val_number_decimal_token4] = ACTIONS(1962), + [aux_sym__val_number_token1] = ACTIONS(1965), + [aux_sym__val_number_token2] = ACTIONS(1965), + [aux_sym__val_number_token3] = ACTIONS(1965), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1971), + [anon_sym_0x] = ACTIONS(1971), + [sym_val_date] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1980), + [anon_sym_BQUOTE] = ACTIONS(1983), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1992), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1998), + }, + [STATE(531)] = { + [aux_sym__repeat_newline] = STATE(651), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1230), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1106), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(531), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(528)] = { - [aux_sym__repeat_newline] = STATE(599), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1235), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(528), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(532)] = { + [aux_sym__repeat_newline] = STATE(652), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1234), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(532), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(529)] = { - [aux_sym__repeat_newline] = STATE(617), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1983), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(529), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(533)] = { + [aux_sym__repeat_newline] = STATE(653), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1238), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(870), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(533), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(530)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1261), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(530), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(534)] = { + [aux_sym__repeat_newline] = STATE(654), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1240), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(872), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(534), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(531)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(531), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(535)] = { + [aux_sym__repeat_newline] = STATE(655), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1241), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(873), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(535), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(532)] = { - [aux_sym__repeat_newline] = STATE(619), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1984), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(532), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(536)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1244), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(536), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(533)] = { - [aux_sym__repeat_newline] = STATE(620), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1985), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(533), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(537)] = { + [aux_sym__repeat_newline] = STATE(657), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1246), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(877), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(537), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(534)] = { - [aux_sym__repeat_newline] = STATE(621), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1986), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(534), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(538)] = { + [aux_sym__repeat_newline] = STATE(658), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1248), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(879), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(538), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(535)] = { - [aux_sym__repeat_newline] = STATE(600), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1241), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(535), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(539)] = { + [aux_sym__repeat_newline] = STATE(660), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1254), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(539), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(536)] = { - [aux_sym__repeat_newline] = STATE(622), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1987), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(536), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(540)] = { + [aux_sym__repeat_newline] = STATE(661), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1255), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(540), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(537)] = { - [aux_sym__repeat_newline] = STATE(623), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1988), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(537), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(541)] = { + [aux_sym__repeat_newline] = STATE(663), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1256), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1126), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(541), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(538)] = { - [aux_sym__repeat_newline] = STATE(624), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1989), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(538), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(542)] = { + [aux_sym__repeat_newline] = STATE(664), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1258), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(888), + [sym__unquoted_with_expr] = STATE(1127), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(542), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(539)] = { - [aux_sym__repeat_newline] = STATE(626), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(539), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(543)] = { + [sym_comment] = STATE(543), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(2005), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_DOT_DOT2] = ACTIONS(2007), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2009), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), + [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(544)] = { + [sym_comment] = STATE(544), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_DOT_DOT2] = ACTIONS(2017), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2019), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2019), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [sym__unquoted_pattern] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(545)] = { + [sym_path] = STATE(827), + [sym_comment] = STATE(545), + [aux_sym__where_predicate_lhs_repeat1] = STATE(545), + [ts_builtin_sym_end] = ACTIONS(1498), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1498), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(2023), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(546)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_val_entry] = STATE(4409), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(546), + [aux_sym_list_body_repeat1] = STATE(530), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), + }, + [STATE(547)] = { + [aux_sym__repeat_newline] = STATE(560), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1982), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1106), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(547), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(540)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(540), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1955), - [sym__newline] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_GT2] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_STAR2] = ACTIONS(1960), - [anon_sym_and2] = ACTIONS(1955), - [anon_sym_xor2] = ACTIONS(1955), - [anon_sym_or2] = ACTIONS(1955), - [anon_sym_not_DASHin2] = ACTIONS(1955), - [anon_sym_has2] = ACTIONS(1955), - [anon_sym_not_DASHhas2] = ACTIONS(1955), - [anon_sym_starts_DASHwith2] = ACTIONS(1955), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1955), - [anon_sym_ends_DASHwith2] = ACTIONS(1955), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1955), - [anon_sym_EQ_EQ2] = ACTIONS(1955), - [anon_sym_BANG_EQ2] = ACTIONS(1955), - [anon_sym_LT2] = ACTIONS(1960), - [anon_sym_LT_EQ2] = ACTIONS(1955), - [anon_sym_GT_EQ2] = ACTIONS(1955), - [anon_sym_EQ_TILDE2] = ACTIONS(1955), - [anon_sym_BANG_TILDE2] = ACTIONS(1955), - [anon_sym_like2] = ACTIONS(1955), - [anon_sym_not_DASHlike2] = ACTIONS(1955), - [anon_sym_STAR_STAR2] = ACTIONS(1955), - [anon_sym_PLUS_PLUS2] = ACTIONS(1955), - [anon_sym_SLASH2] = ACTIONS(1960), - [anon_sym_mod2] = ACTIONS(1955), - [anon_sym_SLASH_SLASH2] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1960), - [anon_sym_bit_DASHshl2] = ACTIONS(1955), - [anon_sym_bit_DASHshr2] = ACTIONS(1955), - [anon_sym_bit_DASHand2] = ACTIONS(1955), - [anon_sym_bit_DASHxor2] = ACTIONS(1955), - [anon_sym_bit_DASHor2] = ACTIONS(1955), - [anon_sym_err_GT] = ACTIONS(1960), - [anon_sym_out_GT] = ACTIONS(1960), - [anon_sym_e_GT] = ACTIONS(1960), - [anon_sym_o_GT] = ACTIONS(1960), - [anon_sym_err_PLUSout_GT] = ACTIONS(1960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), - [anon_sym_o_PLUSe_GT] = ACTIONS(1960), - [anon_sym_e_PLUSo_GT] = ACTIONS(1960), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(541)] = { - [aux_sym__repeat_newline] = STATE(556), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1564), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(541), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(548)] = { + [aux_sym__repeat_newline] = STATE(561), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1983), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(548), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(542)] = { - [aux_sym__repeat_newline] = STATE(557), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1565), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(542), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(549)] = { + [aux_sym__repeat_newline] = STATE(562), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1984), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(870), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(549), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(543)] = { - [aux_sym__repeat_newline] = STATE(558), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1566), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(543), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(550)] = { + [aux_sym__repeat_newline] = STATE(563), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1985), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(872), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(550), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(544)] = { - [aux_sym__repeat_newline] = STATE(559), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1567), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(544), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(551)] = { + [aux_sym__repeat_newline] = STATE(564), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1986), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(873), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(551), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(545)] = { - [aux_sym__repeat_newline] = STATE(560), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1568), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(545), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(552)] = { + [aux_sym__repeat_newline] = STATE(565), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1987), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(552), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(546)] = { - [aux_sym__repeat_newline] = STATE(504), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1569), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(546), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(553)] = { + [aux_sym__repeat_newline] = STATE(566), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1988), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(877), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(553), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(547)] = { - [aux_sym__repeat_newline] = STATE(562), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1570), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(547), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(554)] = { + [aux_sym__repeat_newline] = STATE(567), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1989), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(879), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(554), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(548)] = { - [aux_sym__repeat_newline] = STATE(563), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1571), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(548), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(555)] = { + [aux_sym__repeat_newline] = STATE(568), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1121), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(880), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(555), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(549)] = { - [aux_sym__repeat_newline] = STATE(564), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(549), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(556)] = { + [aux_sym__repeat_newline] = STATE(569), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1990), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(556), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(550)] = { - [aux_sym__repeat_newline] = STATE(565), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1572), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(550), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(557)] = { + [aux_sym__repeat_newline] = STATE(570), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1991), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(557), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(551)] = { - [aux_sym__repeat_newline] = STATE(566), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1573), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(551), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(558)] = { + [aux_sym__repeat_newline] = STATE(571), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1992), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1126), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(558), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(552)] = { - [aux_sym__repeat_newline] = STATE(567), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1574), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(552), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(559)] = { + [aux_sym__repeat_newline] = STATE(572), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1994), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(888), + [sym__unquoted_with_expr] = STATE(1127), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(559), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(553)] = { - [aux_sym__repeat_newline] = STATE(568), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1575), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(553), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(560)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1997), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(788), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(560), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(554)] = { - [aux_sym__repeat_newline] = STATE(601), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1245), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(554), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(561)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1999), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(561), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(555)] = { - [aux_sym__repeat_newline] = STATE(627), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1991), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(555), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(556)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1578), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(556), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(557)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1580), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(557), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(558)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1582), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(558), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(559)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1584), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(559), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(560)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1586), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(560), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(561)] = { - [aux_sym__repeat_newline] = STATE(530), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1221), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(561), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(562)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1589), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2001), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(996), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(562), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(563)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1591), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2003), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(894), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(563), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(564)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2005), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(800), + [sym__unquoted_with_expr] = STATE(1031), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(564), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(565)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1593), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2007), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(802), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(565), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(566)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1595), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2009), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(566), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(567)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1597), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2011), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(567), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(568)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1599), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1078), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(568), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(569)] = { - [aux_sym__repeat_newline] = STATE(585), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1601), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2013), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(824), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(569), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(570)] = { - [aux_sym__repeat_newline] = STATE(586), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1602), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2015), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(828), + [sym__unquoted_with_expr] = STATE(1087), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(570), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(571)] = { - [aux_sym__repeat_newline] = STATE(587), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1603), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2017), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(740), + [sym__unquoted_with_expr] = STATE(1089), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(571), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(572)] = { - [aux_sym__repeat_newline] = STATE(588), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1605), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2019), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(743), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(572), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(573)] = { - [aux_sym__repeat_newline] = STATE(589), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1606), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(586), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2021), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(752), + [sym__unquoted_with_expr] = STATE(1093), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(573), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(574)] = { - [aux_sym__repeat_newline] = STATE(590), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1607), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(587), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2022), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(574), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(575)] = { - [aux_sym__repeat_newline] = STATE(591), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1608), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(588), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2023), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(771), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(575), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(576)] = { - [aux_sym__repeat_newline] = STATE(592), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1609), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(589), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2024), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(576), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(577)] = { - [aux_sym__repeat_newline] = STATE(593), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(590), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2025), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1100), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(577), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(578)] = { - [aux_sym__repeat_newline] = STATE(594), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1610), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(519), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1227), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(578), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(579)] = { - [aux_sym__repeat_newline] = STATE(595), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1611), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(592), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2027), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(579), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(580)] = { - [aux_sym__repeat_newline] = STATE(596), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1612), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(593), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2028), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(580), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(581)] = { - [aux_sym__repeat_newline] = STATE(597), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1613), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(594), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1104), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(1105), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(581), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(582)] = { - [aux_sym__repeat_newline] = STATE(628), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1992), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(595), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2029), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(582), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(583)] = { - [aux_sym__repeat_newline] = STATE(643), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1993), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(596), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2030), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(1110), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(583), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(584)] = { - [aux_sym__repeat_newline] = STATE(646), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1994), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(597), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2031), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(584), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(585)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1626), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(598), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2032), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1120), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(585), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(586)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1628), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2045), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(586), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(587)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1630), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2047), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(722), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(587), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(588)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1632), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2049), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(723), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(588), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(589)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1634), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2051), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(589), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(590)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1636), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2053), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(590), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(591)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1638), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2055), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(729), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(591), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(592)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1640), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2057), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(592), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(593)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2059), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(593), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(594)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1642), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1019), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(594), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(595)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1644), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2061), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(595), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(596)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1646), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2063), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(1029), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(596), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(597)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1648), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2065), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(736), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(597), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(598)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1178), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2067), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(737), + [sym__unquoted_with_expr] = STATE(1045), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(598), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(599)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1188), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(612), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1562), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1106), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(599), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(600)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1201), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(613), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1563), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(600), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(601)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1217), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(614), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1564), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(870), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(601), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(602)] = { - [aux_sym__repeat_newline] = STATE(631), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1236), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(615), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1565), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(872), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(602), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(603)] = { - [aux_sym__repeat_newline] = STATE(632), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1249), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(616), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1566), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(873), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(603), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(604)] = { - [aux_sym__repeat_newline] = STATE(633), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1253), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(617), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1567), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(604), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(605)] = { - [aux_sym__repeat_newline] = STATE(634), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1154), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(618), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1568), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(877), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(605), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(606)] = { - [aux_sym__repeat_newline] = STATE(635), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1161), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(619), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1569), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(879), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(606), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(607)] = { - [aux_sym__repeat_newline] = STATE(636), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1164), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(620), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1121), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(880), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(607), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(608)] = { - [aux_sym__repeat_newline] = STATE(638), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1171), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(621), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1570), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(608), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(609)] = { - [aux_sym__repeat_newline] = STATE(639), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1174), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(622), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1571), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(609), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(610)] = { - [aux_sym__repeat_newline] = STATE(640), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(623), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1572), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1126), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(610), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(611)] = { - [aux_sym__repeat_newline] = STATE(641), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1185), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(624), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1573), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(888), + [sym__unquoted_with_expr] = STATE(1127), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(611), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(612)] = { - [aux_sym__repeat_newline] = STATE(644), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1192), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1575), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(788), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(612), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(613)] = { - [aux_sym__repeat_newline] = STATE(647), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1195), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1577), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(613), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(614)] = { - [aux_sym__repeat_newline] = STATE(650), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1199), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1579), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(996), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(614), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(615)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1581), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(894), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(1962), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(616)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1996), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1583), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(800), + [sym__unquoted_with_expr] = STATE(1031), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(616), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(617)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1998), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1585), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(802), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(617), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(618)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4386), - [sym__record_key] = STATE(4971), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1587), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(618), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym_record_body_repeat1] = STATE(878), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(619)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2000), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1589), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(619), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(620)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2002), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1078), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(620), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(621)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2004), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1508), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(824), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(621), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(622)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2006), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1592), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(828), + [sym__unquoted_with_expr] = STATE(1087), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(622), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(623)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2008), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1594), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(740), + [sym__unquoted_with_expr] = STATE(1089), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(623), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(624)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2010), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1596), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(743), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(624), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(625)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4298), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4586), - [sym__record_key] = STATE(4971), + [aux_sym__repeat_newline] = STATE(638), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1598), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(752), + [sym__unquoted_with_expr] = STATE(1093), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(625), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym__match_pattern_record_body_repeat1] = STATE(836), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(626)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(626), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(627)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2012), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(627), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(626)] = { + [aux_sym__repeat_newline] = STATE(639), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1599), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(626), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(628)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2014), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(628), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(627)] = { + [aux_sym__repeat_newline] = STATE(640), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1600), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(771), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(627), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(629)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4590), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(629), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(630)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(630), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(631)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1134), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(631), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(628)] = { + [aux_sym__repeat_newline] = STATE(641), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1601), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(628), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(632)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1139), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(632), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(629)] = { + [aux_sym__repeat_newline] = STATE(642), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1602), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1100), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(629), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(633)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1143), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(633), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(630)] = { + [aux_sym__repeat_newline] = STATE(643), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1603), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1101), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(630), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(634)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1148), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(634), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(631)] = { + [aux_sym__repeat_newline] = STATE(644), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1604), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(631), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(635)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1152), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(635), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(632)] = { + [aux_sym__repeat_newline] = STATE(645), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1605), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(632), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(633)] = { + [aux_sym__repeat_newline] = STATE(646), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1104), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(1105), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(633), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(634)] = { + [aux_sym__repeat_newline] = STATE(647), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1606), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(634), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(635)] = { + [aux_sym__repeat_newline] = STATE(648), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1607), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(1110), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(635), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(636)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1157), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(649), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1608), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(636), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(637)] = { - [aux_sym__repeat_newline] = STATE(531), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(650), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1609), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1120), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(637), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(638)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1162), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1622), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(638), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(639)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1167), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1624), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(722), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(639), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(640)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1626), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(723), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(640), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(641)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1177), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1628), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(641), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(642)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1630), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(642), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(1970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1972), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(643)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2016), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1632), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(729), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(643), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(644)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1181), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1634), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(644), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(645)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1636), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(645), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(1980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1982), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(646)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2018), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1019), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(646), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(647)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1186), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1638), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(647), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(648)] = { - [aux_sym__repeat_newline] = STATE(671), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2020), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1640), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(1029), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(648), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(649)] = { - [aux_sym__repeat_newline] = STATE(505), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2021), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1642), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(736), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(649), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(650)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1191), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1644), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(737), + [sym__unquoted_with_expr] = STATE(1045), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(650), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(651)] = { - [aux_sym__repeat_newline] = STATE(506), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2022), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1237), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(788), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(651), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(652)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1249), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(652), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(653)] = { - [aux_sym__repeat_newline] = STATE(508), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2024), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1137), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(996), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(653), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(654)] = { - [aux_sym__repeat_newline] = STATE(509), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2025), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1189), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(894), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(654), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(655)] = { - [aux_sym__repeat_newline] = STATE(525), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1182), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1251), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(800), + [sym__unquoted_with_expr] = STATE(1031), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(655), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(656)] = { - [aux_sym__repeat_newline] = STATE(510), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2026), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1175), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(802), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(656), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(657)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4767), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1182), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(657), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [anon_sym_null] = ACTIONS(1989), - [aux_sym_cmd_identifier_token3] = ACTIONS(1992), - [aux_sym_cmd_identifier_token4] = ACTIONS(1992), - [aux_sym_cmd_identifier_token5] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2013), - [anon_sym_DOT_DOT_LT] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2016), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2022), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2028), - [aux_sym__val_number_token2] = ACTIONS(2028), - [aux_sym__val_number_token3] = ACTIONS(2028), - [anon_sym_0b] = ACTIONS(2031), - [anon_sym_0o] = ACTIONS(2034), - [anon_sym_0x] = ACTIONS(2034), - [sym_val_date] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_BQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2052), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2055), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(658)] = { - [aux_sym__repeat_newline] = STATE(511), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2027), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1188), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(658), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(659)] = { - [aux_sym__repeat_newline] = STATE(512), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1078), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(659), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(660)] = { - [aux_sym__repeat_newline] = STATE(513), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2028), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1196), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(824), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(660), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(661)] = { - [aux_sym__repeat_newline] = STATE(514), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2029), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1199), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(828), + [sym__unquoted_with_expr] = STATE(1087), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(661), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(662)] = { - [aux_sym__repeat_newline] = STATE(515), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2030), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(518), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1226), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(662), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(663)] = { - [aux_sym__repeat_newline] = STATE(516), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2031), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1261), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(740), + [sym__unquoted_with_expr] = STATE(1089), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(663), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(664)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1205), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(743), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(665)] = { - [aux_sym__repeat_newline] = STATE(519), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1176), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(512), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1210), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(752), + [sym__unquoted_with_expr] = STATE(1093), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(665), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(666)] = { - [aux_sym__repeat_newline] = STATE(520), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1262), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(513), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1213), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(666), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(667)] = { - [aux_sym__repeat_newline] = STATE(521), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1250), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(514), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1218), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(771), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(667), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(668)] = { - [aux_sym__repeat_newline] = STATE(522), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1255), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(515), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1220), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(668), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(669)] = { - [aux_sym__repeat_newline] = STATE(523), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1135), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(516), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1222), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1100), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(669), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(670)] = { - [aux_sym__repeat_newline] = STATE(524), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1158), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(591), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2026), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1101), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(670), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(671)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2044), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(671), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(908), + [anon_sym_in] = ACTIONS(908), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_RPAREN] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_EQ_GT] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(908), + [anon_sym_xor2] = ACTIONS(908), + [anon_sym_or2] = ACTIONS(908), + [anon_sym_not_DASHin2] = ACTIONS(908), + [anon_sym_has2] = ACTIONS(908), + [anon_sym_not_DASHhas2] = ACTIONS(908), + [anon_sym_starts_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(908), + [anon_sym_ends_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(908), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(908), + [anon_sym_like2] = ACTIONS(908), + [anon_sym_not_DASHlike2] = ACTIONS(908), + [anon_sym_STAR_STAR2] = ACTIONS(908), + [anon_sym_PLUS_PLUS2] = ACTIONS(908), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(908), + [anon_sym_SLASH_SLASH2] = ACTIONS(908), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(908), + [anon_sym_bit_DASHshr2] = ACTIONS(908), + [anon_sym_bit_DASHand2] = ACTIONS(908), + [anon_sym_bit_DASHxor2] = ACTIONS(908), + [anon_sym_bit_DASHor2] = ACTIONS(908), + [anon_sym_COLON2] = ACTIONS(908), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(672)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(672), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2064), - [aux_sym__immediate_decimal_token5] = ACTIONS(2066), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(673)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2068), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2070), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2070), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(674)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(674), - [anon_sym_in] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_GT2] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_EQ_GT] = ACTIONS(2072), - [anon_sym_STAR2] = ACTIONS(2074), - [anon_sym_and2] = ACTIONS(2072), - [anon_sym_xor2] = ACTIONS(2072), - [anon_sym_or2] = ACTIONS(2072), - [anon_sym_not_DASHin2] = ACTIONS(2072), - [anon_sym_has2] = ACTIONS(2072), - [anon_sym_not_DASHhas2] = ACTIONS(2072), - [anon_sym_starts_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2072), - [anon_sym_ends_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2072), - [anon_sym_EQ_EQ2] = ACTIONS(2072), - [anon_sym_BANG_EQ2] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LT_EQ2] = ACTIONS(2072), - [anon_sym_GT_EQ2] = ACTIONS(2072), - [anon_sym_EQ_TILDE2] = ACTIONS(2072), - [anon_sym_BANG_TILDE2] = ACTIONS(2072), - [anon_sym_like2] = ACTIONS(2072), - [anon_sym_not_DASHlike2] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2072), - [anon_sym_PLUS_PLUS2] = ACTIONS(2072), - [anon_sym_SLASH2] = ACTIONS(2074), - [anon_sym_mod2] = ACTIONS(2072), - [anon_sym_SLASH_SLASH2] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2074), - [anon_sym_bit_DASHshl2] = ACTIONS(2072), - [anon_sym_bit_DASHshr2] = ACTIONS(2072), - [anon_sym_bit_DASHand2] = ACTIONS(2072), - [anon_sym_bit_DASHxor2] = ACTIONS(2072), - [anon_sym_bit_DASHor2] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2074), - [anon_sym_out_GT] = ACTIONS(2074), - [anon_sym_e_GT] = ACTIONS(2074), - [anon_sym_o_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT] = ACTIONS(2074), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(675)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(675), - [anon_sym_in] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_DOT_DOT2] = ACTIONS(2080), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2082), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(676)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(676), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_in] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_has2] = ACTIONS(2084), - [anon_sym_not_DASHhas2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_like2] = ACTIONS(2084), - [anon_sym_not_DASHlike2] = ACTIONS(2084), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(677)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(677), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(678)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(679)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(679), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2066), + [sym__newline] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_err_GT_PIPE] = ACTIONS(2066), + [anon_sym_out_GT_PIPE] = ACTIONS(2066), + [anon_sym_e_GT_PIPE] = ACTIONS(2066), + [anon_sym_o_GT_PIPE] = ACTIONS(2066), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2066), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2066), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2066), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2066), + [anon_sym_RPAREN] = ACTIONS(2066), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2066), + [anon_sym_xor2] = ACTIONS(2066), + [anon_sym_or2] = ACTIONS(2066), + [anon_sym_not_DASHin2] = ACTIONS(2066), + [anon_sym_has2] = ACTIONS(2066), + [anon_sym_not_DASHhas2] = ACTIONS(2066), + [anon_sym_starts_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2066), + [anon_sym_ends_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2066), + [anon_sym_EQ_EQ2] = ACTIONS(2066), + [anon_sym_BANG_EQ2] = ACTIONS(2066), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2066), + [anon_sym_GT_EQ2] = ACTIONS(2066), + [anon_sym_EQ_TILDE2] = ACTIONS(2066), + [anon_sym_BANG_TILDE2] = ACTIONS(2066), + [anon_sym_like2] = ACTIONS(2066), + [anon_sym_not_DASHlike2] = ACTIONS(2066), + [anon_sym_STAR_STAR2] = ACTIONS(2066), + [anon_sym_PLUS_PLUS2] = ACTIONS(2066), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2066), + [anon_sym_SLASH_SLASH2] = ACTIONS(2066), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2066), + [anon_sym_bit_DASHshr2] = ACTIONS(2066), + [anon_sym_bit_DASHand2] = ACTIONS(2066), + [anon_sym_bit_DASHxor2] = ACTIONS(2066), + [anon_sym_bit_DASHor2] = ACTIONS(2066), + [anon_sym_DOT_DOT2] = ACTIONS(2070), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2072), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2072), + [anon_sym_err_GT] = ACTIONS(2068), + [anon_sym_out_GT] = ACTIONS(2068), + [anon_sym_e_GT] = ACTIONS(2068), + [anon_sym_o_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT] = ACTIONS(2068), + [anon_sym_err_GT_GT] = ACTIONS(2066), + [anon_sym_out_GT_GT] = ACTIONS(2066), + [anon_sym_e_GT_GT] = ACTIONS(2066), + [anon_sym_o_GT_GT] = ACTIONS(2066), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2066), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2066), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2066), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2066), [anon_sym_POUND] = ACTIONS(3), }, [STATE(680)] = { [sym_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2076), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2076), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2076), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2076), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(2078), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2080), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2080), + [anon_sym_err_GT] = ACTIONS(2076), + [anon_sym_out_GT] = ACTIONS(2076), + [anon_sym_e_GT] = ACTIONS(2076), + [anon_sym_o_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT] = ACTIONS(2076), + [anon_sym_err_GT_GT] = ACTIONS(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), }, [STATE(681)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(681), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_DOT_DOT2] = ACTIONS(2086), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2088), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(682)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(682), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_DOT_DOT2] = ACTIONS(2090), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2092), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2092), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), [anon_sym_POUND] = ACTIONS(3), }, [STATE(683)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(5228), [sym_comment] = STATE(683), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2094), + [sym__newline] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_err_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_GT_PIPE] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(2094), + [anon_sym_GT2] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_EQ_GT] = ACTIONS(2094), + [anon_sym_STAR2] = ACTIONS(2096), + [anon_sym_and2] = ACTIONS(2094), + [anon_sym_xor2] = ACTIONS(2094), + [anon_sym_or2] = ACTIONS(2094), + [anon_sym_not_DASHin2] = ACTIONS(2094), + [anon_sym_has2] = ACTIONS(2094), + [anon_sym_not_DASHhas2] = ACTIONS(2094), + [anon_sym_starts_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), + [anon_sym_ends_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), + [anon_sym_EQ_EQ2] = ACTIONS(2094), + [anon_sym_BANG_EQ2] = ACTIONS(2094), + [anon_sym_LT2] = ACTIONS(2096), + [anon_sym_LT_EQ2] = ACTIONS(2094), + [anon_sym_GT_EQ2] = ACTIONS(2094), + [anon_sym_EQ_TILDE2] = ACTIONS(2094), + [anon_sym_BANG_TILDE2] = ACTIONS(2094), + [anon_sym_like2] = ACTIONS(2094), + [anon_sym_not_DASHlike2] = ACTIONS(2094), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2094), + [anon_sym_PLUS_PLUS2] = ACTIONS(2094), + [anon_sym_SLASH2] = ACTIONS(2096), + [anon_sym_mod2] = ACTIONS(2094), + [anon_sym_SLASH_SLASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_bit_DASHshl2] = ACTIONS(2094), + [anon_sym_bit_DASHshr2] = ACTIONS(2094), + [anon_sym_bit_DASHand2] = ACTIONS(2094), + [anon_sym_bit_DASHxor2] = ACTIONS(2094), + [anon_sym_bit_DASHor2] = ACTIONS(2094), + [anon_sym_err_GT] = ACTIONS(2096), + [anon_sym_out_GT] = ACTIONS(2096), + [anon_sym_e_GT] = ACTIONS(2096), + [anon_sym_o_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT] = ACTIONS(2096), + [anon_sym_err_GT_GT] = ACTIONS(2094), + [anon_sym_out_GT_GT] = ACTIONS(2094), + [anon_sym_e_GT_GT] = ACTIONS(2094), + [anon_sym_o_GT_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), [anon_sym_POUND] = ACTIONS(3), }, [STATE(684)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), [sym_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_DOT_DOT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(685)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), [sym_comment] = STATE(685), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_in] = ACTIONS(2092), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2092), - [anon_sym_GT2] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2092), - [anon_sym_STAR2] = ACTIONS(2094), - [anon_sym_and2] = ACTIONS(2092), - [anon_sym_xor2] = ACTIONS(2092), - [anon_sym_or2] = ACTIONS(2092), - [anon_sym_not_DASHin2] = ACTIONS(2092), - [anon_sym_has2] = ACTIONS(2092), - [anon_sym_not_DASHhas2] = ACTIONS(2092), - [anon_sym_starts_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2092), - [anon_sym_ends_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2092), - [anon_sym_EQ_EQ2] = ACTIONS(2092), - [anon_sym_BANG_EQ2] = ACTIONS(2092), - [anon_sym_LT2] = ACTIONS(2094), - [anon_sym_LT_EQ2] = ACTIONS(2092), - [anon_sym_GT_EQ2] = ACTIONS(2092), - [anon_sym_EQ_TILDE2] = ACTIONS(2092), - [anon_sym_BANG_TILDE2] = ACTIONS(2092), - [anon_sym_like2] = ACTIONS(2092), - [anon_sym_not_DASHlike2] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), + [anon_sym_in] = ACTIONS(2102), + [sym__newline] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_err_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_GT_PIPE] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_GT2] = ACTIONS(2104), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_EQ_GT] = ACTIONS(2102), + [anon_sym_STAR2] = ACTIONS(2104), + [anon_sym_and2] = ACTIONS(2102), + [anon_sym_xor2] = ACTIONS(2102), + [anon_sym_or2] = ACTIONS(2102), + [anon_sym_not_DASHin2] = ACTIONS(2102), + [anon_sym_has2] = ACTIONS(2102), + [anon_sym_not_DASHhas2] = ACTIONS(2102), + [anon_sym_starts_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2102), + [anon_sym_ends_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2102), + [anon_sym_EQ_EQ2] = ACTIONS(2102), + [anon_sym_BANG_EQ2] = ACTIONS(2102), + [anon_sym_LT2] = ACTIONS(2104), + [anon_sym_LT_EQ2] = ACTIONS(2102), + [anon_sym_GT_EQ2] = ACTIONS(2102), + [anon_sym_EQ_TILDE2] = ACTIONS(2102), + [anon_sym_BANG_TILDE2] = ACTIONS(2102), + [anon_sym_like2] = ACTIONS(2102), + [anon_sym_not_DASHlike2] = ACTIONS(2102), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2102), + [anon_sym_PLUS_PLUS2] = ACTIONS(2102), + [anon_sym_SLASH2] = ACTIONS(2104), + [anon_sym_mod2] = ACTIONS(2102), + [anon_sym_SLASH_SLASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_bit_DASHshl2] = ACTIONS(2102), + [anon_sym_bit_DASHshr2] = ACTIONS(2102), + [anon_sym_bit_DASHand2] = ACTIONS(2102), + [anon_sym_bit_DASHxor2] = ACTIONS(2102), + [anon_sym_bit_DASHor2] = ACTIONS(2102), + [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), + [anon_sym_err_GT_GT] = ACTIONS(2102), + [anon_sym_out_GT_GT] = ACTIONS(2102), + [anon_sym_e_GT_GT] = ACTIONS(2102), + [anon_sym_o_GT_GT] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2102), [anon_sym_POUND] = ACTIONS(3), }, [STATE(686)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(5228), [sym_comment] = STATE(686), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2106), + [sym__newline] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_err_GT_PIPE] = ACTIONS(2106), + [anon_sym_out_GT_PIPE] = ACTIONS(2106), + [anon_sym_e_GT_PIPE] = ACTIONS(2106), + [anon_sym_o_GT_PIPE] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(2106), + [anon_sym_GT2] = ACTIONS(2108), + [anon_sym_DASH2] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_EQ_GT] = ACTIONS(2106), + [anon_sym_STAR2] = ACTIONS(2108), + [anon_sym_and2] = ACTIONS(2106), + [anon_sym_xor2] = ACTIONS(2106), + [anon_sym_or2] = ACTIONS(2106), + [anon_sym_not_DASHin2] = ACTIONS(2106), + [anon_sym_has2] = ACTIONS(2106), + [anon_sym_not_DASHhas2] = ACTIONS(2106), + [anon_sym_starts_DASHwith2] = ACTIONS(2106), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2106), + [anon_sym_ends_DASHwith2] = ACTIONS(2106), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2106), + [anon_sym_EQ_EQ2] = ACTIONS(2106), + [anon_sym_BANG_EQ2] = ACTIONS(2106), + [anon_sym_LT2] = ACTIONS(2108), + [anon_sym_LT_EQ2] = ACTIONS(2106), + [anon_sym_GT_EQ2] = ACTIONS(2106), + [anon_sym_EQ_TILDE2] = ACTIONS(2106), + [anon_sym_BANG_TILDE2] = ACTIONS(2106), + [anon_sym_like2] = ACTIONS(2106), + [anon_sym_not_DASHlike2] = ACTIONS(2106), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2106), + [anon_sym_PLUS_PLUS2] = ACTIONS(2106), + [anon_sym_SLASH2] = ACTIONS(2108), + [anon_sym_mod2] = ACTIONS(2106), + [anon_sym_SLASH_SLASH2] = ACTIONS(2106), + [anon_sym_PLUS2] = ACTIONS(2108), + [anon_sym_bit_DASHshl2] = ACTIONS(2106), + [anon_sym_bit_DASHshr2] = ACTIONS(2106), + [anon_sym_bit_DASHand2] = ACTIONS(2106), + [anon_sym_bit_DASHxor2] = ACTIONS(2106), + [anon_sym_bit_DASHor2] = ACTIONS(2106), + [anon_sym_err_GT] = ACTIONS(2108), + [anon_sym_out_GT] = ACTIONS(2108), + [anon_sym_e_GT] = ACTIONS(2108), + [anon_sym_o_GT] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT] = ACTIONS(2108), + [anon_sym_err_GT_GT] = ACTIONS(2106), + [anon_sym_out_GT_GT] = ACTIONS(2106), + [anon_sym_e_GT_GT] = ACTIONS(2106), + [anon_sym_o_GT_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2106), [anon_sym_POUND] = ACTIONS(3), }, [STATE(687)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(687), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(2005), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_DOT_DOT2] = ACTIONS(2110), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2112), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2112), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(688)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(688), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_DOT_DOT2] = ACTIONS(2114), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2116), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2116), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [sym__unquoted_pattern] = ACTIONS(2021), [anon_sym_POUND] = ACTIONS(3), }, [STATE(689)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(689), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1816), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(690)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(690), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(691)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(691), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_catch] = ACTIONS(2096), - [anon_sym_in] = ACTIONS(2096), - [sym__newline] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_COLON] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2096), - [anon_sym_GT2] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_STAR2] = ACTIONS(2098), - [anon_sym_and2] = ACTIONS(2096), - [anon_sym_xor2] = ACTIONS(2096), - [anon_sym_or2] = ACTIONS(2096), - [anon_sym_not_DASHin2] = ACTIONS(2096), - [anon_sym_has2] = ACTIONS(2096), - [anon_sym_not_DASHhas2] = ACTIONS(2096), - [anon_sym_starts_DASHwith2] = ACTIONS(2096), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2096), - [anon_sym_ends_DASHwith2] = ACTIONS(2096), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2096), - [anon_sym_EQ_EQ2] = ACTIONS(2096), - [anon_sym_BANG_EQ2] = ACTIONS(2096), - [anon_sym_LT2] = ACTIONS(2098), - [anon_sym_LT_EQ2] = ACTIONS(2096), - [anon_sym_GT_EQ2] = ACTIONS(2096), - [anon_sym_EQ_TILDE2] = ACTIONS(2096), - [anon_sym_BANG_TILDE2] = ACTIONS(2096), - [anon_sym_like2] = ACTIONS(2096), - [anon_sym_not_DASHlike2] = ACTIONS(2096), - [anon_sym_STAR_STAR2] = ACTIONS(2096), - [anon_sym_PLUS_PLUS2] = ACTIONS(2096), - [anon_sym_SLASH2] = ACTIONS(2098), - [anon_sym_mod2] = ACTIONS(2096), - [anon_sym_SLASH_SLASH2] = ACTIONS(2096), - [anon_sym_PLUS2] = ACTIONS(2098), - [anon_sym_bit_DASHshl2] = ACTIONS(2096), - [anon_sym_bit_DASHshr2] = ACTIONS(2096), - [anon_sym_bit_DASHand2] = ACTIONS(2096), - [anon_sym_bit_DASHxor2] = ACTIONS(2096), - [anon_sym_bit_DASHor2] = ACTIONS(2096), - [anon_sym_err_GT] = ACTIONS(2098), - [anon_sym_out_GT] = ACTIONS(2098), - [anon_sym_e_GT] = ACTIONS(2098), - [anon_sym_o_GT] = ACTIONS(2098), - [anon_sym_err_PLUSout_GT] = ACTIONS(2098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2098), - [anon_sym_o_PLUSe_GT] = ACTIONS(2098), - [anon_sym_e_PLUSo_GT] = ACTIONS(2098), - [anon_sym_err_GT_GT] = ACTIONS(2096), - [anon_sym_out_GT_GT] = ACTIONS(2096), - [anon_sym_e_GT_GT] = ACTIONS(2096), - [anon_sym_o_GT_GT] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(692)] = { [sym_comment] = STATE(692), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_DOT_DOT2] = ACTIONS(2104), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2106), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2106), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(693)] = { - [sym_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2108), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2110), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2110), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(694)] = { - [sym_comment] = STATE(694), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [sym__newline] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2112), - [anon_sym_err_GT_PIPE] = ACTIONS(2112), - [anon_sym_out_GT_PIPE] = ACTIONS(2112), - [anon_sym_e_GT_PIPE] = ACTIONS(2112), - [anon_sym_o_GT_PIPE] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_GT2] = ACTIONS(2114), - [anon_sym_DASH2] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_EQ_GT] = ACTIONS(2112), - [anon_sym_STAR2] = ACTIONS(2114), - [anon_sym_and2] = ACTIONS(2112), - [anon_sym_xor2] = ACTIONS(2112), - [anon_sym_or2] = ACTIONS(2112), - [anon_sym_not_DASHin2] = ACTIONS(2112), - [anon_sym_has2] = ACTIONS(2112), - [anon_sym_not_DASHhas2] = ACTIONS(2112), - [anon_sym_starts_DASHwith2] = ACTIONS(2112), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2112), - [anon_sym_ends_DASHwith2] = ACTIONS(2112), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2112), - [anon_sym_EQ_EQ2] = ACTIONS(2112), - [anon_sym_BANG_EQ2] = ACTIONS(2112), - [anon_sym_LT2] = ACTIONS(2114), - [anon_sym_LT_EQ2] = ACTIONS(2112), - [anon_sym_GT_EQ2] = ACTIONS(2112), - [anon_sym_EQ_TILDE2] = ACTIONS(2112), - [anon_sym_BANG_TILDE2] = ACTIONS(2112), - [anon_sym_like2] = ACTIONS(2112), - [anon_sym_not_DASHlike2] = ACTIONS(2112), - [anon_sym_STAR_STAR2] = ACTIONS(2112), - [anon_sym_PLUS_PLUS2] = ACTIONS(2112), - [anon_sym_SLASH2] = ACTIONS(2114), - [anon_sym_mod2] = ACTIONS(2112), - [anon_sym_SLASH_SLASH2] = ACTIONS(2112), - [anon_sym_PLUS2] = ACTIONS(2114), - [anon_sym_bit_DASHshl2] = ACTIONS(2112), - [anon_sym_bit_DASHshr2] = ACTIONS(2112), - [anon_sym_bit_DASHand2] = ACTIONS(2112), - [anon_sym_bit_DASHxor2] = ACTIONS(2112), - [anon_sym_bit_DASHor2] = ACTIONS(2112), - [anon_sym_COLON2] = ACTIONS(2112), - [anon_sym_err_GT] = ACTIONS(2114), - [anon_sym_out_GT] = ACTIONS(2114), - [anon_sym_e_GT] = ACTIONS(2114), - [anon_sym_o_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT] = ACTIONS(2114), - [anon_sym_err_GT_GT] = ACTIONS(2112), - [anon_sym_out_GT_GT] = ACTIONS(2112), - [anon_sym_e_GT_GT] = ACTIONS(2112), - [anon_sym_o_GT_GT] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(695)] = { - [sym_comment] = STATE(695), - [anon_sym_if] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(696)] = { - [sym_comment] = STATE(696), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(2116), - [aux_sym__immediate_decimal_token5] = ACTIONS(2118), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(697)] = { - [sym_comment] = STATE(697), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(698)] = { - [sym_comment] = STATE(698), - [anon_sym_in] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2118), [sym__newline] = ACTIONS(2120), [anon_sym_SEMI] = ACTIONS(2120), [anon_sym_PIPE] = ACTIONS(2120), @@ -100419,51 +100240,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), [anon_sym_RPAREN] = ACTIONS(2120), [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2118), [anon_sym_LBRACE] = ACTIONS(2120), [anon_sym_RBRACE] = ACTIONS(2120), [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2124), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2126), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2126), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(2124), + [anon_sym_out_GT] = ACTIONS(2124), + [anon_sym_e_GT] = ACTIONS(2124), + [anon_sym_o_GT] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT] = ACTIONS(2124), [anon_sym_err_GT_GT] = ACTIONS(2120), [anon_sym_out_GT_GT] = ACTIONS(2120), [anon_sym_e_GT_GT] = ACTIONS(2120), @@ -100474,97 +100295,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(699)] = { - [sym_comment] = STATE(699), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(2128), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_RPAREN] = ACTIONS(2128), - [anon_sym_GT2] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_EQ_GT] = ACTIONS(2128), - [anon_sym_STAR2] = ACTIONS(2130), - [anon_sym_and2] = ACTIONS(2128), - [anon_sym_xor2] = ACTIONS(2128), - [anon_sym_or2] = ACTIONS(2128), - [anon_sym_not_DASHin2] = ACTIONS(2128), - [anon_sym_has2] = ACTIONS(2128), - [anon_sym_not_DASHhas2] = ACTIONS(2128), - [anon_sym_starts_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2128), - [anon_sym_ends_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2128), - [anon_sym_EQ_EQ2] = ACTIONS(2128), - [anon_sym_BANG_EQ2] = ACTIONS(2128), - [anon_sym_LT2] = ACTIONS(2130), - [anon_sym_LT_EQ2] = ACTIONS(2128), - [anon_sym_GT_EQ2] = ACTIONS(2128), - [anon_sym_EQ_TILDE2] = ACTIONS(2128), - [anon_sym_BANG_TILDE2] = ACTIONS(2128), - [anon_sym_like2] = ACTIONS(2128), - [anon_sym_not_DASHlike2] = ACTIONS(2128), - [anon_sym_STAR_STAR2] = ACTIONS(2128), - [anon_sym_PLUS_PLUS2] = ACTIONS(2128), - [anon_sym_SLASH2] = ACTIONS(2130), - [anon_sym_mod2] = ACTIONS(2128), - [anon_sym_SLASH_SLASH2] = ACTIONS(2128), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_bit_DASHshl2] = ACTIONS(2128), - [anon_sym_bit_DASHshr2] = ACTIONS(2128), - [anon_sym_bit_DASHand2] = ACTIONS(2128), - [anon_sym_bit_DASHxor2] = ACTIONS(2128), - [anon_sym_bit_DASHor2] = ACTIONS(2128), - [anon_sym_LBRACK2] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), + [STATE(693)] = { + [sym_comment] = STATE(693), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [sym__newline] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_err_GT_PIPE] = ACTIONS(2126), + [anon_sym_out_GT_PIPE] = ACTIONS(2126), + [anon_sym_e_GT_PIPE] = ACTIONS(2126), + [anon_sym_o_GT_PIPE] = ACTIONS(2126), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2126), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2126), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2126), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2126), + [anon_sym_RPAREN] = ACTIONS(2126), + [anon_sym_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_EQ_GT] = ACTIONS(2126), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2126), + [anon_sym_xor2] = ACTIONS(2126), + [anon_sym_or2] = ACTIONS(2126), + [anon_sym_not_DASHin2] = ACTIONS(2126), + [anon_sym_has2] = ACTIONS(2126), + [anon_sym_not_DASHhas2] = ACTIONS(2126), + [anon_sym_starts_DASHwith2] = ACTIONS(2126), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2126), + [anon_sym_ends_DASHwith2] = ACTIONS(2126), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2126), + [anon_sym_EQ_EQ2] = ACTIONS(2126), + [anon_sym_BANG_EQ2] = ACTIONS(2126), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2126), + [anon_sym_GT_EQ2] = ACTIONS(2126), + [anon_sym_EQ_TILDE2] = ACTIONS(2126), + [anon_sym_BANG_TILDE2] = ACTIONS(2126), + [anon_sym_like2] = ACTIONS(2126), + [anon_sym_not_DASHlike2] = ACTIONS(2126), + [anon_sym_STAR_STAR2] = ACTIONS(2126), + [anon_sym_PLUS_PLUS2] = ACTIONS(2126), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2126), + [anon_sym_SLASH_SLASH2] = ACTIONS(2126), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2126), + [anon_sym_bit_DASHshr2] = ACTIONS(2126), + [anon_sym_bit_DASHand2] = ACTIONS(2126), + [anon_sym_bit_DASHxor2] = ACTIONS(2126), + [anon_sym_bit_DASHor2] = ACTIONS(2126), + [anon_sym_COLON2] = ACTIONS(2126), + [anon_sym_err_GT] = ACTIONS(2128), + [anon_sym_out_GT] = ACTIONS(2128), + [anon_sym_e_GT] = ACTIONS(2128), + [anon_sym_o_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT] = ACTIONS(2128), + [anon_sym_err_GT_GT] = ACTIONS(2126), + [anon_sym_out_GT_GT] = ACTIONS(2126), + [anon_sym_e_GT_GT] = ACTIONS(2126), + [anon_sym_o_GT_GT] = ACTIONS(2126), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2126), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2126), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2126), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2126), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(700)] = { - [sym_comment] = STATE(700), + [STATE(694)] = { + [sym_comment] = STATE(694), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_in] = ACTIONS(2130), + [sym__newline] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_err_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_GT_PIPE] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(2130), + [anon_sym_GT2] = ACTIONS(2132), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_EQ_GT] = ACTIONS(2130), + [anon_sym_STAR2] = ACTIONS(2132), + [anon_sym_and2] = ACTIONS(2130), + [anon_sym_xor2] = ACTIONS(2130), + [anon_sym_or2] = ACTIONS(2130), + [anon_sym_not_DASHin2] = ACTIONS(2130), + [anon_sym_has2] = ACTIONS(2130), + [anon_sym_not_DASHhas2] = ACTIONS(2130), + [anon_sym_starts_DASHwith2] = ACTIONS(2130), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2130), + [anon_sym_ends_DASHwith2] = ACTIONS(2130), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2130), + [anon_sym_EQ_EQ2] = ACTIONS(2130), + [anon_sym_BANG_EQ2] = ACTIONS(2130), + [anon_sym_LT2] = ACTIONS(2132), + [anon_sym_LT_EQ2] = ACTIONS(2130), + [anon_sym_GT_EQ2] = ACTIONS(2130), + [anon_sym_EQ_TILDE2] = ACTIONS(2130), + [anon_sym_BANG_TILDE2] = ACTIONS(2130), + [anon_sym_like2] = ACTIONS(2130), + [anon_sym_not_DASHlike2] = ACTIONS(2130), + [anon_sym_LPAREN2] = ACTIONS(2130), + [anon_sym_STAR_STAR2] = ACTIONS(2130), + [anon_sym_PLUS_PLUS2] = ACTIONS(2130), + [anon_sym_SLASH2] = ACTIONS(2132), + [anon_sym_mod2] = ACTIONS(2130), + [anon_sym_SLASH_SLASH2] = ACTIONS(2130), + [anon_sym_PLUS2] = ACTIONS(2132), + [anon_sym_bit_DASHshl2] = ACTIONS(2130), + [anon_sym_bit_DASHshr2] = ACTIONS(2130), + [anon_sym_bit_DASHand2] = ACTIONS(2130), + [anon_sym_bit_DASHxor2] = ACTIONS(2130), + [anon_sym_bit_DASHor2] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(2132), + [anon_sym_out_GT] = ACTIONS(2132), + [anon_sym_e_GT] = ACTIONS(2132), + [anon_sym_o_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT] = ACTIONS(2132), + [anon_sym_err_GT_GT] = ACTIONS(2130), + [anon_sym_out_GT_GT] = ACTIONS(2130), + [anon_sym_e_GT_GT] = ACTIONS(2130), + [anon_sym_o_GT_GT] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2130), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(695)] = { + [sym_comment] = STATE(695), [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), + [sym__newline] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_err_GT_PIPE] = ACTIONS(2134), + [anon_sym_out_GT_PIPE] = ACTIONS(2134), + [anon_sym_e_GT_PIPE] = ACTIONS(2134), + [anon_sym_o_GT_PIPE] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_GT2] = ACTIONS(2136), [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_STAR2] = ACTIONS(2136), [anon_sym_and2] = ACTIONS(2134), [anon_sym_xor2] = ACTIONS(2134), [anon_sym_or2] = ACTIONS(2134), @@ -100577,7 +100469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), [anon_sym_EQ_EQ2] = ACTIONS(2134), [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), + [anon_sym_LT2] = ACTIONS(2136), [anon_sym_LT_EQ2] = ACTIONS(2134), [anon_sym_GT_EQ2] = ACTIONS(2134), [anon_sym_EQ_TILDE2] = ACTIONS(2134), @@ -100586,1592 +100478,3065 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(2134), [anon_sym_STAR_STAR2] = ACTIONS(2134), [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), + [anon_sym_SLASH2] = ACTIONS(2136), [anon_sym_mod2] = ACTIONS(2134), [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_PLUS2] = ACTIONS(2136), [anon_sym_bit_DASHshl2] = ACTIONS(2134), [anon_sym_bit_DASHshr2] = ACTIONS(2134), [anon_sym_bit_DASHand2] = ACTIONS(2134), [anon_sym_bit_DASHxor2] = ACTIONS(2134), [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_DOT_DOT2] = ACTIONS(2138), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2140), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2140), + [anon_sym_err_GT] = ACTIONS(2136), + [anon_sym_out_GT] = ACTIONS(2136), + [anon_sym_e_GT] = ACTIONS(2136), + [anon_sym_o_GT] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT] = ACTIONS(2136), + [anon_sym_err_GT_GT] = ACTIONS(2134), + [anon_sym_out_GT_GT] = ACTIONS(2134), + [anon_sym_e_GT_GT] = ACTIONS(2134), + [anon_sym_o_GT_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(696)] = { + [sym_comment] = STATE(696), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_DOT_DOT2] = ACTIONS(2142), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2144), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2144), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(697)] = { + [sym_comment] = STATE(697), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_in] = ACTIONS(2146), + [sym__newline] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2146), + [anon_sym_RPAREN] = ACTIONS(2146), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_STAR2] = ACTIONS(2148), + [anon_sym_and2] = ACTIONS(2146), + [anon_sym_xor2] = ACTIONS(2146), + [anon_sym_or2] = ACTIONS(2146), + [anon_sym_not_DASHin2] = ACTIONS(2146), + [anon_sym_has2] = ACTIONS(2146), + [anon_sym_not_DASHhas2] = ACTIONS(2146), + [anon_sym_starts_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), + [anon_sym_ends_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), + [anon_sym_EQ_EQ2] = ACTIONS(2146), + [anon_sym_BANG_EQ2] = ACTIONS(2146), + [anon_sym_LT2] = ACTIONS(2148), + [anon_sym_LT_EQ2] = ACTIONS(2146), + [anon_sym_GT_EQ2] = ACTIONS(2146), + [anon_sym_EQ_TILDE2] = ACTIONS(2146), + [anon_sym_BANG_TILDE2] = ACTIONS(2146), + [anon_sym_like2] = ACTIONS(2146), + [anon_sym_not_DASHlike2] = ACTIONS(2146), + [anon_sym_STAR_STAR2] = ACTIONS(2146), + [anon_sym_PLUS_PLUS2] = ACTIONS(2146), + [anon_sym_SLASH2] = ACTIONS(2148), + [anon_sym_mod2] = ACTIONS(2146), + [anon_sym_SLASH_SLASH2] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2148), + [anon_sym_bit_DASHshl2] = ACTIONS(2146), + [anon_sym_bit_DASHshr2] = ACTIONS(2146), + [anon_sym_bit_DASHand2] = ACTIONS(2146), + [anon_sym_bit_DASHxor2] = ACTIONS(2146), + [anon_sym_bit_DASHor2] = ACTIONS(2146), + [anon_sym_err_GT] = ACTIONS(2148), + [anon_sym_out_GT] = ACTIONS(2148), + [anon_sym_e_GT] = ACTIONS(2148), + [anon_sym_o_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT] = ACTIONS(2148), + [anon_sym_err_GT_GT] = ACTIONS(2146), + [anon_sym_out_GT_GT] = ACTIONS(2146), + [anon_sym_e_GT_GT] = ACTIONS(2146), + [anon_sym_o_GT_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(698)] = { + [sym_comment] = STATE(698), + [ts_builtin_sym_end] = ACTIONS(1854), + [anon_sym_in] = ACTIONS(1854), + [sym__newline] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_err_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_GT_PIPE] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), + [anon_sym_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [anon_sym_DOT_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1854), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1856), + [anon_sym_out_GT] = ACTIONS(1856), + [anon_sym_e_GT] = ACTIONS(1856), + [anon_sym_o_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT] = ACTIONS(1856), + [anon_sym_err_GT_GT] = ACTIONS(1854), + [anon_sym_out_GT_GT] = ACTIONS(1854), + [anon_sym_e_GT_GT] = ACTIONS(1854), + [anon_sym_o_GT_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [sym__unquoted_pattern] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(699)] = { + [sym_comment] = STATE(699), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(700)] = { + [sym_comment] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1452), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(2154), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), }, [STATE(701)] = { [sym_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1452), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_QMARK2] = ACTIONS(2156), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), }, [STATE(702)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(702), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_EQ_GT] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_err_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_GT_PIPE] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2122), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2122), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(2122), + [anon_sym_out_GT] = ACTIONS(2122), + [anon_sym_e_GT] = ACTIONS(2122), + [anon_sym_o_GT] = ACTIONS(2122), + [anon_sym_err_PLUSout_GT] = ACTIONS(2122), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), + [anon_sym_o_PLUSe_GT] = ACTIONS(2122), + [anon_sym_e_PLUSo_GT] = ACTIONS(2122), + [anon_sym_err_GT_GT] = ACTIONS(2118), + [anon_sym_out_GT_GT] = ACTIONS(2118), + [anon_sym_e_GT_GT] = ACTIONS(2118), + [anon_sym_o_GT_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(3), }, [STATE(703)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(703), - [anon_sym_in] = ACTIONS(2148), - [sym__newline] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_err_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_GT_PIPE] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_GT2] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_EQ_GT] = ACTIONS(2148), - [anon_sym_STAR2] = ACTIONS(2150), - [anon_sym_and2] = ACTIONS(2148), - [anon_sym_xor2] = ACTIONS(2148), - [anon_sym_or2] = ACTIONS(2148), - [anon_sym_not_DASHin2] = ACTIONS(2148), - [anon_sym_has2] = ACTIONS(2148), - [anon_sym_not_DASHhas2] = ACTIONS(2148), - [anon_sym_starts_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2148), - [anon_sym_ends_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2148), - [anon_sym_EQ_EQ2] = ACTIONS(2148), - [anon_sym_BANG_EQ2] = ACTIONS(2148), - [anon_sym_LT2] = ACTIONS(2150), - [anon_sym_LT_EQ2] = ACTIONS(2148), - [anon_sym_GT_EQ2] = ACTIONS(2148), - [anon_sym_EQ_TILDE2] = ACTIONS(2148), - [anon_sym_BANG_TILDE2] = ACTIONS(2148), - [anon_sym_like2] = ACTIONS(2148), - [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_err_GT] = ACTIONS(2150), - [anon_sym_out_GT] = ACTIONS(2150), - [anon_sym_e_GT] = ACTIONS(2150), - [anon_sym_o_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT] = ACTIONS(2150), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(704)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(704), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2156), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2158), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2158), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(705)] = { [sym_comment] = STATE(705), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2160), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2162), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2162), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(706)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(2164), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(707)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(707), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, [STATE(708)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(708), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [aux_sym__immediate_decimal_token1] = ACTIONS(2158), + [aux_sym__immediate_decimal_token5] = ACTIONS(2160), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, [STATE(709)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(709), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2166), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2168), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2168), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(710)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(710), - [anon_sym_in] = ACTIONS(2170), - [sym__newline] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_err_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_GT_PIPE] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2170), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_GT2] = ACTIONS(2172), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_EQ_GT] = ACTIONS(2170), - [anon_sym_STAR2] = ACTIONS(2172), - [anon_sym_and2] = ACTIONS(2170), - [anon_sym_xor2] = ACTIONS(2170), - [anon_sym_or2] = ACTIONS(2170), - [anon_sym_not_DASHin2] = ACTIONS(2170), - [anon_sym_has2] = ACTIONS(2170), - [anon_sym_not_DASHhas2] = ACTIONS(2170), - [anon_sym_starts_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2170), - [anon_sym_ends_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2170), - [anon_sym_EQ_EQ2] = ACTIONS(2170), - [anon_sym_BANG_EQ2] = ACTIONS(2170), - [anon_sym_LT2] = ACTIONS(2172), - [anon_sym_LT_EQ2] = ACTIONS(2170), - [anon_sym_GT_EQ2] = ACTIONS(2170), - [anon_sym_EQ_TILDE2] = ACTIONS(2170), - [anon_sym_BANG_TILDE2] = ACTIONS(2170), - [anon_sym_like2] = ACTIONS(2170), - [anon_sym_not_DASHlike2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2170), - [anon_sym_PLUS_PLUS2] = ACTIONS(2170), - [anon_sym_SLASH2] = ACTIONS(2172), - [anon_sym_mod2] = ACTIONS(2170), - [anon_sym_SLASH_SLASH2] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2172), - [anon_sym_bit_DASHshl2] = ACTIONS(2170), - [anon_sym_bit_DASHshr2] = ACTIONS(2170), - [anon_sym_bit_DASHand2] = ACTIONS(2170), - [anon_sym_bit_DASHxor2] = ACTIONS(2170), - [anon_sym_bit_DASHor2] = ACTIONS(2170), - [anon_sym_err_GT] = ACTIONS(2172), - [anon_sym_out_GT] = ACTIONS(2172), - [anon_sym_e_GT] = ACTIONS(2172), - [anon_sym_o_GT] = ACTIONS(2172), - [anon_sym_err_PLUSout_GT] = ACTIONS(2172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), - [anon_sym_o_PLUSe_GT] = ACTIONS(2172), - [anon_sym_e_PLUSo_GT] = ACTIONS(2172), - [anon_sym_err_GT_GT] = ACTIONS(2170), - [anon_sym_out_GT_GT] = ACTIONS(2170), - [anon_sym_e_GT_GT] = ACTIONS(2170), - [anon_sym_o_GT_GT] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(2162), + [aux_sym__immediate_decimal_token5] = ACTIONS(2164), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), [anon_sym_POUND] = ACTIONS(3), }, [STATE(711)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(711), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2166), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2168), + [anon_sym_DASH2] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2168), + [anon_sym_and2] = ACTIONS(2166), + [anon_sym_xor2] = ACTIONS(2166), + [anon_sym_or2] = ACTIONS(2166), + [anon_sym_not_DASHin2] = ACTIONS(2166), + [anon_sym_has2] = ACTIONS(2166), + [anon_sym_not_DASHhas2] = ACTIONS(2166), + [anon_sym_starts_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), + [anon_sym_ends_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), + [anon_sym_EQ_EQ2] = ACTIONS(2166), + [anon_sym_BANG_EQ2] = ACTIONS(2166), + [anon_sym_LT2] = ACTIONS(2168), + [anon_sym_LT_EQ2] = ACTIONS(2166), + [anon_sym_GT_EQ2] = ACTIONS(2166), + [anon_sym_EQ_TILDE2] = ACTIONS(2166), + [anon_sym_BANG_TILDE2] = ACTIONS(2166), + [anon_sym_like2] = ACTIONS(2166), + [anon_sym_not_DASHlike2] = ACTIONS(2166), + [anon_sym_STAR_STAR2] = ACTIONS(2166), + [anon_sym_PLUS_PLUS2] = ACTIONS(2166), + [anon_sym_SLASH2] = ACTIONS(2168), + [anon_sym_mod2] = ACTIONS(2166), + [anon_sym_SLASH_SLASH2] = ACTIONS(2166), + [anon_sym_PLUS2] = ACTIONS(2168), + [anon_sym_bit_DASHshl2] = ACTIONS(2166), + [anon_sym_bit_DASHshr2] = ACTIONS(2166), + [anon_sym_bit_DASHand2] = ACTIONS(2166), + [anon_sym_bit_DASHxor2] = ACTIONS(2166), + [anon_sym_bit_DASHor2] = ACTIONS(2166), + [anon_sym_LBRACK2] = ACTIONS(2170), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), [anon_sym_POUND] = ACTIONS(3), }, [STATE(712)] = { + [aux_sym__repeat_newline] = STATE(1088), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(712), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(713)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1276), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1016), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1236), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(675), + [sym__unquoted_with_expr] = STATE(934), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(713), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(714)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(714), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(715)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2187), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(715), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(714)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1245), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(676), + [sym__unquoted_with_expr] = STATE(936), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(714), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(716)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2188), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(716), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(715)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1247), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(677), + [sym__unquoted_with_expr] = STATE(939), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(715), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(717)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2189), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(717), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(716)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1252), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(678), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(716), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(717)] = { + [sym_comment] = STATE(717), + [anon_sym_in] = ACTIONS(2176), + [sym__newline] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_err_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_GT_PIPE] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_GT2] = ACTIONS(2178), + [anon_sym_DASH2] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_EQ_GT] = ACTIONS(2176), + [anon_sym_STAR2] = ACTIONS(2178), + [anon_sym_and2] = ACTIONS(2176), + [anon_sym_xor2] = ACTIONS(2176), + [anon_sym_or2] = ACTIONS(2176), + [anon_sym_not_DASHin2] = ACTIONS(2176), + [anon_sym_has2] = ACTIONS(2176), + [anon_sym_not_DASHhas2] = ACTIONS(2176), + [anon_sym_starts_DASHwith2] = ACTIONS(2176), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2176), + [anon_sym_ends_DASHwith2] = ACTIONS(2176), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2176), + [anon_sym_EQ_EQ2] = ACTIONS(2176), + [anon_sym_BANG_EQ2] = ACTIONS(2176), + [anon_sym_LT2] = ACTIONS(2178), + [anon_sym_LT_EQ2] = ACTIONS(2176), + [anon_sym_GT_EQ2] = ACTIONS(2176), + [anon_sym_EQ_TILDE2] = ACTIONS(2176), + [anon_sym_BANG_TILDE2] = ACTIONS(2176), + [anon_sym_like2] = ACTIONS(2176), + [anon_sym_not_DASHlike2] = ACTIONS(2176), + [anon_sym_STAR_STAR2] = ACTIONS(2176), + [anon_sym_PLUS_PLUS2] = ACTIONS(2176), + [anon_sym_SLASH2] = ACTIONS(2178), + [anon_sym_mod2] = ACTIONS(2176), + [anon_sym_SLASH_SLASH2] = ACTIONS(2176), + [anon_sym_PLUS2] = ACTIONS(2178), + [anon_sym_bit_DASHshl2] = ACTIONS(2176), + [anon_sym_bit_DASHshr2] = ACTIONS(2176), + [anon_sym_bit_DASHand2] = ACTIONS(2176), + [anon_sym_bit_DASHxor2] = ACTIONS(2176), + [anon_sym_bit_DASHor2] = ACTIONS(2176), + [anon_sym_COLON2] = ACTIONS(2176), + [anon_sym_err_GT] = ACTIONS(2178), + [anon_sym_out_GT] = ACTIONS(2178), + [anon_sym_e_GT] = ACTIONS(2178), + [anon_sym_o_GT] = ACTIONS(2178), + [anon_sym_err_PLUSout_GT] = ACTIONS(2178), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2178), + [anon_sym_o_PLUSe_GT] = ACTIONS(2178), + [anon_sym_e_PLUSo_GT] = ACTIONS(2178), + [anon_sym_err_GT_GT] = ACTIONS(2176), + [anon_sym_out_GT_GT] = ACTIONS(2176), + [anon_sym_e_GT_GT] = ACTIONS(2176), + [anon_sym_o_GT_GT] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(718)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2190), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(718), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_in] = ACTIONS(2180), + [sym__newline] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_err_GT_PIPE] = ACTIONS(2180), + [anon_sym_out_GT_PIPE] = ACTIONS(2180), + [anon_sym_e_GT_PIPE] = ACTIONS(2180), + [anon_sym_o_GT_PIPE] = ACTIONS(2180), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2180), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2180), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2180), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2180), + [anon_sym_RPAREN] = ACTIONS(2180), + [anon_sym_GT2] = ACTIONS(2182), + [anon_sym_DASH2] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_EQ_GT] = ACTIONS(2180), + [anon_sym_STAR2] = ACTIONS(2182), + [anon_sym_and2] = ACTIONS(2180), + [anon_sym_xor2] = ACTIONS(2180), + [anon_sym_or2] = ACTIONS(2180), + [anon_sym_not_DASHin2] = ACTIONS(2180), + [anon_sym_has2] = ACTIONS(2180), + [anon_sym_not_DASHhas2] = ACTIONS(2180), + [anon_sym_starts_DASHwith2] = ACTIONS(2180), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2180), + [anon_sym_ends_DASHwith2] = ACTIONS(2180), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2180), + [anon_sym_EQ_EQ2] = ACTIONS(2180), + [anon_sym_BANG_EQ2] = ACTIONS(2180), + [anon_sym_LT2] = ACTIONS(2182), + [anon_sym_LT_EQ2] = ACTIONS(2180), + [anon_sym_GT_EQ2] = ACTIONS(2180), + [anon_sym_EQ_TILDE2] = ACTIONS(2180), + [anon_sym_BANG_TILDE2] = ACTIONS(2180), + [anon_sym_like2] = ACTIONS(2180), + [anon_sym_not_DASHlike2] = ACTIONS(2180), + [anon_sym_STAR_STAR2] = ACTIONS(2180), + [anon_sym_PLUS_PLUS2] = ACTIONS(2180), + [anon_sym_SLASH2] = ACTIONS(2182), + [anon_sym_mod2] = ACTIONS(2180), + [anon_sym_SLASH_SLASH2] = ACTIONS(2180), + [anon_sym_PLUS2] = ACTIONS(2182), + [anon_sym_bit_DASHshl2] = ACTIONS(2180), + [anon_sym_bit_DASHshr2] = ACTIONS(2180), + [anon_sym_bit_DASHand2] = ACTIONS(2180), + [anon_sym_bit_DASHxor2] = ACTIONS(2180), + [anon_sym_bit_DASHor2] = ACTIONS(2180), + [anon_sym_COLON2] = ACTIONS(2180), + [anon_sym_err_GT] = ACTIONS(2182), + [anon_sym_out_GT] = ACTIONS(2182), + [anon_sym_e_GT] = ACTIONS(2182), + [anon_sym_o_GT] = ACTIONS(2182), + [anon_sym_err_PLUSout_GT] = ACTIONS(2182), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2182), + [anon_sym_o_PLUSe_GT] = ACTIONS(2182), + [anon_sym_e_PLUSo_GT] = ACTIONS(2182), + [anon_sym_err_GT_GT] = ACTIONS(2180), + [anon_sym_out_GT_GT] = ACTIONS(2180), + [anon_sym_e_GT_GT] = ACTIONS(2180), + [anon_sym_o_GT_GT] = ACTIONS(2180), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2180), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2180), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2180), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2180), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(719)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4360), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4607), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(719), + [aux_sym__match_pattern_record_body_repeat1] = STATE(720), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(719)] = { - [sym_comment] = STATE(719), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_in] = ACTIONS(2194), - [sym__newline] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_err_GT_PIPE] = ACTIONS(2194), - [anon_sym_out_GT_PIPE] = ACTIONS(2194), - [anon_sym_e_GT_PIPE] = ACTIONS(2194), - [anon_sym_o_GT_PIPE] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), - [anon_sym_RPAREN] = ACTIONS(2194), - [anon_sym_GT2] = ACTIONS(2196), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_EQ_GT] = ACTIONS(2194), - [anon_sym_STAR2] = ACTIONS(2196), - [anon_sym_and2] = ACTIONS(2194), - [anon_sym_xor2] = ACTIONS(2194), - [anon_sym_or2] = ACTIONS(2194), - [anon_sym_not_DASHin2] = ACTIONS(2194), - [anon_sym_has2] = ACTIONS(2194), - [anon_sym_not_DASHhas2] = ACTIONS(2194), - [anon_sym_starts_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), - [anon_sym_ends_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), - [anon_sym_EQ_EQ2] = ACTIONS(2194), - [anon_sym_BANG_EQ2] = ACTIONS(2194), - [anon_sym_LT2] = ACTIONS(2196), - [anon_sym_LT_EQ2] = ACTIONS(2194), - [anon_sym_GT_EQ2] = ACTIONS(2194), - [anon_sym_EQ_TILDE2] = ACTIONS(2194), - [anon_sym_BANG_TILDE2] = ACTIONS(2194), - [anon_sym_like2] = ACTIONS(2194), - [anon_sym_not_DASHlike2] = ACTIONS(2194), - [anon_sym_STAR_STAR2] = ACTIONS(2194), - [anon_sym_PLUS_PLUS2] = ACTIONS(2194), - [anon_sym_SLASH2] = ACTIONS(2196), - [anon_sym_mod2] = ACTIONS(2194), - [anon_sym_SLASH_SLASH2] = ACTIONS(2194), - [anon_sym_PLUS2] = ACTIONS(2196), - [anon_sym_bit_DASHshl2] = ACTIONS(2194), - [anon_sym_bit_DASHshr2] = ACTIONS(2194), - [anon_sym_bit_DASHand2] = ACTIONS(2194), - [anon_sym_bit_DASHxor2] = ACTIONS(2194), - [anon_sym_bit_DASHor2] = ACTIONS(2194), - [anon_sym_err_GT] = ACTIONS(2196), - [anon_sym_out_GT] = ACTIONS(2196), - [anon_sym_e_GT] = ACTIONS(2196), - [anon_sym_o_GT] = ACTIONS(2196), - [anon_sym_err_PLUSout_GT] = ACTIONS(2196), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), - [anon_sym_o_PLUSe_GT] = ACTIONS(2196), - [anon_sym_e_PLUSo_GT] = ACTIONS(2196), - [anon_sym_err_GT_GT] = ACTIONS(2194), - [anon_sym_out_GT_GT] = ACTIONS(2194), - [anon_sym_e_GT_GT] = ACTIONS(2194), - [anon_sym_o_GT_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(720)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4634), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4793), + [sym__record_key] = STATE(5144), [sym_comment] = STATE(720), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_EQ_GT] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__match_pattern_record_body_repeat1] = STATE(720), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_alias] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [aux_sym_cmd_identifier_token1] = ACTIONS(2190), + [anon_sym_def] = ACTIONS(2187), + [anon_sym_use] = ACTIONS(2187), + [anon_sym_export_DASHenv] = ACTIONS(2187), + [anon_sym_extern] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_loop] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_catch] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_null] = ACTIONS(2193), + [aux_sym_cmd_identifier_token3] = ACTIONS(2196), + [aux_sym_cmd_identifier_token4] = ACTIONS(2196), + [aux_sym_cmd_identifier_token5] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2202), + [anon_sym_DASH2] = ACTIONS(2205), + [anon_sym_PLUS2] = ACTIONS(2205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2208), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2211), + [aux_sym__val_number_decimal_token1] = ACTIONS(2214), + [aux_sym__val_number_decimal_token2] = ACTIONS(2217), + [aux_sym__val_number_decimal_token3] = ACTIONS(2220), + [aux_sym__val_number_decimal_token4] = ACTIONS(2220), + [aux_sym__val_number_token1] = ACTIONS(2223), + [aux_sym__val_number_token2] = ACTIONS(2223), + [aux_sym__val_number_token3] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_BQUOTE] = ACTIONS(2232), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2244), }, [STATE(721)] = { + [aux_sym__repeat_newline] = STATE(1050), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(721), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), }, [STATE(722)] = { + [aux_sym__repeat_newline] = STATE(1051), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(722), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_EQ_GT] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), }, [STATE(723)] = { + [aux_sym__repeat_newline] = STATE(1129), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(723), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_in] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(724)] = { + [aux_sym__repeat_newline] = STATE(1053), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(724), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(725)] = { + [sym_cell_path] = STATE(1310), + [sym_path] = STATE(827), + [sym_comment] = STATE(725), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [sym__newline] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_err_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_GT_PIPE] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), + [anon_sym_GT2] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_STAR2] = ACTIONS(1874), + [anon_sym_and2] = ACTIONS(1872), + [anon_sym_xor2] = ACTIONS(1872), + [anon_sym_or2] = ACTIONS(1872), + [anon_sym_not_DASHin2] = ACTIONS(1872), + [anon_sym_has2] = ACTIONS(1872), + [anon_sym_not_DASHhas2] = ACTIONS(1872), + [anon_sym_starts_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), + [anon_sym_ends_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), + [anon_sym_EQ_EQ2] = ACTIONS(1872), + [anon_sym_BANG_EQ2] = ACTIONS(1872), + [anon_sym_LT2] = ACTIONS(1874), + [anon_sym_LT_EQ2] = ACTIONS(1872), + [anon_sym_GT_EQ2] = ACTIONS(1872), + [anon_sym_EQ_TILDE2] = ACTIONS(1872), + [anon_sym_BANG_TILDE2] = ACTIONS(1872), + [anon_sym_like2] = ACTIONS(1872), + [anon_sym_not_DASHlike2] = ACTIONS(1872), + [anon_sym_STAR_STAR2] = ACTIONS(1872), + [anon_sym_PLUS_PLUS2] = ACTIONS(1872), + [anon_sym_SLASH2] = ACTIONS(1874), + [anon_sym_mod2] = ACTIONS(1872), + [anon_sym_SLASH_SLASH2] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1874), + [anon_sym_bit_DASHshl2] = ACTIONS(1872), + [anon_sym_bit_DASHshr2] = ACTIONS(1872), + [anon_sym_bit_DASHand2] = ACTIONS(1872), + [anon_sym_bit_DASHxor2] = ACTIONS(1872), + [anon_sym_bit_DASHor2] = ACTIONS(1872), + [anon_sym_DOT2] = ACTIONS(2251), + [anon_sym_err_GT] = ACTIONS(1874), + [anon_sym_out_GT] = ACTIONS(1874), + [anon_sym_e_GT] = ACTIONS(1874), + [anon_sym_o_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT] = ACTIONS(1874), + [anon_sym_err_GT_GT] = ACTIONS(1872), + [anon_sym_out_GT_GT] = ACTIONS(1872), + [anon_sym_e_GT_GT] = ACTIONS(1872), + [anon_sym_o_GT_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(726)] = { + [sym_comment] = STATE(726), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(2253), + [aux_sym__immediate_decimal_token5] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(727)] = { + [sym_cell_path] = STATE(1312), + [sym_path] = STATE(827), + [sym_comment] = STATE(727), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [sym__newline] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_err_GT_PIPE] = ACTIONS(1876), + [anon_sym_out_GT_PIPE] = ACTIONS(1876), + [anon_sym_e_GT_PIPE] = ACTIONS(1876), + [anon_sym_o_GT_PIPE] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1876), + [anon_sym_GT2] = ACTIONS(1878), + [anon_sym_DASH2] = ACTIONS(1876), + [anon_sym_STAR2] = ACTIONS(1878), + [anon_sym_and2] = ACTIONS(1876), + [anon_sym_xor2] = ACTIONS(1876), + [anon_sym_or2] = ACTIONS(1876), + [anon_sym_not_DASHin2] = ACTIONS(1876), + [anon_sym_has2] = ACTIONS(1876), + [anon_sym_not_DASHhas2] = ACTIONS(1876), + [anon_sym_starts_DASHwith2] = ACTIONS(1876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1876), + [anon_sym_ends_DASHwith2] = ACTIONS(1876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1876), + [anon_sym_EQ_EQ2] = ACTIONS(1876), + [anon_sym_BANG_EQ2] = ACTIONS(1876), + [anon_sym_LT2] = ACTIONS(1878), + [anon_sym_LT_EQ2] = ACTIONS(1876), + [anon_sym_GT_EQ2] = ACTIONS(1876), + [anon_sym_EQ_TILDE2] = ACTIONS(1876), + [anon_sym_BANG_TILDE2] = ACTIONS(1876), + [anon_sym_like2] = ACTIONS(1876), + [anon_sym_not_DASHlike2] = ACTIONS(1876), + [anon_sym_STAR_STAR2] = ACTIONS(1876), + [anon_sym_PLUS_PLUS2] = ACTIONS(1876), + [anon_sym_SLASH2] = ACTIONS(1878), + [anon_sym_mod2] = ACTIONS(1876), + [anon_sym_SLASH_SLASH2] = ACTIONS(1876), + [anon_sym_PLUS2] = ACTIONS(1878), + [anon_sym_bit_DASHshl2] = ACTIONS(1876), + [anon_sym_bit_DASHshr2] = ACTIONS(1876), + [anon_sym_bit_DASHand2] = ACTIONS(1876), + [anon_sym_bit_DASHxor2] = ACTIONS(1876), + [anon_sym_bit_DASHor2] = ACTIONS(1876), + [anon_sym_DOT2] = ACTIONS(2251), + [anon_sym_err_GT] = ACTIONS(1878), + [anon_sym_out_GT] = ACTIONS(1878), + [anon_sym_e_GT] = ACTIONS(1878), + [anon_sym_o_GT] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT] = ACTIONS(1878), + [anon_sym_err_GT_GT] = ACTIONS(1876), + [anon_sym_out_GT_GT] = ACTIONS(1876), + [anon_sym_e_GT_GT] = ACTIONS(1876), + [anon_sym_o_GT_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(728)] = { + [aux_sym__repeat_newline] = STATE(1054), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(728), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(729)] = { + [aux_sym__repeat_newline] = STATE(1055), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(729), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(730)] = { + [aux_sym__repeat_newline] = STATE(928), + [aux_sym__pipe_separator] = STATE(753), + [sym_comment] = STATE(730), + [anon_sym_export] = ACTIONS(2255), + [anon_sym_alias] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_mut] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [aux_sym_cmd_identifier_token1] = ACTIONS(2255), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_export_DASHenv] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_module] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_catch] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_in] = ACTIONS(2255), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_null] = ACTIONS(2257), + [aux_sym_cmd_identifier_token3] = ACTIONS(2257), + [aux_sym_cmd_identifier_token4] = ACTIONS(2257), + [aux_sym_cmd_identifier_token5] = ACTIONS(2257), + [sym__newline] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_err_GT_PIPE] = ACTIONS(2261), + [anon_sym_out_GT_PIPE] = ACTIONS(2261), + [anon_sym_e_GT_PIPE] = ACTIONS(2261), + [anon_sym_o_GT_PIPE] = ACTIONS(2261), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2261), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2261), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2261), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_DASH2] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_DOT_DOT] = ACTIONS(2255), + [anon_sym_where] = ACTIONS(2257), + [aux_sym_expr_unary_token1] = ACTIONS(2257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2257), + [anon_sym_DOT_DOT_LT] = ACTIONS(2257), + [aux_sym__val_number_decimal_token1] = ACTIONS(2255), + [aux_sym__val_number_decimal_token2] = ACTIONS(2257), + [aux_sym__val_number_decimal_token3] = ACTIONS(2257), + [aux_sym__val_number_decimal_token4] = ACTIONS(2257), + [aux_sym__val_number_token1] = ACTIONS(2257), + [aux_sym__val_number_token2] = ACTIONS(2257), + [aux_sym__val_number_token3] = ACTIONS(2257), + [anon_sym_0b] = ACTIONS(2255), + [anon_sym_0o] = ACTIONS(2255), + [anon_sym_0x] = ACTIONS(2255), + [sym_val_date] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_BQUOTE] = ACTIONS(2257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2257), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2257), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2257), + }, + [STATE(731)] = { + [aux_sym__repeat_newline] = STATE(1059), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(731), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(732)] = { + [aux_sym__repeat_newline] = STATE(1060), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(732), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(733)] = { + [aux_sym__repeat_newline] = STATE(1062), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(733), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(734)] = { + [aux_sym__repeat_newline] = STATE(1063), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(734), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(735)] = { + [aux_sym__repeat_newline] = STATE(1064), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(735), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(736)] = { + [aux_sym__repeat_newline] = STATE(1065), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(736), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(737)] = { + [aux_sym__repeat_newline] = STATE(1066), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(737), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(738)] = { + [sym_cell_path] = STATE(1324), + [sym_path] = STATE(827), + [sym_comment] = STATE(738), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [sym__newline] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_err_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_GT_PIPE] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), + [anon_sym_GT2] = ACTIONS(1851), + [anon_sym_DASH2] = ACTIONS(1848), + [anon_sym_STAR2] = ACTIONS(1851), + [anon_sym_and2] = ACTIONS(1848), + [anon_sym_xor2] = ACTIONS(1848), + [anon_sym_or2] = ACTIONS(1848), + [anon_sym_not_DASHin2] = ACTIONS(1848), + [anon_sym_has2] = ACTIONS(1848), + [anon_sym_not_DASHhas2] = ACTIONS(1848), + [anon_sym_starts_DASHwith2] = ACTIONS(1848), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1848), + [anon_sym_ends_DASHwith2] = ACTIONS(1848), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1848), + [anon_sym_EQ_EQ2] = ACTIONS(1848), + [anon_sym_BANG_EQ2] = ACTIONS(1848), + [anon_sym_LT2] = ACTIONS(1851), + [anon_sym_LT_EQ2] = ACTIONS(1848), + [anon_sym_GT_EQ2] = ACTIONS(1848), + [anon_sym_EQ_TILDE2] = ACTIONS(1848), + [anon_sym_BANG_TILDE2] = ACTIONS(1848), + [anon_sym_like2] = ACTIONS(1848), + [anon_sym_not_DASHlike2] = ACTIONS(1848), + [anon_sym_STAR_STAR2] = ACTIONS(1848), + [anon_sym_PLUS_PLUS2] = ACTIONS(1848), + [anon_sym_SLASH2] = ACTIONS(1851), + [anon_sym_mod2] = ACTIONS(1848), + [anon_sym_SLASH_SLASH2] = ACTIONS(1848), + [anon_sym_PLUS2] = ACTIONS(1851), + [anon_sym_bit_DASHshl2] = ACTIONS(1848), + [anon_sym_bit_DASHshr2] = ACTIONS(1848), + [anon_sym_bit_DASHand2] = ACTIONS(1848), + [anon_sym_bit_DASHxor2] = ACTIONS(1848), + [anon_sym_bit_DASHor2] = ACTIONS(1848), + [anon_sym_DOT2] = ACTIONS(2251), + [anon_sym_err_GT] = ACTIONS(1851), + [anon_sym_out_GT] = ACTIONS(1851), + [anon_sym_e_GT] = ACTIONS(1851), + [anon_sym_o_GT] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT] = ACTIONS(1851), + [anon_sym_err_GT_GT] = ACTIONS(1848), + [anon_sym_out_GT_GT] = ACTIONS(1848), + [anon_sym_e_GT_GT] = ACTIONS(1848), + [anon_sym_o_GT_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(739)] = { + [sym_comment] = STATE(739), + [anon_sym_in] = ACTIONS(2118), [sym__newline] = ACTIONS(2120), [anon_sym_SEMI] = ACTIONS(2120), [anon_sym_PIPE] = ACTIONS(2120), @@ -102183,51 +103548,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2118), [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_EQ_GT] = ACTIONS(2120), [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_COLON2] = ACTIONS(1708), + [anon_sym_err_GT] = ACTIONS(2124), + [anon_sym_out_GT] = ACTIONS(2124), + [anon_sym_e_GT] = ACTIONS(2124), + [anon_sym_o_GT] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT] = ACTIONS(2124), [anon_sym_err_GT_GT] = ACTIONS(2120), [anon_sym_out_GT_GT] = ACTIONS(2120), [anon_sym_e_GT_GT] = ACTIONS(2120), @@ -102238,11348 +103604,9878 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(724)] = { - [sym_comment] = STATE(724), - [anon_sym_if] = ACTIONS(2202), - [anon_sym_in] = ACTIONS(2202), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2204), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_EQ_GT] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2204), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2204), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_like2] = ACTIONS(2202), - [anon_sym_not_DASHlike2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2204), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2204), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_err_GT] = ACTIONS(2204), - [anon_sym_out_GT] = ACTIONS(2204), - [anon_sym_e_GT] = ACTIONS(2204), - [anon_sym_o_GT] = ACTIONS(2204), - [anon_sym_err_PLUSout_GT] = ACTIONS(2204), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2204), - [anon_sym_o_PLUSe_GT] = ACTIONS(2204), - [anon_sym_e_PLUSo_GT] = ACTIONS(2204), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), + [STATE(740)] = { + [aux_sym__repeat_newline] = STATE(982), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(740), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(725)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1288), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(974), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(725), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(741)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4649), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(741), + [aux_sym_record_body_repeat1] = STATE(749), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [STATE(742)] = { + [sym_comment] = STATE(742), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [aux_sym__immediate_decimal_token1] = ACTIONS(2267), + [aux_sym__immediate_decimal_token5] = ACTIONS(2269), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(743)] = { + [aux_sym__repeat_newline] = STATE(983), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(743), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(744)] = { + [sym_comment] = STATE(744), + [ts_builtin_sym_end] = ACTIONS(1531), + [anon_sym_in] = ACTIONS(1531), + [sym__newline] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_err_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_GT_PIPE] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1531), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1531), + [anon_sym_xor2] = ACTIONS(1531), + [anon_sym_or2] = ACTIONS(1531), + [anon_sym_not_DASHin2] = ACTIONS(1531), + [anon_sym_has2] = ACTIONS(1531), + [anon_sym_not_DASHhas2] = ACTIONS(1531), + [anon_sym_starts_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), + [anon_sym_ends_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), + [anon_sym_EQ_EQ2] = ACTIONS(1531), + [anon_sym_BANG_EQ2] = ACTIONS(1531), + [anon_sym_LT2] = ACTIONS(1529), + [anon_sym_LT_EQ2] = ACTIONS(1531), + [anon_sym_GT_EQ2] = ACTIONS(1531), + [anon_sym_EQ_TILDE2] = ACTIONS(1531), + [anon_sym_BANG_TILDE2] = ACTIONS(1531), + [anon_sym_like2] = ACTIONS(1531), + [anon_sym_not_DASHlike2] = ACTIONS(1531), + [anon_sym_STAR_STAR2] = ACTIONS(1531), + [anon_sym_PLUS_PLUS2] = ACTIONS(1531), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1531), + [anon_sym_SLASH_SLASH2] = ACTIONS(1531), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_bit_DASHshl2] = ACTIONS(1531), + [anon_sym_bit_DASHshr2] = ACTIONS(1531), + [anon_sym_bit_DASHand2] = ACTIONS(1531), + [anon_sym_bit_DASHxor2] = ACTIONS(1531), + [anon_sym_bit_DASHor2] = ACTIONS(1531), + [anon_sym_DOT_DOT2] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1529), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [anon_sym_err_GT_GT] = ACTIONS(1531), + [anon_sym_out_GT_GT] = ACTIONS(1531), + [anon_sym_e_GT_GT] = ACTIONS(1531), + [anon_sym_o_GT_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(745)] = { + [sym_cell_path] = STATE(1266), + [sym_path] = STATE(827), + [sym_comment] = STATE(745), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1838), + [anon_sym_in] = ACTIONS(1838), + [sym__newline] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_err_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_GT_PIPE] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), + [anon_sym_GT2] = ACTIONS(1840), + [anon_sym_DASH2] = ACTIONS(1838), + [anon_sym_STAR2] = ACTIONS(1840), + [anon_sym_and2] = ACTIONS(1838), + [anon_sym_xor2] = ACTIONS(1838), + [anon_sym_or2] = ACTIONS(1838), + [anon_sym_not_DASHin2] = ACTIONS(1838), + [anon_sym_has2] = ACTIONS(1838), + [anon_sym_not_DASHhas2] = ACTIONS(1838), + [anon_sym_starts_DASHwith2] = ACTIONS(1838), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1838), + [anon_sym_ends_DASHwith2] = ACTIONS(1838), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1838), + [anon_sym_EQ_EQ2] = ACTIONS(1838), + [anon_sym_BANG_EQ2] = ACTIONS(1838), + [anon_sym_LT2] = ACTIONS(1840), + [anon_sym_LT_EQ2] = ACTIONS(1838), + [anon_sym_GT_EQ2] = ACTIONS(1838), + [anon_sym_EQ_TILDE2] = ACTIONS(1838), + [anon_sym_BANG_TILDE2] = ACTIONS(1838), + [anon_sym_like2] = ACTIONS(1838), + [anon_sym_not_DASHlike2] = ACTIONS(1838), + [anon_sym_STAR_STAR2] = ACTIONS(1838), + [anon_sym_PLUS_PLUS2] = ACTIONS(1838), + [anon_sym_SLASH2] = ACTIONS(1840), + [anon_sym_mod2] = ACTIONS(1838), + [anon_sym_SLASH_SLASH2] = ACTIONS(1838), + [anon_sym_PLUS2] = ACTIONS(1840), + [anon_sym_bit_DASHshl2] = ACTIONS(1838), + [anon_sym_bit_DASHshr2] = ACTIONS(1838), + [anon_sym_bit_DASHand2] = ACTIONS(1838), + [anon_sym_bit_DASHxor2] = ACTIONS(1838), + [anon_sym_bit_DASHor2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(2251), + [anon_sym_err_GT] = ACTIONS(1840), + [anon_sym_out_GT] = ACTIONS(1840), + [anon_sym_e_GT] = ACTIONS(1840), + [anon_sym_o_GT] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT] = ACTIONS(1840), + [anon_sym_err_GT_GT] = ACTIONS(1838), + [anon_sym_out_GT_GT] = ACTIONS(1838), + [anon_sym_e_GT_GT] = ACTIONS(1838), + [anon_sym_o_GT_GT] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(746)] = { + [sym_cell_path] = STATE(1320), + [sym_path] = STATE(827), + [sym_comment] = STATE(746), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1844), + [anon_sym_in] = ACTIONS(1844), + [sym__newline] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_err_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_GT_PIPE] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1844), + [anon_sym_GT2] = ACTIONS(1846), + [anon_sym_DASH2] = ACTIONS(1844), + [anon_sym_STAR2] = ACTIONS(1846), + [anon_sym_and2] = ACTIONS(1844), + [anon_sym_xor2] = ACTIONS(1844), + [anon_sym_or2] = ACTIONS(1844), + [anon_sym_not_DASHin2] = ACTIONS(1844), + [anon_sym_has2] = ACTIONS(1844), + [anon_sym_not_DASHhas2] = ACTIONS(1844), + [anon_sym_starts_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1844), + [anon_sym_ends_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1844), + [anon_sym_EQ_EQ2] = ACTIONS(1844), + [anon_sym_BANG_EQ2] = ACTIONS(1844), + [anon_sym_LT2] = ACTIONS(1846), + [anon_sym_LT_EQ2] = ACTIONS(1844), + [anon_sym_GT_EQ2] = ACTIONS(1844), + [anon_sym_EQ_TILDE2] = ACTIONS(1844), + [anon_sym_BANG_TILDE2] = ACTIONS(1844), + [anon_sym_like2] = ACTIONS(1844), + [anon_sym_not_DASHlike2] = ACTIONS(1844), + [anon_sym_STAR_STAR2] = ACTIONS(1844), + [anon_sym_PLUS_PLUS2] = ACTIONS(1844), + [anon_sym_SLASH2] = ACTIONS(1846), + [anon_sym_mod2] = ACTIONS(1844), + [anon_sym_SLASH_SLASH2] = ACTIONS(1844), + [anon_sym_PLUS2] = ACTIONS(1846), + [anon_sym_bit_DASHshl2] = ACTIONS(1844), + [anon_sym_bit_DASHshr2] = ACTIONS(1844), + [anon_sym_bit_DASHand2] = ACTIONS(1844), + [anon_sym_bit_DASHxor2] = ACTIONS(1844), + [anon_sym_bit_DASHor2] = ACTIONS(1844), + [anon_sym_DOT2] = ACTIONS(2251), + [anon_sym_err_GT] = ACTIONS(1846), + [anon_sym_out_GT] = ACTIONS(1846), + [anon_sym_e_GT] = ACTIONS(1846), + [anon_sym_o_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT] = ACTIONS(1846), + [anon_sym_err_GT_GT] = ACTIONS(1844), + [anon_sym_out_GT_GT] = ACTIONS(1844), + [anon_sym_e_GT_GT] = ACTIONS(1844), + [anon_sym_o_GT_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(747)] = { + [sym_comment] = STATE(747), + [ts_builtin_sym_end] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(2271), + [aux_sym__immediate_decimal_token5] = ACTIONS(2273), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(748)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4604), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(748), + [aux_sym_record_body_repeat1] = STATE(749), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [STATE(749)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4756), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(749), + [aux_sym_record_body_repeat1] = STATE(749), + [anon_sym_export] = ACTIONS(2275), + [anon_sym_alias] = ACTIONS(2278), + [anon_sym_let] = ACTIONS(2278), + [anon_sym_mut] = ACTIONS(2278), + [anon_sym_const] = ACTIONS(2278), + [aux_sym_cmd_identifier_token1] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2278), + [anon_sym_use] = ACTIONS(2278), + [anon_sym_export_DASHenv] = ACTIONS(2278), + [anon_sym_extern] = ACTIONS(2278), + [anon_sym_module] = ACTIONS(2278), + [anon_sym_for] = ACTIONS(2278), + [anon_sym_loop] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2278), + [anon_sym_if] = ACTIONS(2278), + [anon_sym_else] = ACTIONS(2278), + [anon_sym_try] = ACTIONS(2278), + [anon_sym_catch] = ACTIONS(2278), + [anon_sym_match] = ACTIONS(2278), + [anon_sym_in] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2284), + [anon_sym_false] = ACTIONS(2284), + [anon_sym_null] = ACTIONS(2284), + [aux_sym_cmd_identifier_token3] = ACTIONS(2287), + [aux_sym_cmd_identifier_token4] = ACTIONS(2287), + [aux_sym_cmd_identifier_token5] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_DASH2] = ACTIONS(2296), + [anon_sym_PLUS2] = ACTIONS(2296), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2299), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2302), + [aux_sym__val_number_decimal_token1] = ACTIONS(2305), + [aux_sym__val_number_decimal_token2] = ACTIONS(2308), + [aux_sym__val_number_decimal_token3] = ACTIONS(2311), + [aux_sym__val_number_decimal_token4] = ACTIONS(2311), + [aux_sym__val_number_token1] = ACTIONS(2314), + [aux_sym__val_number_token2] = ACTIONS(2314), + [aux_sym__val_number_token3] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_BQUOTE] = ACTIONS(2323), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2326), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2329), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2335), + }, + [STATE(750)] = { + [sym_comment] = STATE(750), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(2164), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(751)] = { + [sym_comment] = STATE(751), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [aux_sym__immediate_decimal_token5] = ACTIONS(2338), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(752)] = { + [aux_sym__repeat_newline] = STATE(988), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(752), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(753)] = { + [aux_sym__repeat_newline] = STATE(3433), + [aux_sym__pipe_separator] = STATE(753), + [sym_comment] = STATE(753), + [anon_sym_export] = ACTIONS(2344), + [anon_sym_alias] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [aux_sym_cmd_identifier_token1] = ACTIONS(2344), + [anon_sym_def] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_export_DASHenv] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_module] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_try] = ACTIONS(2346), + [anon_sym_catch] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2346), + [aux_sym_cmd_identifier_token3] = ACTIONS(2346), + [aux_sym_cmd_identifier_token4] = ACTIONS(2346), + [aux_sym_cmd_identifier_token5] = ACTIONS(2346), + [sym__newline] = ACTIONS(2348), + [anon_sym_PIPE] = ACTIONS(2351), + [anon_sym_err_GT_PIPE] = ACTIONS(2351), + [anon_sym_out_GT_PIPE] = ACTIONS(2351), + [anon_sym_e_GT_PIPE] = ACTIONS(2351), + [anon_sym_o_GT_PIPE] = ACTIONS(2351), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2351), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2351), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2351), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2344), + [anon_sym_DASH2] = ACTIONS(2344), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_DOT_DOT] = ACTIONS(2344), + [anon_sym_where] = ACTIONS(2346), + [aux_sym_expr_unary_token1] = ACTIONS(2346), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2346), + [anon_sym_DOT_DOT_LT] = ACTIONS(2346), + [aux_sym__val_number_decimal_token1] = ACTIONS(2344), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), + [anon_sym_0b] = ACTIONS(2344), + [anon_sym_0o] = ACTIONS(2344), + [anon_sym_0x] = ACTIONS(2344), + [sym_val_date] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_BQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2346), + [anon_sym_CARET] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2346), + }, + [STATE(754)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1678), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1036), + [sym__unquoted_with_expr] = STATE(1280), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(754), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(726)] = { - [sym_comment] = STATE(726), - [anon_sym_if] = ACTIONS(2206), - [anon_sym_in] = ACTIONS(2206), - [sym__newline] = ACTIONS(2206), - [anon_sym_SEMI] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_err_GT_PIPE] = ACTIONS(2206), - [anon_sym_out_GT_PIPE] = ACTIONS(2206), - [anon_sym_e_GT_PIPE] = ACTIONS(2206), - [anon_sym_o_GT_PIPE] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2206), - [anon_sym_RPAREN] = ACTIONS(2206), - [anon_sym_GT2] = ACTIONS(2208), - [anon_sym_DASH2] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_EQ_GT] = ACTIONS(2206), - [anon_sym_STAR2] = ACTIONS(2208), - [anon_sym_and2] = ACTIONS(2206), - [anon_sym_xor2] = ACTIONS(2206), - [anon_sym_or2] = ACTIONS(2206), - [anon_sym_not_DASHin2] = ACTIONS(2206), - [anon_sym_has2] = ACTIONS(2206), - [anon_sym_not_DASHhas2] = ACTIONS(2206), - [anon_sym_starts_DASHwith2] = ACTIONS(2206), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2206), - [anon_sym_ends_DASHwith2] = ACTIONS(2206), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2206), - [anon_sym_EQ_EQ2] = ACTIONS(2206), - [anon_sym_BANG_EQ2] = ACTIONS(2206), - [anon_sym_LT2] = ACTIONS(2208), - [anon_sym_LT_EQ2] = ACTIONS(2206), - [anon_sym_GT_EQ2] = ACTIONS(2206), - [anon_sym_EQ_TILDE2] = ACTIONS(2206), - [anon_sym_BANG_TILDE2] = ACTIONS(2206), - [anon_sym_like2] = ACTIONS(2206), - [anon_sym_not_DASHlike2] = ACTIONS(2206), - [anon_sym_STAR_STAR2] = ACTIONS(2206), - [anon_sym_PLUS_PLUS2] = ACTIONS(2206), - [anon_sym_SLASH2] = ACTIONS(2208), - [anon_sym_mod2] = ACTIONS(2206), - [anon_sym_SLASH_SLASH2] = ACTIONS(2206), - [anon_sym_PLUS2] = ACTIONS(2208), - [anon_sym_bit_DASHshl2] = ACTIONS(2206), - [anon_sym_bit_DASHshr2] = ACTIONS(2206), - [anon_sym_bit_DASHand2] = ACTIONS(2206), - [anon_sym_bit_DASHxor2] = ACTIONS(2206), - [anon_sym_bit_DASHor2] = ACTIONS(2206), - [anon_sym_err_GT] = ACTIONS(2208), - [anon_sym_out_GT] = ACTIONS(2208), - [anon_sym_e_GT] = ACTIONS(2208), - [anon_sym_o_GT] = ACTIONS(2208), - [anon_sym_err_PLUSout_GT] = ACTIONS(2208), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2208), - [anon_sym_o_PLUSe_GT] = ACTIONS(2208), - [anon_sym_e_PLUSo_GT] = ACTIONS(2208), - [anon_sym_err_GT_GT] = ACTIONS(2206), - [anon_sym_out_GT_GT] = ACTIONS(2206), - [anon_sym_e_GT_GT] = ACTIONS(2206), - [anon_sym_o_GT_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(727)] = { - [sym_comment] = STATE(727), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_in] = ACTIONS(2210), - [sym__newline] = ACTIONS(2210), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_err_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_GT_PIPE] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2210), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_GT2] = ACTIONS(2212), - [anon_sym_DASH2] = ACTIONS(2210), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_EQ_GT] = ACTIONS(2210), - [anon_sym_STAR2] = ACTIONS(2212), - [anon_sym_and2] = ACTIONS(2210), - [anon_sym_xor2] = ACTIONS(2210), - [anon_sym_or2] = ACTIONS(2210), - [anon_sym_not_DASHin2] = ACTIONS(2210), - [anon_sym_has2] = ACTIONS(2210), - [anon_sym_not_DASHhas2] = ACTIONS(2210), - [anon_sym_starts_DASHwith2] = ACTIONS(2210), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2210), - [anon_sym_ends_DASHwith2] = ACTIONS(2210), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2210), - [anon_sym_EQ_EQ2] = ACTIONS(2210), - [anon_sym_BANG_EQ2] = ACTIONS(2210), - [anon_sym_LT2] = ACTIONS(2212), - [anon_sym_LT_EQ2] = ACTIONS(2210), - [anon_sym_GT_EQ2] = ACTIONS(2210), - [anon_sym_EQ_TILDE2] = ACTIONS(2210), - [anon_sym_BANG_TILDE2] = ACTIONS(2210), - [anon_sym_like2] = ACTIONS(2210), - [anon_sym_not_DASHlike2] = ACTIONS(2210), - [anon_sym_STAR_STAR2] = ACTIONS(2210), - [anon_sym_PLUS_PLUS2] = ACTIONS(2210), - [anon_sym_SLASH2] = ACTIONS(2212), - [anon_sym_mod2] = ACTIONS(2210), - [anon_sym_SLASH_SLASH2] = ACTIONS(2210), - [anon_sym_PLUS2] = ACTIONS(2212), - [anon_sym_bit_DASHshl2] = ACTIONS(2210), - [anon_sym_bit_DASHshr2] = ACTIONS(2210), - [anon_sym_bit_DASHand2] = ACTIONS(2210), - [anon_sym_bit_DASHxor2] = ACTIONS(2210), - [anon_sym_bit_DASHor2] = ACTIONS(2210), - [anon_sym_err_GT] = ACTIONS(2212), - [anon_sym_out_GT] = ACTIONS(2212), - [anon_sym_e_GT] = ACTIONS(2212), - [anon_sym_o_GT] = ACTIONS(2212), - [anon_sym_err_PLUSout_GT] = ACTIONS(2212), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2212), - [anon_sym_o_PLUSe_GT] = ACTIONS(2212), - [anon_sym_e_PLUSo_GT] = ACTIONS(2212), - [anon_sym_err_GT_GT] = ACTIONS(2210), - [anon_sym_out_GT_GT] = ACTIONS(2210), - [anon_sym_e_GT_GT] = ACTIONS(2210), - [anon_sym_o_GT_GT] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(728)] = { - [sym_comment] = STATE(728), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_in] = ACTIONS(2214), - [sym__newline] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_RPAREN] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2216), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_EQ_GT] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2216), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_has2] = ACTIONS(2214), - [anon_sym_not_DASHhas2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2216), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_like2] = ACTIONS(2214), - [anon_sym_not_DASHlike2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2216), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2216), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_err_GT] = ACTIONS(2216), - [anon_sym_out_GT] = ACTIONS(2216), - [anon_sym_e_GT] = ACTIONS(2216), - [anon_sym_o_GT] = ACTIONS(2216), - [anon_sym_err_PLUSout_GT] = ACTIONS(2216), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2216), - [anon_sym_o_PLUSe_GT] = ACTIONS(2216), - [anon_sym_e_PLUSo_GT] = ACTIONS(2216), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(729)] = { - [sym_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [STATE(755)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1679), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1037), + [sym__unquoted_with_expr] = STATE(1283), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(755), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2360), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(730)] = { - [sym_comment] = STATE(730), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_in] = ACTIONS(2218), - [sym__newline] = ACTIONS(2218), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_err_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_GT_PIPE] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), - [anon_sym_RPAREN] = ACTIONS(2218), - [anon_sym_GT2] = ACTIONS(2220), - [anon_sym_DASH2] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(2218), - [anon_sym_STAR2] = ACTIONS(2220), - [anon_sym_and2] = ACTIONS(2218), - [anon_sym_xor2] = ACTIONS(2218), - [anon_sym_or2] = ACTIONS(2218), - [anon_sym_not_DASHin2] = ACTIONS(2218), - [anon_sym_has2] = ACTIONS(2218), - [anon_sym_not_DASHhas2] = ACTIONS(2218), - [anon_sym_starts_DASHwith2] = ACTIONS(2218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), - [anon_sym_ends_DASHwith2] = ACTIONS(2218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), - [anon_sym_EQ_EQ2] = ACTIONS(2218), - [anon_sym_BANG_EQ2] = ACTIONS(2218), - [anon_sym_LT2] = ACTIONS(2220), - [anon_sym_LT_EQ2] = ACTIONS(2218), - [anon_sym_GT_EQ2] = ACTIONS(2218), - [anon_sym_EQ_TILDE2] = ACTIONS(2218), - [anon_sym_BANG_TILDE2] = ACTIONS(2218), - [anon_sym_like2] = ACTIONS(2218), - [anon_sym_not_DASHlike2] = ACTIONS(2218), - [anon_sym_STAR_STAR2] = ACTIONS(2218), - [anon_sym_PLUS_PLUS2] = ACTIONS(2218), - [anon_sym_SLASH2] = ACTIONS(2220), - [anon_sym_mod2] = ACTIONS(2218), - [anon_sym_SLASH_SLASH2] = ACTIONS(2218), - [anon_sym_PLUS2] = ACTIONS(2220), - [anon_sym_bit_DASHshl2] = ACTIONS(2218), - [anon_sym_bit_DASHshr2] = ACTIONS(2218), - [anon_sym_bit_DASHand2] = ACTIONS(2218), - [anon_sym_bit_DASHxor2] = ACTIONS(2218), - [anon_sym_bit_DASHor2] = ACTIONS(2218), - [anon_sym_err_GT] = ACTIONS(2220), - [anon_sym_out_GT] = ACTIONS(2220), - [anon_sym_e_GT] = ACTIONS(2220), - [anon_sym_o_GT] = ACTIONS(2220), - [anon_sym_err_PLUSout_GT] = ACTIONS(2220), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), - [anon_sym_o_PLUSe_GT] = ACTIONS(2220), - [anon_sym_e_PLUSo_GT] = ACTIONS(2220), - [anon_sym_err_GT_GT] = ACTIONS(2218), - [anon_sym_out_GT_GT] = ACTIONS(2218), - [anon_sym_e_GT_GT] = ACTIONS(2218), - [anon_sym_o_GT_GT] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [STATE(756)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1680), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1038), + [sym__unquoted_with_expr] = STATE(1290), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(756), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2360), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(731)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1267), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1307), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(731), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(757)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1681), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1039), + [sym__unquoted_with_expr] = STATE(1298), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(757), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(732)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1278), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1071), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(732), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(758)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1682), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1040), + [sym__unquoted_with_expr] = STATE(1318), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(758), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(733)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1308), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1127), + [STATE(759)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1683), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1041), [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(733), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(759), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(734)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1283), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(972), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(734), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(760)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1684), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1042), + [sym__unquoted_with_expr] = STATE(1325), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(760), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(735)] = { - [sym_comment] = STATE(735), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2222), - [sym__newline] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2224), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_EQ_GT] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2224), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_has2] = ACTIONS(2222), - [anon_sym_not_DASHhas2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2224), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_like2] = ACTIONS(2222), - [anon_sym_not_DASHlike2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2224), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2224), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2224), - [anon_sym_out_GT] = ACTIONS(2224), - [anon_sym_e_GT] = ACTIONS(2224), - [anon_sym_o_GT] = ACTIONS(2224), - [anon_sym_err_PLUSout_GT] = ACTIONS(2224), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2224), - [anon_sym_o_PLUSe_GT] = ACTIONS(2224), - [anon_sym_e_PLUSo_GT] = ACTIONS(2224), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(736)] = { - [sym_comment] = STATE(736), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2226), - [sym__newline] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_err_GT_PIPE] = ACTIONS(2226), - [anon_sym_out_GT_PIPE] = ACTIONS(2226), - [anon_sym_e_GT_PIPE] = ACTIONS(2226), - [anon_sym_o_GT_PIPE] = ACTIONS(2226), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2226), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2226), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2226), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2226), - [anon_sym_RPAREN] = ACTIONS(2226), - [anon_sym_GT2] = ACTIONS(2228), - [anon_sym_DASH2] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_EQ_GT] = ACTIONS(2226), - [anon_sym_STAR2] = ACTIONS(2228), - [anon_sym_and2] = ACTIONS(2226), - [anon_sym_xor2] = ACTIONS(2226), - [anon_sym_or2] = ACTIONS(2226), - [anon_sym_not_DASHin2] = ACTIONS(2226), - [anon_sym_has2] = ACTIONS(2226), - [anon_sym_not_DASHhas2] = ACTIONS(2226), - [anon_sym_starts_DASHwith2] = ACTIONS(2226), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2226), - [anon_sym_ends_DASHwith2] = ACTIONS(2226), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2226), - [anon_sym_EQ_EQ2] = ACTIONS(2226), - [anon_sym_BANG_EQ2] = ACTIONS(2226), - [anon_sym_LT2] = ACTIONS(2228), - [anon_sym_LT_EQ2] = ACTIONS(2226), - [anon_sym_GT_EQ2] = ACTIONS(2226), - [anon_sym_EQ_TILDE2] = ACTIONS(2226), - [anon_sym_BANG_TILDE2] = ACTIONS(2226), - [anon_sym_like2] = ACTIONS(2226), - [anon_sym_not_DASHlike2] = ACTIONS(2226), - [anon_sym_STAR_STAR2] = ACTIONS(2226), - [anon_sym_PLUS_PLUS2] = ACTIONS(2226), - [anon_sym_SLASH2] = ACTIONS(2228), - [anon_sym_mod2] = ACTIONS(2226), - [anon_sym_SLASH_SLASH2] = ACTIONS(2226), - [anon_sym_PLUS2] = ACTIONS(2228), - [anon_sym_bit_DASHshl2] = ACTIONS(2226), - [anon_sym_bit_DASHshr2] = ACTIONS(2226), - [anon_sym_bit_DASHand2] = ACTIONS(2226), - [anon_sym_bit_DASHxor2] = ACTIONS(2226), - [anon_sym_bit_DASHor2] = ACTIONS(2226), - [anon_sym_err_GT] = ACTIONS(2228), - [anon_sym_out_GT] = ACTIONS(2228), - [anon_sym_e_GT] = ACTIONS(2228), - [anon_sym_o_GT] = ACTIONS(2228), - [anon_sym_err_PLUSout_GT] = ACTIONS(2228), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2228), - [anon_sym_o_PLUSe_GT] = ACTIONS(2228), - [anon_sym_e_PLUSo_GT] = ACTIONS(2228), - [anon_sym_err_GT_GT] = ACTIONS(2226), - [anon_sym_out_GT_GT] = ACTIONS(2226), - [anon_sym_e_GT_GT] = ACTIONS(2226), - [anon_sym_o_GT_GT] = ACTIONS(2226), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2226), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2226), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2226), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(737)] = { - [sym_comment] = STATE(737), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [sym__newline] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_err_GT_PIPE] = ACTIONS(2230), - [anon_sym_out_GT_PIPE] = ACTIONS(2230), - [anon_sym_e_GT_PIPE] = ACTIONS(2230), - [anon_sym_o_GT_PIPE] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2230), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_GT2] = ACTIONS(2232), - [anon_sym_DASH2] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_STAR2] = ACTIONS(2232), - [anon_sym_and2] = ACTIONS(2230), - [anon_sym_xor2] = ACTIONS(2230), - [anon_sym_or2] = ACTIONS(2230), - [anon_sym_not_DASHin2] = ACTIONS(2230), - [anon_sym_has2] = ACTIONS(2230), - [anon_sym_not_DASHhas2] = ACTIONS(2230), - [anon_sym_starts_DASHwith2] = ACTIONS(2230), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2230), - [anon_sym_ends_DASHwith2] = ACTIONS(2230), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2230), - [anon_sym_EQ_EQ2] = ACTIONS(2230), - [anon_sym_BANG_EQ2] = ACTIONS(2230), - [anon_sym_LT2] = ACTIONS(2232), - [anon_sym_LT_EQ2] = ACTIONS(2230), - [anon_sym_GT_EQ2] = ACTIONS(2230), - [anon_sym_EQ_TILDE2] = ACTIONS(2230), - [anon_sym_BANG_TILDE2] = ACTIONS(2230), - [anon_sym_like2] = ACTIONS(2230), - [anon_sym_not_DASHlike2] = ACTIONS(2230), - [anon_sym_STAR_STAR2] = ACTIONS(2230), - [anon_sym_PLUS_PLUS2] = ACTIONS(2230), - [anon_sym_SLASH2] = ACTIONS(2232), - [anon_sym_mod2] = ACTIONS(2230), - [anon_sym_SLASH_SLASH2] = ACTIONS(2230), - [anon_sym_PLUS2] = ACTIONS(2232), - [anon_sym_bit_DASHshl2] = ACTIONS(2230), - [anon_sym_bit_DASHshr2] = ACTIONS(2230), - [anon_sym_bit_DASHand2] = ACTIONS(2230), - [anon_sym_bit_DASHxor2] = ACTIONS(2230), - [anon_sym_bit_DASHor2] = ACTIONS(2230), - [anon_sym_err_GT] = ACTIONS(2232), - [anon_sym_out_GT] = ACTIONS(2232), - [anon_sym_e_GT] = ACTIONS(2232), - [anon_sym_o_GT] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT] = ACTIONS(2232), - [anon_sym_err_GT_GT] = ACTIONS(2230), - [anon_sym_out_GT_GT] = ACTIONS(2230), - [anon_sym_e_GT_GT] = ACTIONS(2230), - [anon_sym_o_GT_GT] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(738)] = { - [sym_comment] = STATE(738), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_in] = ACTIONS(2234), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_RPAREN] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2236), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_EQ_GT] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2236), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_has2] = ACTIONS(2234), - [anon_sym_not_DASHhas2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2236), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_like2] = ACTIONS(2234), - [anon_sym_not_DASHlike2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2236), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2236), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_err_GT] = ACTIONS(2236), - [anon_sym_out_GT] = ACTIONS(2236), - [anon_sym_e_GT] = ACTIONS(2236), - [anon_sym_o_GT] = ACTIONS(2236), - [anon_sym_err_PLUSout_GT] = ACTIONS(2236), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2236), - [anon_sym_o_PLUSe_GT] = ACTIONS(2236), - [anon_sym_e_PLUSo_GT] = ACTIONS(2236), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(739)] = { - [sym_comment] = STATE(739), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [sym__newline] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_err_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_GT_PIPE] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), - [anon_sym_RPAREN] = ACTIONS(2238), - [anon_sym_GT2] = ACTIONS(2240), - [anon_sym_DASH2] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_EQ_GT] = ACTIONS(2238), - [anon_sym_STAR2] = ACTIONS(2240), - [anon_sym_and2] = ACTIONS(2238), - [anon_sym_xor2] = ACTIONS(2238), - [anon_sym_or2] = ACTIONS(2238), - [anon_sym_not_DASHin2] = ACTIONS(2238), - [anon_sym_has2] = ACTIONS(2238), - [anon_sym_not_DASHhas2] = ACTIONS(2238), - [anon_sym_starts_DASHwith2] = ACTIONS(2238), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2238), - [anon_sym_ends_DASHwith2] = ACTIONS(2238), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2238), - [anon_sym_EQ_EQ2] = ACTIONS(2238), - [anon_sym_BANG_EQ2] = ACTIONS(2238), - [anon_sym_LT2] = ACTIONS(2240), - [anon_sym_LT_EQ2] = ACTIONS(2238), - [anon_sym_GT_EQ2] = ACTIONS(2238), - [anon_sym_EQ_TILDE2] = ACTIONS(2238), - [anon_sym_BANG_TILDE2] = ACTIONS(2238), - [anon_sym_like2] = ACTIONS(2238), - [anon_sym_not_DASHlike2] = ACTIONS(2238), - [anon_sym_STAR_STAR2] = ACTIONS(2238), - [anon_sym_PLUS_PLUS2] = ACTIONS(2238), - [anon_sym_SLASH2] = ACTIONS(2240), - [anon_sym_mod2] = ACTIONS(2238), - [anon_sym_SLASH_SLASH2] = ACTIONS(2238), - [anon_sym_PLUS2] = ACTIONS(2240), - [anon_sym_bit_DASHshl2] = ACTIONS(2238), - [anon_sym_bit_DASHshr2] = ACTIONS(2238), - [anon_sym_bit_DASHand2] = ACTIONS(2238), - [anon_sym_bit_DASHxor2] = ACTIONS(2238), - [anon_sym_bit_DASHor2] = ACTIONS(2238), - [anon_sym_err_GT] = ACTIONS(2240), - [anon_sym_out_GT] = ACTIONS(2240), - [anon_sym_e_GT] = ACTIONS(2240), - [anon_sym_o_GT] = ACTIONS(2240), - [anon_sym_err_PLUSout_GT] = ACTIONS(2240), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), - [anon_sym_o_PLUSe_GT] = ACTIONS(2240), - [anon_sym_e_PLUSo_GT] = ACTIONS(2240), - [anon_sym_err_GT_GT] = ACTIONS(2238), - [anon_sym_out_GT_GT] = ACTIONS(2238), - [anon_sym_e_GT_GT] = ACTIONS(2238), - [anon_sym_o_GT_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(740)] = { - [sym_comment] = STATE(740), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [sym__newline] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_err_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_GT_PIPE] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_GT2] = ACTIONS(2244), - [anon_sym_DASH2] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_EQ_GT] = ACTIONS(2242), - [anon_sym_STAR2] = ACTIONS(2244), - [anon_sym_and2] = ACTIONS(2242), - [anon_sym_xor2] = ACTIONS(2242), - [anon_sym_or2] = ACTIONS(2242), - [anon_sym_not_DASHin2] = ACTIONS(2242), - [anon_sym_has2] = ACTIONS(2242), - [anon_sym_not_DASHhas2] = ACTIONS(2242), - [anon_sym_starts_DASHwith2] = ACTIONS(2242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2242), - [anon_sym_ends_DASHwith2] = ACTIONS(2242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2242), - [anon_sym_EQ_EQ2] = ACTIONS(2242), - [anon_sym_BANG_EQ2] = ACTIONS(2242), - [anon_sym_LT2] = ACTIONS(2244), - [anon_sym_LT_EQ2] = ACTIONS(2242), - [anon_sym_GT_EQ2] = ACTIONS(2242), - [anon_sym_EQ_TILDE2] = ACTIONS(2242), - [anon_sym_BANG_TILDE2] = ACTIONS(2242), - [anon_sym_like2] = ACTIONS(2242), - [anon_sym_not_DASHlike2] = ACTIONS(2242), - [anon_sym_STAR_STAR2] = ACTIONS(2242), - [anon_sym_PLUS_PLUS2] = ACTIONS(2242), - [anon_sym_SLASH2] = ACTIONS(2244), - [anon_sym_mod2] = ACTIONS(2242), - [anon_sym_SLASH_SLASH2] = ACTIONS(2242), - [anon_sym_PLUS2] = ACTIONS(2244), - [anon_sym_bit_DASHshl2] = ACTIONS(2242), - [anon_sym_bit_DASHshr2] = ACTIONS(2242), - [anon_sym_bit_DASHand2] = ACTIONS(2242), - [anon_sym_bit_DASHxor2] = ACTIONS(2242), - [anon_sym_bit_DASHor2] = ACTIONS(2242), - [anon_sym_err_GT] = ACTIONS(2244), - [anon_sym_out_GT] = ACTIONS(2244), - [anon_sym_e_GT] = ACTIONS(2244), - [anon_sym_o_GT] = ACTIONS(2244), - [anon_sym_err_PLUSout_GT] = ACTIONS(2244), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2244), - [anon_sym_o_PLUSe_GT] = ACTIONS(2244), - [anon_sym_e_PLUSo_GT] = ACTIONS(2244), - [anon_sym_err_GT_GT] = ACTIONS(2242), - [anon_sym_out_GT_GT] = ACTIONS(2242), - [anon_sym_e_GT_GT] = ACTIONS(2242), - [anon_sym_o_GT_GT] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), + [STATE(761)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1685), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1043), + [sym__unquoted_with_expr] = STATE(1328), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(761), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2360), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(741)] = { - [sym_comment] = STATE(741), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2248), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_EQ_GT] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2248), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_has2] = ACTIONS(2246), - [anon_sym_not_DASHhas2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2248), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_like2] = ACTIONS(2246), - [anon_sym_not_DASHlike2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2248), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2248), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_err_GT] = ACTIONS(2248), - [anon_sym_out_GT] = ACTIONS(2248), - [anon_sym_e_GT] = ACTIONS(2248), - [anon_sym_o_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT] = ACTIONS(2248), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), + [STATE(762)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1329), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1044), + [sym__unquoted_with_expr] = STATE(1264), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(762), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2360), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(742)] = { - [sym_comment] = STATE(742), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [sym__newline] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_err_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_GT_PIPE] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), - [anon_sym_RPAREN] = ACTIONS(2250), - [anon_sym_GT2] = ACTIONS(2252), - [anon_sym_DASH2] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_EQ_GT] = ACTIONS(2250), - [anon_sym_STAR2] = ACTIONS(2252), - [anon_sym_and2] = ACTIONS(2250), - [anon_sym_xor2] = ACTIONS(2250), - [anon_sym_or2] = ACTIONS(2250), - [anon_sym_not_DASHin2] = ACTIONS(2250), - [anon_sym_has2] = ACTIONS(2250), - [anon_sym_not_DASHhas2] = ACTIONS(2250), - [anon_sym_starts_DASHwith2] = ACTIONS(2250), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2250), - [anon_sym_ends_DASHwith2] = ACTIONS(2250), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2250), - [anon_sym_EQ_EQ2] = ACTIONS(2250), - [anon_sym_BANG_EQ2] = ACTIONS(2250), - [anon_sym_LT2] = ACTIONS(2252), - [anon_sym_LT_EQ2] = ACTIONS(2250), - [anon_sym_GT_EQ2] = ACTIONS(2250), - [anon_sym_EQ_TILDE2] = ACTIONS(2250), - [anon_sym_BANG_TILDE2] = ACTIONS(2250), - [anon_sym_like2] = ACTIONS(2250), - [anon_sym_not_DASHlike2] = ACTIONS(2250), - [anon_sym_STAR_STAR2] = ACTIONS(2250), - [anon_sym_PLUS_PLUS2] = ACTIONS(2250), - [anon_sym_SLASH2] = ACTIONS(2252), - [anon_sym_mod2] = ACTIONS(2250), - [anon_sym_SLASH_SLASH2] = ACTIONS(2250), - [anon_sym_PLUS2] = ACTIONS(2252), - [anon_sym_bit_DASHshl2] = ACTIONS(2250), - [anon_sym_bit_DASHshr2] = ACTIONS(2250), - [anon_sym_bit_DASHand2] = ACTIONS(2250), - [anon_sym_bit_DASHxor2] = ACTIONS(2250), - [anon_sym_bit_DASHor2] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2252), - [anon_sym_out_GT] = ACTIONS(2252), - [anon_sym_e_GT] = ACTIONS(2252), - [anon_sym_o_GT] = ACTIONS(2252), - [anon_sym_err_PLUSout_GT] = ACTIONS(2252), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2252), - [anon_sym_o_PLUSe_GT] = ACTIONS(2252), - [anon_sym_e_PLUSo_GT] = ACTIONS(2252), - [anon_sym_err_GT_GT] = ACTIONS(2250), - [anon_sym_out_GT_GT] = ACTIONS(2250), - [anon_sym_e_GT_GT] = ACTIONS(2250), - [anon_sym_o_GT_GT] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2250), + [STATE(763)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1686), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1056), + [sym__unquoted_with_expr] = STATE(1267), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(763), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2360), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(743)] = { - [sym_comment] = STATE(743), - [anon_sym_in] = ACTIONS(2254), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2256), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2256), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_has2] = ACTIONS(2254), - [anon_sym_not_DASHhas2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2256), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_like2] = ACTIONS(2254), - [anon_sym_not_DASHlike2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2256), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2256), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_COLON2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2256), - [anon_sym_out_GT] = ACTIONS(2256), - [anon_sym_e_GT] = ACTIONS(2256), - [anon_sym_o_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT] = ACTIONS(2256), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [STATE(764)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1687), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1058), + [sym__unquoted_with_expr] = STATE(1269), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(764), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2360), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(744)] = { - [sym_comment] = STATE(744), - [anon_sym_in] = ACTIONS(2254), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2256), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2256), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_has2] = ACTIONS(2254), - [anon_sym_not_DASHhas2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2256), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_like2] = ACTIONS(2254), - [anon_sym_not_DASHlike2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2256), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2256), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_COLON2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2256), - [anon_sym_out_GT] = ACTIONS(2256), - [anon_sym_e_GT] = ACTIONS(2256), - [anon_sym_o_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT] = ACTIONS(2256), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [STATE(765)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1688), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1069), + [sym__unquoted_with_expr] = STATE(1276), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(765), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2360), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(745)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1282), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1296), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(745), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(766)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1689), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1070), + [sym__unquoted_with_expr] = STATE(1285), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(766), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(746)] = { - [sym_comment] = STATE(746), - [anon_sym_in] = ACTIONS(2258), - [sym__newline] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_err_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_GT_PIPE] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_GT2] = ACTIONS(2260), - [anon_sym_DASH2] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_EQ_GT] = ACTIONS(2258), - [anon_sym_STAR2] = ACTIONS(2260), - [anon_sym_and2] = ACTIONS(2258), - [anon_sym_xor2] = ACTIONS(2258), - [anon_sym_or2] = ACTIONS(2258), - [anon_sym_not_DASHin2] = ACTIONS(2258), - [anon_sym_has2] = ACTIONS(2258), - [anon_sym_not_DASHhas2] = ACTIONS(2258), - [anon_sym_starts_DASHwith2] = ACTIONS(2258), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2258), - [anon_sym_ends_DASHwith2] = ACTIONS(2258), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2258), - [anon_sym_EQ_EQ2] = ACTIONS(2258), - [anon_sym_BANG_EQ2] = ACTIONS(2258), - [anon_sym_LT2] = ACTIONS(2260), - [anon_sym_LT_EQ2] = ACTIONS(2258), - [anon_sym_GT_EQ2] = ACTIONS(2258), - [anon_sym_EQ_TILDE2] = ACTIONS(2258), - [anon_sym_BANG_TILDE2] = ACTIONS(2258), - [anon_sym_like2] = ACTIONS(2258), - [anon_sym_not_DASHlike2] = ACTIONS(2258), - [anon_sym_STAR_STAR2] = ACTIONS(2258), - [anon_sym_PLUS_PLUS2] = ACTIONS(2258), - [anon_sym_SLASH2] = ACTIONS(2260), - [anon_sym_mod2] = ACTIONS(2258), - [anon_sym_SLASH_SLASH2] = ACTIONS(2258), - [anon_sym_PLUS2] = ACTIONS(2260), - [anon_sym_bit_DASHshl2] = ACTIONS(2258), - [anon_sym_bit_DASHshr2] = ACTIONS(2258), - [anon_sym_bit_DASHand2] = ACTIONS(2258), - [anon_sym_bit_DASHxor2] = ACTIONS(2258), - [anon_sym_bit_DASHor2] = ACTIONS(2258), - [anon_sym_COLON2] = ACTIONS(2258), - [anon_sym_err_GT] = ACTIONS(2260), - [anon_sym_out_GT] = ACTIONS(2260), - [anon_sym_e_GT] = ACTIONS(2260), - [anon_sym_o_GT] = ACTIONS(2260), - [anon_sym_err_PLUSout_GT] = ACTIONS(2260), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2260), - [anon_sym_o_PLUSe_GT] = ACTIONS(2260), - [anon_sym_e_PLUSo_GT] = ACTIONS(2260), - [anon_sym_err_GT_GT] = ACTIONS(2258), - [anon_sym_out_GT_GT] = ACTIONS(2258), - [anon_sym_e_GT_GT] = ACTIONS(2258), - [anon_sym_o_GT_GT] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2258), + [STATE(767)] = { + [sym_comment] = STATE(767), + [anon_sym_in] = ACTIONS(2374), + [sym__newline] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_err_GT_PIPE] = ACTIONS(2379), + [anon_sym_out_GT_PIPE] = ACTIONS(2379), + [anon_sym_e_GT_PIPE] = ACTIONS(2379), + [anon_sym_o_GT_PIPE] = ACTIONS(2379), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2379), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2379), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2379), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_GT2] = ACTIONS(2381), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_STAR2] = ACTIONS(2381), + [anon_sym_and2] = ACTIONS(2374), + [anon_sym_xor2] = ACTIONS(2374), + [anon_sym_or2] = ACTIONS(2374), + [anon_sym_not_DASHin2] = ACTIONS(2374), + [anon_sym_has2] = ACTIONS(2374), + [anon_sym_not_DASHhas2] = ACTIONS(2374), + [anon_sym_starts_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2374), + [anon_sym_ends_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2374), + [anon_sym_EQ_EQ2] = ACTIONS(2374), + [anon_sym_BANG_EQ2] = ACTIONS(2374), + [anon_sym_LT2] = ACTIONS(2381), + [anon_sym_LT_EQ2] = ACTIONS(2374), + [anon_sym_GT_EQ2] = ACTIONS(2374), + [anon_sym_EQ_TILDE2] = ACTIONS(2374), + [anon_sym_BANG_TILDE2] = ACTIONS(2374), + [anon_sym_like2] = ACTIONS(2374), + [anon_sym_not_DASHlike2] = ACTIONS(2374), + [anon_sym_STAR_STAR2] = ACTIONS(2374), + [anon_sym_PLUS_PLUS2] = ACTIONS(2374), + [anon_sym_SLASH2] = ACTIONS(2381), + [anon_sym_mod2] = ACTIONS(2374), + [anon_sym_SLASH_SLASH2] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2381), + [anon_sym_bit_DASHshl2] = ACTIONS(2374), + [anon_sym_bit_DASHshr2] = ACTIONS(2374), + [anon_sym_bit_DASHand2] = ACTIONS(2374), + [anon_sym_bit_DASHxor2] = ACTIONS(2374), + [anon_sym_bit_DASHor2] = ACTIONS(2374), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(2383), + [anon_sym_out_GT] = ACTIONS(2383), + [anon_sym_e_GT] = ACTIONS(2383), + [anon_sym_o_GT] = ACTIONS(2383), + [anon_sym_err_PLUSout_GT] = ACTIONS(2383), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2383), + [anon_sym_o_PLUSe_GT] = ACTIONS(2383), + [anon_sym_e_PLUSo_GT] = ACTIONS(2383), + [anon_sym_err_GT_GT] = ACTIONS(2379), + [anon_sym_out_GT_GT] = ACTIONS(2379), + [anon_sym_e_GT_GT] = ACTIONS(2379), + [anon_sym_o_GT_GT] = ACTIONS(2379), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2379), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2379), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2379), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2379), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(747)] = { - [sym_comment] = STATE(747), - [anon_sym_in] = ACTIONS(2262), - [sym__newline] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_err_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_GT_PIPE] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2262), - [anon_sym_RPAREN] = ACTIONS(2262), - [anon_sym_GT2] = ACTIONS(2264), - [anon_sym_DASH2] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(2262), - [anon_sym_STAR2] = ACTIONS(2264), - [anon_sym_and2] = ACTIONS(2262), - [anon_sym_xor2] = ACTIONS(2262), - [anon_sym_or2] = ACTIONS(2262), - [anon_sym_not_DASHin2] = ACTIONS(2262), - [anon_sym_has2] = ACTIONS(2262), - [anon_sym_not_DASHhas2] = ACTIONS(2262), - [anon_sym_starts_DASHwith2] = ACTIONS(2262), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2262), - [anon_sym_ends_DASHwith2] = ACTIONS(2262), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2262), - [anon_sym_EQ_EQ2] = ACTIONS(2262), - [anon_sym_BANG_EQ2] = ACTIONS(2262), - [anon_sym_LT2] = ACTIONS(2264), - [anon_sym_LT_EQ2] = ACTIONS(2262), - [anon_sym_GT_EQ2] = ACTIONS(2262), - [anon_sym_EQ_TILDE2] = ACTIONS(2262), - [anon_sym_BANG_TILDE2] = ACTIONS(2262), - [anon_sym_like2] = ACTIONS(2262), - [anon_sym_not_DASHlike2] = ACTIONS(2262), - [anon_sym_STAR_STAR2] = ACTIONS(2262), - [anon_sym_PLUS_PLUS2] = ACTIONS(2262), - [anon_sym_SLASH2] = ACTIONS(2264), - [anon_sym_mod2] = ACTIONS(2262), - [anon_sym_SLASH_SLASH2] = ACTIONS(2262), - [anon_sym_PLUS2] = ACTIONS(2264), - [anon_sym_bit_DASHshl2] = ACTIONS(2262), - [anon_sym_bit_DASHshr2] = ACTIONS(2262), - [anon_sym_bit_DASHand2] = ACTIONS(2262), - [anon_sym_bit_DASHxor2] = ACTIONS(2262), - [anon_sym_bit_DASHor2] = ACTIONS(2262), - [anon_sym_COLON2] = ACTIONS(2262), - [anon_sym_err_GT] = ACTIONS(2264), - [anon_sym_out_GT] = ACTIONS(2264), - [anon_sym_e_GT] = ACTIONS(2264), - [anon_sym_o_GT] = ACTIONS(2264), - [anon_sym_err_PLUSout_GT] = ACTIONS(2264), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2264), - [anon_sym_o_PLUSe_GT] = ACTIONS(2264), - [anon_sym_e_PLUSo_GT] = ACTIONS(2264), - [anon_sym_err_GT_GT] = ACTIONS(2262), - [anon_sym_out_GT_GT] = ACTIONS(2262), - [anon_sym_e_GT_GT] = ACTIONS(2262), - [anon_sym_o_GT_GT] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2262), + [STATE(768)] = { + [sym_comment] = STATE(768), + [anon_sym_in] = ACTIONS(2385), + [sym__newline] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_err_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_GT_PIPE] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2385), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_GT2] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_STAR2] = ACTIONS(2387), + [anon_sym_and2] = ACTIONS(2385), + [anon_sym_xor2] = ACTIONS(2385), + [anon_sym_or2] = ACTIONS(2385), + [anon_sym_not_DASHin2] = ACTIONS(2385), + [anon_sym_has2] = ACTIONS(2385), + [anon_sym_not_DASHhas2] = ACTIONS(2385), + [anon_sym_starts_DASHwith2] = ACTIONS(2385), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2385), + [anon_sym_ends_DASHwith2] = ACTIONS(2385), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2385), + [anon_sym_EQ_EQ2] = ACTIONS(2385), + [anon_sym_BANG_EQ2] = ACTIONS(2385), + [anon_sym_LT2] = ACTIONS(2387), + [anon_sym_LT_EQ2] = ACTIONS(2385), + [anon_sym_GT_EQ2] = ACTIONS(2385), + [anon_sym_EQ_TILDE2] = ACTIONS(2385), + [anon_sym_BANG_TILDE2] = ACTIONS(2385), + [anon_sym_like2] = ACTIONS(2385), + [anon_sym_not_DASHlike2] = ACTIONS(2385), + [anon_sym_LPAREN2] = ACTIONS(2385), + [anon_sym_STAR_STAR2] = ACTIONS(2385), + [anon_sym_PLUS_PLUS2] = ACTIONS(2385), + [anon_sym_SLASH2] = ACTIONS(2387), + [anon_sym_mod2] = ACTIONS(2385), + [anon_sym_SLASH_SLASH2] = ACTIONS(2385), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_bit_DASHshl2] = ACTIONS(2385), + [anon_sym_bit_DASHshr2] = ACTIONS(2385), + [anon_sym_bit_DASHand2] = ACTIONS(2385), + [anon_sym_bit_DASHxor2] = ACTIONS(2385), + [anon_sym_bit_DASHor2] = ACTIONS(2385), + [anon_sym_err_GT] = ACTIONS(2387), + [anon_sym_out_GT] = ACTIONS(2387), + [anon_sym_e_GT] = ACTIONS(2387), + [anon_sym_o_GT] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT] = ACTIONS(2387), + [anon_sym_err_GT_GT] = ACTIONS(2385), + [anon_sym_out_GT_GT] = ACTIONS(2385), + [anon_sym_e_GT_GT] = ACTIONS(2385), + [anon_sym_o_GT_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), + [sym__unquoted_pattern] = ACTIONS(2387), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(748)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1247), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(748), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(769)] = { + [aux_sym__repeat_newline] = STATE(998), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(769), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(770)] = { + [sym_comment] = STATE(770), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_in] = ACTIONS(2389), + [sym__newline] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2389), + [anon_sym_PIPE] = ACTIONS(2389), + [anon_sym_err_GT_PIPE] = ACTIONS(2389), + [anon_sym_out_GT_PIPE] = ACTIONS(2389), + [anon_sym_e_GT_PIPE] = ACTIONS(2389), + [anon_sym_o_GT_PIPE] = ACTIONS(2389), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2389), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2389), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2389), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2389), + [anon_sym_RPAREN] = ACTIONS(2389), + [anon_sym_GT2] = ACTIONS(2391), + [anon_sym_DASH2] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_EQ_GT] = ACTIONS(2389), + [anon_sym_STAR2] = ACTIONS(2391), + [anon_sym_and2] = ACTIONS(2389), + [anon_sym_xor2] = ACTIONS(2389), + [anon_sym_or2] = ACTIONS(2389), + [anon_sym_not_DASHin2] = ACTIONS(2389), + [anon_sym_has2] = ACTIONS(2389), + [anon_sym_not_DASHhas2] = ACTIONS(2389), + [anon_sym_starts_DASHwith2] = ACTIONS(2389), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2389), + [anon_sym_ends_DASHwith2] = ACTIONS(2389), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2389), + [anon_sym_EQ_EQ2] = ACTIONS(2389), + [anon_sym_BANG_EQ2] = ACTIONS(2389), + [anon_sym_LT2] = ACTIONS(2391), + [anon_sym_LT_EQ2] = ACTIONS(2389), + [anon_sym_GT_EQ2] = ACTIONS(2389), + [anon_sym_EQ_TILDE2] = ACTIONS(2389), + [anon_sym_BANG_TILDE2] = ACTIONS(2389), + [anon_sym_like2] = ACTIONS(2389), + [anon_sym_not_DASHlike2] = ACTIONS(2389), + [anon_sym_STAR_STAR2] = ACTIONS(2389), + [anon_sym_PLUS_PLUS2] = ACTIONS(2389), + [anon_sym_SLASH2] = ACTIONS(2391), + [anon_sym_mod2] = ACTIONS(2389), + [anon_sym_SLASH_SLASH2] = ACTIONS(2389), + [anon_sym_PLUS2] = ACTIONS(2391), + [anon_sym_bit_DASHshl2] = ACTIONS(2389), + [anon_sym_bit_DASHshr2] = ACTIONS(2389), + [anon_sym_bit_DASHand2] = ACTIONS(2389), + [anon_sym_bit_DASHxor2] = ACTIONS(2389), + [anon_sym_bit_DASHor2] = ACTIONS(2389), + [anon_sym_err_GT] = ACTIONS(2391), + [anon_sym_out_GT] = ACTIONS(2391), + [anon_sym_e_GT] = ACTIONS(2391), + [anon_sym_o_GT] = ACTIONS(2391), + [anon_sym_err_PLUSout_GT] = ACTIONS(2391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2391), + [anon_sym_o_PLUSe_GT] = ACTIONS(2391), + [anon_sym_e_PLUSo_GT] = ACTIONS(2391), + [anon_sym_err_GT_GT] = ACTIONS(2389), + [anon_sym_out_GT_GT] = ACTIONS(2389), + [anon_sym_e_GT_GT] = ACTIONS(2389), + [anon_sym_o_GT_GT] = ACTIONS(2389), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2389), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2389), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2389), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(771)] = { + [aux_sym__repeat_newline] = STATE(1001), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(771), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(772)] = { + [sym_comment] = STATE(772), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2134), + [sym__newline] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_err_GT_PIPE] = ACTIONS(2134), + [anon_sym_out_GT_PIPE] = ACTIONS(2134), + [anon_sym_e_GT_PIPE] = ACTIONS(2134), + [anon_sym_o_GT_PIPE] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_GT2] = ACTIONS(2136), + [anon_sym_DASH2] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_EQ_GT] = ACTIONS(2134), + [anon_sym_STAR2] = ACTIONS(2136), + [anon_sym_and2] = ACTIONS(2134), + [anon_sym_xor2] = ACTIONS(2134), + [anon_sym_or2] = ACTIONS(2134), + [anon_sym_not_DASHin2] = ACTIONS(2134), + [anon_sym_has2] = ACTIONS(2134), + [anon_sym_not_DASHhas2] = ACTIONS(2134), + [anon_sym_starts_DASHwith2] = ACTIONS(2134), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), + [anon_sym_ends_DASHwith2] = ACTIONS(2134), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), + [anon_sym_EQ_EQ2] = ACTIONS(2134), + [anon_sym_BANG_EQ2] = ACTIONS(2134), + [anon_sym_LT2] = ACTIONS(2136), + [anon_sym_LT_EQ2] = ACTIONS(2134), + [anon_sym_GT_EQ2] = ACTIONS(2134), + [anon_sym_EQ_TILDE2] = ACTIONS(2134), + [anon_sym_BANG_TILDE2] = ACTIONS(2134), + [anon_sym_like2] = ACTIONS(2134), + [anon_sym_not_DASHlike2] = ACTIONS(2134), + [anon_sym_STAR_STAR2] = ACTIONS(2134), + [anon_sym_PLUS_PLUS2] = ACTIONS(2134), + [anon_sym_SLASH2] = ACTIONS(2136), + [anon_sym_mod2] = ACTIONS(2134), + [anon_sym_SLASH_SLASH2] = ACTIONS(2134), + [anon_sym_PLUS2] = ACTIONS(2136), + [anon_sym_bit_DASHshl2] = ACTIONS(2134), + [anon_sym_bit_DASHshr2] = ACTIONS(2134), + [anon_sym_bit_DASHand2] = ACTIONS(2134), + [anon_sym_bit_DASHxor2] = ACTIONS(2134), + [anon_sym_bit_DASHor2] = ACTIONS(2134), + [anon_sym_err_GT] = ACTIONS(2136), + [anon_sym_out_GT] = ACTIONS(2136), + [anon_sym_e_GT] = ACTIONS(2136), + [anon_sym_o_GT] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT] = ACTIONS(2136), + [anon_sym_err_GT_GT] = ACTIONS(2134), + [anon_sym_out_GT_GT] = ACTIONS(2134), + [anon_sym_e_GT_GT] = ACTIONS(2134), + [anon_sym_o_GT_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(773)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4143), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4454), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(773), + [aux_sym__match_pattern_record_body_repeat1] = STATE(720), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [STATE(774)] = { + [aux_sym__repeat_newline] = STATE(1004), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(774), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(775)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2182), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(957), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(775), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(749)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1251), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(749), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(776)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2184), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(959), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(776), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(750)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1254), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(750), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(777)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2186), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(899), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(777), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(751)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1203), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(751), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(778)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2200), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(901), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(778), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(752)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1133), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(752), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(779)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2175), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(904), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(779), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(753)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1136), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(753), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(780)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2205), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(906), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(780), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(754)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1138), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(754), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(781)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2193), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(672), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(781), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(755)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1140), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(755), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(782)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2195), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(673), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(782), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(756)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(756), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(783)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(895), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(674), + [sym__unquoted_with_expr] = STATE(932), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(783), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(757)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1142), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(757), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(784)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2139), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(675), + [sym__unquoted_with_expr] = STATE(934), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(784), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(758)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1144), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(758), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(785)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2142), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(676), + [sym__unquoted_with_expr] = STATE(936), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(785), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(759)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1145), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(759), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(786)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2143), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(677), + [sym__unquoted_with_expr] = STATE(939), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(786), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(760)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1147), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(760), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(787)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2144), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(678), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(787), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(761)] = { - [sym_cell_path] = STATE(1279), - [sym_path] = STATE(783), - [sym_comment] = STATE(761), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1878), - [anon_sym_in] = ACTIONS(1878), - [sym__newline] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_err_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_GT_PIPE] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), - [anon_sym_GT2] = ACTIONS(1880), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_STAR2] = ACTIONS(1880), - [anon_sym_and2] = ACTIONS(1878), - [anon_sym_xor2] = ACTIONS(1878), - [anon_sym_or2] = ACTIONS(1878), - [anon_sym_not_DASHin2] = ACTIONS(1878), - [anon_sym_has2] = ACTIONS(1878), - [anon_sym_not_DASHhas2] = ACTIONS(1878), - [anon_sym_starts_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), - [anon_sym_ends_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), - [anon_sym_EQ_EQ2] = ACTIONS(1878), - [anon_sym_BANG_EQ2] = ACTIONS(1878), - [anon_sym_LT2] = ACTIONS(1880), - [anon_sym_LT_EQ2] = ACTIONS(1878), - [anon_sym_GT_EQ2] = ACTIONS(1878), - [anon_sym_EQ_TILDE2] = ACTIONS(1878), - [anon_sym_BANG_TILDE2] = ACTIONS(1878), - [anon_sym_like2] = ACTIONS(1878), - [anon_sym_not_DASHlike2] = ACTIONS(1878), - [anon_sym_STAR_STAR2] = ACTIONS(1878), - [anon_sym_PLUS_PLUS2] = ACTIONS(1878), - [anon_sym_SLASH2] = ACTIONS(1880), - [anon_sym_mod2] = ACTIONS(1878), - [anon_sym_SLASH_SLASH2] = ACTIONS(1878), - [anon_sym_PLUS2] = ACTIONS(1880), - [anon_sym_bit_DASHshl2] = ACTIONS(1878), - [anon_sym_bit_DASHshr2] = ACTIONS(1878), - [anon_sym_bit_DASHand2] = ACTIONS(1878), - [anon_sym_bit_DASHxor2] = ACTIONS(1878), - [anon_sym_bit_DASHor2] = ACTIONS(1878), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1880), - [anon_sym_out_GT] = ACTIONS(1880), - [anon_sym_e_GT] = ACTIONS(1880), - [anon_sym_o_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT] = ACTIONS(1880), - [anon_sym_err_GT_GT] = ACTIONS(1878), - [anon_sym_out_GT_GT] = ACTIONS(1878), - [anon_sym_e_GT_GT] = ACTIONS(1878), - [anon_sym_o_GT_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), + [STATE(788)] = { + [aux_sym__repeat_newline] = STATE(968), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(788), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(762)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1315), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1033), + [STATE(789)] = { + [aux_sym__repeat_newline] = STATE(3433), + [aux_sym__pipe_separator] = STATE(753), + [sym_comment] = STATE(789), + [anon_sym_export] = ACTIONS(2393), + [anon_sym_alias] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2395), + [anon_sym_mut] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [aux_sym_cmd_identifier_token1] = ACTIONS(2393), + [anon_sym_def] = ACTIONS(2395), + [anon_sym_use] = ACTIONS(2395), + [anon_sym_export_DASHenv] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym_module] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_loop] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_catch] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_in] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2395), + [anon_sym_false] = ACTIONS(2395), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2395), + [aux_sym_cmd_identifier_token4] = ACTIONS(2395), + [aux_sym_cmd_identifier_token5] = ACTIONS(2395), + [sym__newline] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_err_GT_PIPE] = ACTIONS(2261), + [anon_sym_out_GT_PIPE] = ACTIONS(2261), + [anon_sym_e_GT_PIPE] = ACTIONS(2261), + [anon_sym_o_GT_PIPE] = ACTIONS(2261), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2261), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2261), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2261), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_DASH2] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_DOT_DOT] = ACTIONS(2393), + [anon_sym_where] = ACTIONS(2395), + [aux_sym_expr_unary_token1] = ACTIONS(2395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2395), + [anon_sym_DOT_DOT_LT] = ACTIONS(2395), + [aux_sym__val_number_decimal_token1] = ACTIONS(2393), + [aux_sym__val_number_decimal_token2] = ACTIONS(2395), + [aux_sym__val_number_decimal_token3] = ACTIONS(2395), + [aux_sym__val_number_decimal_token4] = ACTIONS(2395), + [aux_sym__val_number_token1] = ACTIONS(2395), + [aux_sym__val_number_token2] = ACTIONS(2395), + [aux_sym__val_number_token3] = ACTIONS(2395), + [anon_sym_0b] = ACTIONS(2393), + [anon_sym_0o] = ACTIONS(2393), + [anon_sym_0x] = ACTIONS(2393), + [sym_val_date] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_BQUOTE] = ACTIONS(2395), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2395), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2395), + [anon_sym_CARET] = ACTIONS(2395), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2395), + }, + [STATE(790)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1279), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1036), [sym__unquoted_with_expr] = STATE(1280), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(762), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(790), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2405), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2415), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(763)] = { - [sym_comment] = STATE(763), - [anon_sym_in] = ACTIONS(2268), - [sym__newline] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_err_GT_PIPE] = ACTIONS(2268), - [anon_sym_out_GT_PIPE] = ACTIONS(2268), - [anon_sym_e_GT_PIPE] = ACTIONS(2268), - [anon_sym_o_GT_PIPE] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_GT2] = ACTIONS(2270), - [anon_sym_DASH2] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_EQ_GT] = ACTIONS(2268), - [anon_sym_STAR2] = ACTIONS(2270), - [anon_sym_and2] = ACTIONS(2268), - [anon_sym_xor2] = ACTIONS(2268), - [anon_sym_or2] = ACTIONS(2268), - [anon_sym_not_DASHin2] = ACTIONS(2268), - [anon_sym_has2] = ACTIONS(2268), - [anon_sym_not_DASHhas2] = ACTIONS(2268), - [anon_sym_starts_DASHwith2] = ACTIONS(2268), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2268), - [anon_sym_ends_DASHwith2] = ACTIONS(2268), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2268), - [anon_sym_EQ_EQ2] = ACTIONS(2268), - [anon_sym_BANG_EQ2] = ACTIONS(2268), - [anon_sym_LT2] = ACTIONS(2270), - [anon_sym_LT_EQ2] = ACTIONS(2268), - [anon_sym_GT_EQ2] = ACTIONS(2268), - [anon_sym_EQ_TILDE2] = ACTIONS(2268), - [anon_sym_BANG_TILDE2] = ACTIONS(2268), - [anon_sym_like2] = ACTIONS(2268), - [anon_sym_not_DASHlike2] = ACTIONS(2268), - [anon_sym_STAR_STAR2] = ACTIONS(2268), - [anon_sym_PLUS_PLUS2] = ACTIONS(2268), - [anon_sym_SLASH2] = ACTIONS(2270), - [anon_sym_mod2] = ACTIONS(2268), - [anon_sym_SLASH_SLASH2] = ACTIONS(2268), - [anon_sym_PLUS2] = ACTIONS(2270), - [anon_sym_bit_DASHshl2] = ACTIONS(2268), - [anon_sym_bit_DASHshr2] = ACTIONS(2268), - [anon_sym_bit_DASHand2] = ACTIONS(2268), - [anon_sym_bit_DASHxor2] = ACTIONS(2268), - [anon_sym_bit_DASHor2] = ACTIONS(2268), - [anon_sym_COLON2] = ACTIONS(2268), - [anon_sym_err_GT] = ACTIONS(2270), - [anon_sym_out_GT] = ACTIONS(2270), - [anon_sym_e_GT] = ACTIONS(2270), - [anon_sym_o_GT] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT] = ACTIONS(2270), - [anon_sym_err_GT_GT] = ACTIONS(2268), - [anon_sym_out_GT_GT] = ACTIONS(2268), - [anon_sym_e_GT_GT] = ACTIONS(2268), - [anon_sym_o_GT_GT] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), + [STATE(791)] = { + [aux_sym__repeat_newline] = STATE(1007), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(791), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(764)] = { - [sym_comment] = STATE(764), - [anon_sym_in] = ACTIONS(2272), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2274), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_EQ_GT] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2274), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_has2] = ACTIONS(2272), - [anon_sym_not_DASHhas2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2274), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_like2] = ACTIONS(2272), - [anon_sym_not_DASHlike2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2274), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2274), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_COLON2] = ACTIONS(2272), - [anon_sym_err_GT] = ACTIONS(2274), - [anon_sym_out_GT] = ACTIONS(2274), - [anon_sym_e_GT] = ACTIONS(2274), - [anon_sym_o_GT] = ACTIONS(2274), - [anon_sym_err_PLUSout_GT] = ACTIONS(2274), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2274), - [anon_sym_o_PLUSe_GT] = ACTIONS(2274), - [anon_sym_e_PLUSo_GT] = ACTIONS(2274), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), + [STATE(792)] = { + [aux_sym__repeat_newline] = STATE(969), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(792), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(765)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1286), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1345), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(765), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(793)] = { + [sym_comment] = STATE(793), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_in] = ACTIONS(2417), + [sym__newline] = ACTIONS(2417), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_PIPE] = ACTIONS(2417), + [anon_sym_err_GT_PIPE] = ACTIONS(2417), + [anon_sym_out_GT_PIPE] = ACTIONS(2417), + [anon_sym_e_GT_PIPE] = ACTIONS(2417), + [anon_sym_o_GT_PIPE] = ACTIONS(2417), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2417), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2417), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2417), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2417), + [anon_sym_RPAREN] = ACTIONS(2417), + [anon_sym_GT2] = ACTIONS(2419), + [anon_sym_DASH2] = ACTIONS(2417), + [anon_sym_LBRACE] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_EQ_GT] = ACTIONS(2417), + [anon_sym_STAR2] = ACTIONS(2419), + [anon_sym_and2] = ACTIONS(2417), + [anon_sym_xor2] = ACTIONS(2417), + [anon_sym_or2] = ACTIONS(2417), + [anon_sym_not_DASHin2] = ACTIONS(2417), + [anon_sym_has2] = ACTIONS(2417), + [anon_sym_not_DASHhas2] = ACTIONS(2417), + [anon_sym_starts_DASHwith2] = ACTIONS(2417), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2417), + [anon_sym_ends_DASHwith2] = ACTIONS(2417), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2417), + [anon_sym_EQ_EQ2] = ACTIONS(2417), + [anon_sym_BANG_EQ2] = ACTIONS(2417), + [anon_sym_LT2] = ACTIONS(2419), + [anon_sym_LT_EQ2] = ACTIONS(2417), + [anon_sym_GT_EQ2] = ACTIONS(2417), + [anon_sym_EQ_TILDE2] = ACTIONS(2417), + [anon_sym_BANG_TILDE2] = ACTIONS(2417), + [anon_sym_like2] = ACTIONS(2417), + [anon_sym_not_DASHlike2] = ACTIONS(2417), + [anon_sym_STAR_STAR2] = ACTIONS(2417), + [anon_sym_PLUS_PLUS2] = ACTIONS(2417), + [anon_sym_SLASH2] = ACTIONS(2419), + [anon_sym_mod2] = ACTIONS(2417), + [anon_sym_SLASH_SLASH2] = ACTIONS(2417), + [anon_sym_PLUS2] = ACTIONS(2419), + [anon_sym_bit_DASHshl2] = ACTIONS(2417), + [anon_sym_bit_DASHshr2] = ACTIONS(2417), + [anon_sym_bit_DASHand2] = ACTIONS(2417), + [anon_sym_bit_DASHxor2] = ACTIONS(2417), + [anon_sym_bit_DASHor2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(2419), + [anon_sym_out_GT] = ACTIONS(2419), + [anon_sym_e_GT] = ACTIONS(2419), + [anon_sym_o_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT] = ACTIONS(2419), + [anon_sym_err_GT_GT] = ACTIONS(2417), + [anon_sym_out_GT_GT] = ACTIONS(2417), + [anon_sym_e_GT_GT] = ACTIONS(2417), + [anon_sym_o_GT_GT] = ACTIONS(2417), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2417), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2417), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2417), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(794)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1282), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1037), + [sym__unquoted_with_expr] = STATE(1283), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(794), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2405), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2415), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(766)] = { - [sym_comment] = STATE(766), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_err_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_GT_PIPE] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2278), - [anon_sym_out_GT] = ACTIONS(2278), - [anon_sym_e_GT] = ACTIONS(2278), - [anon_sym_o_GT] = ACTIONS(2278), - [anon_sym_err_PLUSout_GT] = ACTIONS(2278), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), - [anon_sym_o_PLUSe_GT] = ACTIONS(2278), - [anon_sym_e_PLUSo_GT] = ACTIONS(2278), - [anon_sym_err_GT_GT] = ACTIONS(2276), - [anon_sym_out_GT_GT] = ACTIONS(2276), - [anon_sym_e_GT_GT] = ACTIONS(2276), - [anon_sym_o_GT_GT] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), + [STATE(795)] = { + [aux_sym__repeat_newline] = STATE(1010), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(795), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(767)] = { - [aux_sym__repeat_newline] = STATE(980), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(767), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [STATE(796)] = { + [aux_sym__repeat_newline] = STATE(972), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(796), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(768)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1314), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1284), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(768), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(769)] = { - [aux_sym__repeat_newline] = STATE(983), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(769), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(770)] = { - [aux_sym__repeat_newline] = STATE(986), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(770), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(771)] = { - [aux_sym__repeat_newline] = STATE(990), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(771), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(772)] = { - [aux_sym__repeat_newline] = STATE(992), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(772), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(773)] = { - [sym_comment] = STATE(773), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_err_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_GT_PIPE] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2289), - [anon_sym_out_GT] = ACTIONS(2289), - [anon_sym_e_GT] = ACTIONS(2289), - [anon_sym_o_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT] = ACTIONS(2289), - [anon_sym_err_GT_GT] = ACTIONS(2287), - [anon_sym_out_GT_GT] = ACTIONS(2287), - [anon_sym_e_GT_GT] = ACTIONS(2287), - [anon_sym_o_GT_GT] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(774)] = { - [aux_sym__repeat_newline] = STATE(994), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(774), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(775)] = { - [aux_sym__repeat_newline] = STATE(996), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(775), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(776)] = { - [aux_sym__repeat_newline] = STATE(998), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(776), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(777)] = { - [aux_sym__repeat_newline] = STATE(1002), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(777), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [STATE(797)] = { + [aux_sym__repeat_newline] = STATE(1014), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(797), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(778)] = { - [aux_sym__repeat_newline] = STATE(1004), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(778), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [STATE(798)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(895), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(674), + [sym__unquoted_with_expr] = STATE(932), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(798), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(779)] = { - [sym_comment] = STATE(779), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2291), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [STATE(799)] = { + [aux_sym__repeat_newline] = STATE(1018), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(799), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(780)] = { - [aux_sym__repeat_newline] = STATE(1007), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(780), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [STATE(800)] = { + [aux_sym__repeat_newline] = STATE(974), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(800), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(781)] = { - [aux_sym__repeat_newline] = STATE(1009), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(781), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [STATE(801)] = { + [aux_sym__repeat_newline] = STATE(1023), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(801), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(782)] = { - [aux_sym__repeat_newline] = STATE(1011), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(782), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [STATE(802)] = { + [aux_sym__repeat_newline] = STATE(975), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(802), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(783)] = { - [sym_comment] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [STATE(803)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2145), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(957), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(803), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(784)] = { - [sym_comment] = STATE(784), - [ts_builtin_sym_end] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1522), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), + [STATE(804)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2146), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(959), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(804), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(785)] = { - [sym_cell_path] = STATE(1272), - [sym_path] = STATE(783), - [sym_comment] = STATE(785), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1858), - [anon_sym_in] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), - [anon_sym_bit_DASHxor2] = ACTIONS(1858), - [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), + [STATE(805)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2147), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(899), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(805), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(786)] = { - [sym_comment] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(2293), - [aux_sym__immediate_decimal_token5] = ACTIONS(2295), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [STATE(806)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2148), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(901), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(806), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(787)] = { - [sym_cell_path] = STATE(1273), - [sym_path] = STATE(783), - [sym_comment] = STATE(787), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1864), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), - [anon_sym_and2] = ACTIONS(1862), - [anon_sym_xor2] = ACTIONS(1862), - [anon_sym_or2] = ACTIONS(1862), - [anon_sym_not_DASHin2] = ACTIONS(1862), - [anon_sym_has2] = ACTIONS(1862), - [anon_sym_not_DASHhas2] = ACTIONS(1862), - [anon_sym_starts_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), - [anon_sym_ends_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), - [anon_sym_EQ_EQ2] = ACTIONS(1862), - [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), - [anon_sym_LT_EQ2] = ACTIONS(1862), - [anon_sym_GT_EQ2] = ACTIONS(1862), - [anon_sym_EQ_TILDE2] = ACTIONS(1862), - [anon_sym_BANG_TILDE2] = ACTIONS(1862), - [anon_sym_like2] = ACTIONS(1862), - [anon_sym_not_DASHlike2] = ACTIONS(1862), - [anon_sym_STAR_STAR2] = ACTIONS(1862), - [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1864), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), - [anon_sym_bit_DASHshl2] = ACTIONS(1862), - [anon_sym_bit_DASHshr2] = ACTIONS(1862), - [anon_sym_bit_DASHand2] = ACTIONS(1862), - [anon_sym_bit_DASHxor2] = ACTIONS(1862), - [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(2266), - [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), - [anon_sym_err_GT_GT] = ACTIONS(1862), - [anon_sym_out_GT_GT] = ACTIONS(1862), - [anon_sym_e_GT_GT] = ACTIONS(1862), - [anon_sym_o_GT_GT] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), + [STATE(807)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2149), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(904), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(807), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(788)] = { - [aux_sym__repeat_newline] = STATE(912), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(788), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_alias] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_mut] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [aux_sym_cmd_identifier_token1] = ACTIONS(2297), - [anon_sym_def] = ACTIONS(2299), - [anon_sym_use] = ACTIONS(2299), - [anon_sym_export_DASHenv] = ACTIONS(2299), - [anon_sym_extern] = ACTIONS(2299), - [anon_sym_module] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_loop] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_else] = ACTIONS(2299), - [anon_sym_try] = ACTIONS(2299), - [anon_sym_catch] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2299), - [anon_sym_false] = ACTIONS(2299), - [anon_sym_null] = ACTIONS(2299), - [aux_sym_cmd_identifier_token3] = ACTIONS(2299), - [aux_sym_cmd_identifier_token4] = ACTIONS(2299), - [aux_sym_cmd_identifier_token5] = ACTIONS(2299), - [sym__newline] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_err_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_GT_PIPE] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2297), - [anon_sym_DASH2] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_DOT_DOT] = ACTIONS(2297), - [anon_sym_where] = ACTIONS(2299), - [aux_sym_expr_unary_token1] = ACTIONS(2299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2299), - [anon_sym_DOT_DOT_LT] = ACTIONS(2299), - [aux_sym__val_number_decimal_token1] = ACTIONS(2297), - [aux_sym__val_number_decimal_token2] = ACTIONS(2299), - [aux_sym__val_number_decimal_token3] = ACTIONS(2299), - [aux_sym__val_number_decimal_token4] = ACTIONS(2299), - [aux_sym__val_number_token1] = ACTIONS(2299), - [aux_sym__val_number_token2] = ACTIONS(2299), - [aux_sym__val_number_token3] = ACTIONS(2299), - [anon_sym_0b] = ACTIONS(2297), - [anon_sym_0o] = ACTIONS(2297), - [anon_sym_0x] = ACTIONS(2297), - [sym_val_date] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(2299), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_BQUOTE] = ACTIONS(2299), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2299), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2299), - [anon_sym_CARET] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2299), - }, - [STATE(789)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4300), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4588), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(789), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [STATE(808)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2150), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(906), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(808), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(790)] = { - [sym_cell_path] = STATE(1292), - [sym_path] = STATE(783), - [sym_comment] = STATE(790), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1850), - [anon_sym_in] = ACTIONS(1850), - [sym__newline] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_err_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_GT_PIPE] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), - [anon_sym_GT2] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1850), - [anon_sym_STAR2] = ACTIONS(1853), - [anon_sym_and2] = ACTIONS(1850), - [anon_sym_xor2] = ACTIONS(1850), - [anon_sym_or2] = ACTIONS(1850), - [anon_sym_not_DASHin2] = ACTIONS(1850), - [anon_sym_has2] = ACTIONS(1850), - [anon_sym_not_DASHhas2] = ACTIONS(1850), - [anon_sym_starts_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1850), - [anon_sym_ends_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1850), - [anon_sym_EQ_EQ2] = ACTIONS(1850), - [anon_sym_BANG_EQ2] = ACTIONS(1850), - [anon_sym_LT2] = ACTIONS(1853), - [anon_sym_LT_EQ2] = ACTIONS(1850), - [anon_sym_GT_EQ2] = ACTIONS(1850), - [anon_sym_EQ_TILDE2] = ACTIONS(1850), - [anon_sym_BANG_TILDE2] = ACTIONS(1850), - [anon_sym_like2] = ACTIONS(1850), - [anon_sym_not_DASHlike2] = ACTIONS(1850), - [anon_sym_STAR_STAR2] = ACTIONS(1850), - [anon_sym_PLUS_PLUS2] = ACTIONS(1850), - [anon_sym_SLASH2] = ACTIONS(1853), - [anon_sym_mod2] = ACTIONS(1850), - [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_bit_DASHshl2] = ACTIONS(1850), - [anon_sym_bit_DASHshr2] = ACTIONS(1850), - [anon_sym_bit_DASHand2] = ACTIONS(1850), - [anon_sym_bit_DASHxor2] = ACTIONS(1850), - [anon_sym_bit_DASHor2] = ACTIONS(1850), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1853), - [anon_sym_out_GT] = ACTIONS(1853), - [anon_sym_e_GT] = ACTIONS(1853), - [anon_sym_o_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT] = ACTIONS(1853), - [anon_sym_err_GT_GT] = ACTIONS(1850), - [anon_sym_out_GT_GT] = ACTIONS(1850), - [anon_sym_e_GT_GT] = ACTIONS(1850), - [anon_sym_o_GT_GT] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), + [STATE(809)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2151), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(672), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(809), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(791)] = { - [sym_comment] = STATE(791), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2305), - [aux_sym__immediate_decimal_token5] = ACTIONS(2307), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [STATE(810)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2152), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(673), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(810), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(792)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(792), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(811)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(895), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(674), + [sym__unquoted_with_expr] = STATE(932), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(811), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(793)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(793), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(812)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2153), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(675), + [sym__unquoted_with_expr] = STATE(934), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(812), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(794)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(794), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(813)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2154), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(676), + [sym__unquoted_with_expr] = STATE(936), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(813), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(795)] = { - [sym_comment] = STATE(795), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(2066), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [STATE(814)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2155), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(677), + [sym__unquoted_with_expr] = STATE(939), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(814), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(796)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2186), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(796), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(815)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2156), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(678), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(815), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(797)] = { - [aux_sym__repeat_newline] = STATE(1037), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(797), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(816)] = { + [aux_sym__repeat_newline] = STATE(1025), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(816), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(798)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(798), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(817)] = { + [aux_sym__repeat_newline] = STATE(976), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(817), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(799)] = { - [aux_sym__repeat_newline] = STATE(1039), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(799), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(818)] = { + [aux_sym__repeat_newline] = STATE(1030), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(818), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(800)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(800), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(819)] = { + [aux_sym__repeat_newline] = STATE(977), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(819), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(801)] = { - [aux_sym__repeat_newline] = STATE(1041), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(801), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(820)] = { + [aux_sym__repeat_newline] = STATE(1035), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(820), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(802)] = { - [aux_sym__repeat_newline] = STATE(1130), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(802), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(821)] = { + [aux_sym__repeat_newline] = STATE(979), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(821), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(803)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(803), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(822)] = { + [sym_comment] = STATE(822), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_in] = ACTIONS(2441), + [sym__newline] = ACTIONS(2441), + [anon_sym_SEMI] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_err_GT_PIPE] = ACTIONS(2441), + [anon_sym_out_GT_PIPE] = ACTIONS(2441), + [anon_sym_e_GT_PIPE] = ACTIONS(2441), + [anon_sym_o_GT_PIPE] = ACTIONS(2441), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2441), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2441), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2441), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2441), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_GT2] = ACTIONS(2443), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_EQ_GT] = ACTIONS(2441), + [anon_sym_STAR2] = ACTIONS(2443), + [anon_sym_and2] = ACTIONS(2441), + [anon_sym_xor2] = ACTIONS(2441), + [anon_sym_or2] = ACTIONS(2441), + [anon_sym_not_DASHin2] = ACTIONS(2441), + [anon_sym_has2] = ACTIONS(2441), + [anon_sym_not_DASHhas2] = ACTIONS(2441), + [anon_sym_starts_DASHwith2] = ACTIONS(2441), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2441), + [anon_sym_ends_DASHwith2] = ACTIONS(2441), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2441), + [anon_sym_EQ_EQ2] = ACTIONS(2441), + [anon_sym_BANG_EQ2] = ACTIONS(2441), + [anon_sym_LT2] = ACTIONS(2443), + [anon_sym_LT_EQ2] = ACTIONS(2441), + [anon_sym_GT_EQ2] = ACTIONS(2441), + [anon_sym_EQ_TILDE2] = ACTIONS(2441), + [anon_sym_BANG_TILDE2] = ACTIONS(2441), + [anon_sym_like2] = ACTIONS(2441), + [anon_sym_not_DASHlike2] = ACTIONS(2441), + [anon_sym_STAR_STAR2] = ACTIONS(2441), + [anon_sym_PLUS_PLUS2] = ACTIONS(2441), + [anon_sym_SLASH2] = ACTIONS(2443), + [anon_sym_mod2] = ACTIONS(2441), + [anon_sym_SLASH_SLASH2] = ACTIONS(2441), + [anon_sym_PLUS2] = ACTIONS(2443), + [anon_sym_bit_DASHshl2] = ACTIONS(2441), + [anon_sym_bit_DASHshr2] = ACTIONS(2441), + [anon_sym_bit_DASHand2] = ACTIONS(2441), + [anon_sym_bit_DASHxor2] = ACTIONS(2441), + [anon_sym_bit_DASHor2] = ACTIONS(2441), + [anon_sym_err_GT] = ACTIONS(2443), + [anon_sym_out_GT] = ACTIONS(2443), + [anon_sym_e_GT] = ACTIONS(2443), + [anon_sym_o_GT] = ACTIONS(2443), + [anon_sym_err_PLUSout_GT] = ACTIONS(2443), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2443), + [anon_sym_o_PLUSe_GT] = ACTIONS(2443), + [anon_sym_e_PLUSo_GT] = ACTIONS(2443), + [anon_sym_err_GT_GT] = ACTIONS(2441), + [anon_sym_out_GT_GT] = ACTIONS(2441), + [anon_sym_e_GT_GT] = ACTIONS(2441), + [anon_sym_o_GT_GT] = ACTIONS(2441), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2441), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2441), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2441), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2441), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(804)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(804), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(823)] = { + [aux_sym__repeat_newline] = STATE(1046), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(823), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(805)] = { - [aux_sym__repeat_newline] = STATE(1052), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(805), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(824)] = { + [aux_sym__repeat_newline] = STATE(980), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(824), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(806)] = { - [aux_sym__repeat_newline] = STATE(1053), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(806), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(825)] = { + [sym_comment] = STATE(825), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_in] = ACTIONS(2066), + [sym__newline] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_err_GT_PIPE] = ACTIONS(2066), + [anon_sym_out_GT_PIPE] = ACTIONS(2066), + [anon_sym_e_GT_PIPE] = ACTIONS(2066), + [anon_sym_o_GT_PIPE] = ACTIONS(2066), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2066), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2066), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2066), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2066), + [anon_sym_RPAREN] = ACTIONS(2066), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_EQ_GT] = ACTIONS(2066), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2066), + [anon_sym_xor2] = ACTIONS(2066), + [anon_sym_or2] = ACTIONS(2066), + [anon_sym_not_DASHin2] = ACTIONS(2066), + [anon_sym_has2] = ACTIONS(2066), + [anon_sym_not_DASHhas2] = ACTIONS(2066), + [anon_sym_starts_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2066), + [anon_sym_ends_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2066), + [anon_sym_EQ_EQ2] = ACTIONS(2066), + [anon_sym_BANG_EQ2] = ACTIONS(2066), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2066), + [anon_sym_GT_EQ2] = ACTIONS(2066), + [anon_sym_EQ_TILDE2] = ACTIONS(2066), + [anon_sym_BANG_TILDE2] = ACTIONS(2066), + [anon_sym_like2] = ACTIONS(2066), + [anon_sym_not_DASHlike2] = ACTIONS(2066), + [anon_sym_STAR_STAR2] = ACTIONS(2066), + [anon_sym_PLUS_PLUS2] = ACTIONS(2066), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2066), + [anon_sym_SLASH_SLASH2] = ACTIONS(2066), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2066), + [anon_sym_bit_DASHshr2] = ACTIONS(2066), + [anon_sym_bit_DASHand2] = ACTIONS(2066), + [anon_sym_bit_DASHxor2] = ACTIONS(2066), + [anon_sym_bit_DASHor2] = ACTIONS(2066), + [anon_sym_err_GT] = ACTIONS(2068), + [anon_sym_out_GT] = ACTIONS(2068), + [anon_sym_e_GT] = ACTIONS(2068), + [anon_sym_o_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT] = ACTIONS(2068), + [anon_sym_err_GT_GT] = ACTIONS(2066), + [anon_sym_out_GT_GT] = ACTIONS(2066), + [anon_sym_e_GT_GT] = ACTIONS(2066), + [anon_sym_o_GT_GT] = ACTIONS(2066), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2066), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2066), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2066), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2066), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(807)] = { - [aux_sym__repeat_newline] = STATE(1055), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(807), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(826)] = { + [sym_comment] = STATE(826), + [anon_sym_if] = ACTIONS(2074), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_EQ_GT] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2076), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2076), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2076), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2076), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_err_GT] = ACTIONS(2076), + [anon_sym_out_GT] = ACTIONS(2076), + [anon_sym_e_GT] = ACTIONS(2076), + [anon_sym_o_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT] = ACTIONS(2076), + [anon_sym_err_GT_GT] = ACTIONS(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(808)] = { - [sym_comment] = STATE(808), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [STATE(827)] = { + [sym_comment] = STATE(827), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1515), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1515), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(809)] = { - [aux_sym__repeat_newline] = STATE(1057), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(809), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(828)] = { + [aux_sym__repeat_newline] = STATE(981), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(828), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(810)] = { - [aux_sym__repeat_newline] = STATE(1060), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(810), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(829)] = { + [sym_comment] = STATE(829), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(811)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1681), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1121), - [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(811), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(830)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1284), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1038), + [sym__unquoted_with_expr] = STATE(1290), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(830), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2405), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2415), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(812)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1682), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1123), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(812), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(831)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1294), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1039), + [sym__unquoted_with_expr] = STATE(1298), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(831), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2405), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2415), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(813)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1683), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(813), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(832)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1301), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1040), + [sym__unquoted_with_expr] = STATE(1318), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(832), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2405), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2415), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(814)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1684), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(974), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(814), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [STATE(833)] = { + [sym_comment] = STATE(833), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [sym__newline] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_err_GT_PIPE] = ACTIONS(2445), + [anon_sym_out_GT_PIPE] = ACTIONS(2445), + [anon_sym_e_GT_PIPE] = ACTIONS(2445), + [anon_sym_o_GT_PIPE] = ACTIONS(2445), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2445), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2445), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2445), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_GT2] = ACTIONS(2447), + [anon_sym_DASH2] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_EQ_GT] = ACTIONS(2445), + [anon_sym_STAR2] = ACTIONS(2447), + [anon_sym_and2] = ACTIONS(2445), + [anon_sym_xor2] = ACTIONS(2445), + [anon_sym_or2] = ACTIONS(2445), + [anon_sym_not_DASHin2] = ACTIONS(2445), + [anon_sym_has2] = ACTIONS(2445), + [anon_sym_not_DASHhas2] = ACTIONS(2445), + [anon_sym_starts_DASHwith2] = ACTIONS(2445), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2445), + [anon_sym_ends_DASHwith2] = ACTIONS(2445), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2445), + [anon_sym_EQ_EQ2] = ACTIONS(2445), + [anon_sym_BANG_EQ2] = ACTIONS(2445), + [anon_sym_LT2] = ACTIONS(2447), + [anon_sym_LT_EQ2] = ACTIONS(2445), + [anon_sym_GT_EQ2] = ACTIONS(2445), + [anon_sym_EQ_TILDE2] = ACTIONS(2445), + [anon_sym_BANG_TILDE2] = ACTIONS(2445), + [anon_sym_like2] = ACTIONS(2445), + [anon_sym_not_DASHlike2] = ACTIONS(2445), + [anon_sym_STAR_STAR2] = ACTIONS(2445), + [anon_sym_PLUS_PLUS2] = ACTIONS(2445), + [anon_sym_SLASH2] = ACTIONS(2447), + [anon_sym_mod2] = ACTIONS(2445), + [anon_sym_SLASH_SLASH2] = ACTIONS(2445), + [anon_sym_PLUS2] = ACTIONS(2447), + [anon_sym_bit_DASHshl2] = ACTIONS(2445), + [anon_sym_bit_DASHshr2] = ACTIONS(2445), + [anon_sym_bit_DASHand2] = ACTIONS(2445), + [anon_sym_bit_DASHxor2] = ACTIONS(2445), + [anon_sym_bit_DASHor2] = ACTIONS(2445), + [anon_sym_err_GT] = ACTIONS(2447), + [anon_sym_out_GT] = ACTIONS(2447), + [anon_sym_e_GT] = ACTIONS(2447), + [anon_sym_o_GT] = ACTIONS(2447), + [anon_sym_err_PLUSout_GT] = ACTIONS(2447), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2447), + [anon_sym_o_PLUSe_GT] = ACTIONS(2447), + [anon_sym_e_PLUSo_GT] = ACTIONS(2447), + [anon_sym_err_GT_GT] = ACTIONS(2445), + [anon_sym_out_GT_GT] = ACTIONS(2445), + [anon_sym_e_GT_GT] = ACTIONS(2445), + [anon_sym_o_GT_GT] = ACTIONS(2445), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2445), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2445), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2445), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2445), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(815)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1685), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1307), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(815), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(834)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1319), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1041), + [sym__unquoted_with_expr] = STATE(1321), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(834), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2405), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2415), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(816)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1686), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1071), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(816), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(835)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1322), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1042), + [sym__unquoted_with_expr] = STATE(1325), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(835), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2405), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2415), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(817)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1687), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1127), - [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(817), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(836)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1326), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1043), + [sym__unquoted_with_expr] = STATE(1328), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(836), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2405), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2415), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(818)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1689), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(972), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(818), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [STATE(837)] = { + [sym_comment] = STATE(837), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2449), + [sym__newline] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_err_GT_PIPE] = ACTIONS(2449), + [anon_sym_out_GT_PIPE] = ACTIONS(2449), + [anon_sym_e_GT_PIPE] = ACTIONS(2449), + [anon_sym_o_GT_PIPE] = ACTIONS(2449), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2449), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2449), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2449), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_GT2] = ACTIONS(2451), + [anon_sym_DASH2] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_EQ_GT] = ACTIONS(2449), + [anon_sym_STAR2] = ACTIONS(2451), + [anon_sym_and2] = ACTIONS(2449), + [anon_sym_xor2] = ACTIONS(2449), + [anon_sym_or2] = ACTIONS(2449), + [anon_sym_not_DASHin2] = ACTIONS(2449), + [anon_sym_has2] = ACTIONS(2449), + [anon_sym_not_DASHhas2] = ACTIONS(2449), + [anon_sym_starts_DASHwith2] = ACTIONS(2449), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2449), + [anon_sym_ends_DASHwith2] = ACTIONS(2449), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2449), + [anon_sym_EQ_EQ2] = ACTIONS(2449), + [anon_sym_BANG_EQ2] = ACTIONS(2449), + [anon_sym_LT2] = ACTIONS(2451), + [anon_sym_LT_EQ2] = ACTIONS(2449), + [anon_sym_GT_EQ2] = ACTIONS(2449), + [anon_sym_EQ_TILDE2] = ACTIONS(2449), + [anon_sym_BANG_TILDE2] = ACTIONS(2449), + [anon_sym_like2] = ACTIONS(2449), + [anon_sym_not_DASHlike2] = ACTIONS(2449), + [anon_sym_STAR_STAR2] = ACTIONS(2449), + [anon_sym_PLUS_PLUS2] = ACTIONS(2449), + [anon_sym_SLASH2] = ACTIONS(2451), + [anon_sym_mod2] = ACTIONS(2449), + [anon_sym_SLASH_SLASH2] = ACTIONS(2449), + [anon_sym_PLUS2] = ACTIONS(2451), + [anon_sym_bit_DASHshl2] = ACTIONS(2449), + [anon_sym_bit_DASHshr2] = ACTIONS(2449), + [anon_sym_bit_DASHand2] = ACTIONS(2449), + [anon_sym_bit_DASHxor2] = ACTIONS(2449), + [anon_sym_bit_DASHor2] = ACTIONS(2449), + [anon_sym_err_GT] = ACTIONS(2451), + [anon_sym_out_GT] = ACTIONS(2451), + [anon_sym_e_GT] = ACTIONS(2451), + [anon_sym_o_GT] = ACTIONS(2451), + [anon_sym_err_PLUSout_GT] = ACTIONS(2451), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2451), + [anon_sym_o_PLUSe_GT] = ACTIONS(2451), + [anon_sym_e_PLUSo_GT] = ACTIONS(2451), + [anon_sym_err_GT_GT] = ACTIONS(2449), + [anon_sym_out_GT_GT] = ACTIONS(2449), + [anon_sym_e_GT_GT] = ACTIONS(2449), + [anon_sym_o_GT_GT] = ACTIONS(2449), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2449), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2449), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2449), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2449), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(819)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1282), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1296), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(819), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [STATE(838)] = { + [sym_comment] = STATE(838), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [sym__newline] = ACTIONS(2453), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_err_GT_PIPE] = ACTIONS(2453), + [anon_sym_out_GT_PIPE] = ACTIONS(2453), + [anon_sym_e_GT_PIPE] = ACTIONS(2453), + [anon_sym_o_GT_PIPE] = ACTIONS(2453), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2453), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2453), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2453), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2453), + [anon_sym_RPAREN] = ACTIONS(2453), + [anon_sym_GT2] = ACTIONS(2455), + [anon_sym_DASH2] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_EQ_GT] = ACTIONS(2453), + [anon_sym_STAR2] = ACTIONS(2455), + [anon_sym_and2] = ACTIONS(2453), + [anon_sym_xor2] = ACTIONS(2453), + [anon_sym_or2] = ACTIONS(2453), + [anon_sym_not_DASHin2] = ACTIONS(2453), + [anon_sym_has2] = ACTIONS(2453), + [anon_sym_not_DASHhas2] = ACTIONS(2453), + [anon_sym_starts_DASHwith2] = ACTIONS(2453), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2453), + [anon_sym_ends_DASHwith2] = ACTIONS(2453), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2453), + [anon_sym_EQ_EQ2] = ACTIONS(2453), + [anon_sym_BANG_EQ2] = ACTIONS(2453), + [anon_sym_LT2] = ACTIONS(2455), + [anon_sym_LT_EQ2] = ACTIONS(2453), + [anon_sym_GT_EQ2] = ACTIONS(2453), + [anon_sym_EQ_TILDE2] = ACTIONS(2453), + [anon_sym_BANG_TILDE2] = ACTIONS(2453), + [anon_sym_like2] = ACTIONS(2453), + [anon_sym_not_DASHlike2] = ACTIONS(2453), + [anon_sym_STAR_STAR2] = ACTIONS(2453), + [anon_sym_PLUS_PLUS2] = ACTIONS(2453), + [anon_sym_SLASH2] = ACTIONS(2455), + [anon_sym_mod2] = ACTIONS(2453), + [anon_sym_SLASH_SLASH2] = ACTIONS(2453), + [anon_sym_PLUS2] = ACTIONS(2455), + [anon_sym_bit_DASHshl2] = ACTIONS(2453), + [anon_sym_bit_DASHshr2] = ACTIONS(2453), + [anon_sym_bit_DASHand2] = ACTIONS(2453), + [anon_sym_bit_DASHxor2] = ACTIONS(2453), + [anon_sym_bit_DASHor2] = ACTIONS(2453), + [anon_sym_err_GT] = ACTIONS(2455), + [anon_sym_out_GT] = ACTIONS(2455), + [anon_sym_e_GT] = ACTIONS(2455), + [anon_sym_o_GT] = ACTIONS(2455), + [anon_sym_err_PLUSout_GT] = ACTIONS(2455), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2455), + [anon_sym_o_PLUSe_GT] = ACTIONS(2455), + [anon_sym_e_PLUSo_GT] = ACTIONS(2455), + [anon_sym_err_GT_GT] = ACTIONS(2453), + [anon_sym_out_GT_GT] = ACTIONS(2453), + [anon_sym_e_GT_GT] = ACTIONS(2453), + [anon_sym_o_GT_GT] = ACTIONS(2453), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2453), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2453), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2453), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2453), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(820)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1690), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1016), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(820), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(839)] = { + [sym_comment] = STATE(839), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [sym__newline] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_err_GT_PIPE] = ACTIONS(2457), + [anon_sym_out_GT_PIPE] = ACTIONS(2457), + [anon_sym_e_GT_PIPE] = ACTIONS(2457), + [anon_sym_o_GT_PIPE] = ACTIONS(2457), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2457), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2457), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2457), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2457), + [anon_sym_RPAREN] = ACTIONS(2457), + [anon_sym_GT2] = ACTIONS(2459), + [anon_sym_DASH2] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_EQ_GT] = ACTIONS(2457), + [anon_sym_STAR2] = ACTIONS(2459), + [anon_sym_and2] = ACTIONS(2457), + [anon_sym_xor2] = ACTIONS(2457), + [anon_sym_or2] = ACTIONS(2457), + [anon_sym_not_DASHin2] = ACTIONS(2457), + [anon_sym_has2] = ACTIONS(2457), + [anon_sym_not_DASHhas2] = ACTIONS(2457), + [anon_sym_starts_DASHwith2] = ACTIONS(2457), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2457), + [anon_sym_ends_DASHwith2] = ACTIONS(2457), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2457), + [anon_sym_EQ_EQ2] = ACTIONS(2457), + [anon_sym_BANG_EQ2] = ACTIONS(2457), + [anon_sym_LT2] = ACTIONS(2459), + [anon_sym_LT_EQ2] = ACTIONS(2457), + [anon_sym_GT_EQ2] = ACTIONS(2457), + [anon_sym_EQ_TILDE2] = ACTIONS(2457), + [anon_sym_BANG_TILDE2] = ACTIONS(2457), + [anon_sym_like2] = ACTIONS(2457), + [anon_sym_not_DASHlike2] = ACTIONS(2457), + [anon_sym_STAR_STAR2] = ACTIONS(2457), + [anon_sym_PLUS_PLUS2] = ACTIONS(2457), + [anon_sym_SLASH2] = ACTIONS(2459), + [anon_sym_mod2] = ACTIONS(2457), + [anon_sym_SLASH_SLASH2] = ACTIONS(2457), + [anon_sym_PLUS2] = ACTIONS(2459), + [anon_sym_bit_DASHshl2] = ACTIONS(2457), + [anon_sym_bit_DASHshr2] = ACTIONS(2457), + [anon_sym_bit_DASHand2] = ACTIONS(2457), + [anon_sym_bit_DASHxor2] = ACTIONS(2457), + [anon_sym_bit_DASHor2] = ACTIONS(2457), + [anon_sym_err_GT] = ACTIONS(2459), + [anon_sym_out_GT] = ACTIONS(2459), + [anon_sym_e_GT] = ACTIONS(2459), + [anon_sym_o_GT] = ACTIONS(2459), + [anon_sym_err_PLUSout_GT] = ACTIONS(2459), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2459), + [anon_sym_o_PLUSe_GT] = ACTIONS(2459), + [anon_sym_e_PLUSo_GT] = ACTIONS(2459), + [anon_sym_err_GT_GT] = ACTIONS(2457), + [anon_sym_out_GT_GT] = ACTIONS(2457), + [anon_sym_e_GT_GT] = ACTIONS(2457), + [anon_sym_o_GT_GT] = ACTIONS(2457), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2457), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2457), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2457), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(840)] = { + [sym_comment] = STATE(840), + [ts_builtin_sym_end] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1535), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1535), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(841)] = { + [sym_comment] = STATE(841), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_in] = ACTIONS(2461), + [sym__newline] = ACTIONS(2461), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_PIPE] = ACTIONS(2461), + [anon_sym_err_GT_PIPE] = ACTIONS(2461), + [anon_sym_out_GT_PIPE] = ACTIONS(2461), + [anon_sym_e_GT_PIPE] = ACTIONS(2461), + [anon_sym_o_GT_PIPE] = ACTIONS(2461), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2461), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2461), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2461), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2461), + [anon_sym_RPAREN] = ACTIONS(2461), + [anon_sym_GT2] = ACTIONS(2463), + [anon_sym_DASH2] = ACTIONS(2461), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_EQ_GT] = ACTIONS(2461), + [anon_sym_STAR2] = ACTIONS(2463), + [anon_sym_and2] = ACTIONS(2461), + [anon_sym_xor2] = ACTIONS(2461), + [anon_sym_or2] = ACTIONS(2461), + [anon_sym_not_DASHin2] = ACTIONS(2461), + [anon_sym_has2] = ACTIONS(2461), + [anon_sym_not_DASHhas2] = ACTIONS(2461), + [anon_sym_starts_DASHwith2] = ACTIONS(2461), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2461), + [anon_sym_ends_DASHwith2] = ACTIONS(2461), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2461), + [anon_sym_EQ_EQ2] = ACTIONS(2461), + [anon_sym_BANG_EQ2] = ACTIONS(2461), + [anon_sym_LT2] = ACTIONS(2463), + [anon_sym_LT_EQ2] = ACTIONS(2461), + [anon_sym_GT_EQ2] = ACTIONS(2461), + [anon_sym_EQ_TILDE2] = ACTIONS(2461), + [anon_sym_BANG_TILDE2] = ACTIONS(2461), + [anon_sym_like2] = ACTIONS(2461), + [anon_sym_not_DASHlike2] = ACTIONS(2461), + [anon_sym_STAR_STAR2] = ACTIONS(2461), + [anon_sym_PLUS_PLUS2] = ACTIONS(2461), + [anon_sym_SLASH2] = ACTIONS(2463), + [anon_sym_mod2] = ACTIONS(2461), + [anon_sym_SLASH_SLASH2] = ACTIONS(2461), + [anon_sym_PLUS2] = ACTIONS(2463), + [anon_sym_bit_DASHshl2] = ACTIONS(2461), + [anon_sym_bit_DASHshr2] = ACTIONS(2461), + [anon_sym_bit_DASHand2] = ACTIONS(2461), + [anon_sym_bit_DASHxor2] = ACTIONS(2461), + [anon_sym_bit_DASHor2] = ACTIONS(2461), + [anon_sym_err_GT] = ACTIONS(2463), + [anon_sym_out_GT] = ACTIONS(2463), + [anon_sym_e_GT] = ACTIONS(2463), + [anon_sym_o_GT] = ACTIONS(2463), + [anon_sym_err_PLUSout_GT] = ACTIONS(2463), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2463), + [anon_sym_o_PLUSe_GT] = ACTIONS(2463), + [anon_sym_e_PLUSo_GT] = ACTIONS(2463), + [anon_sym_err_GT_GT] = ACTIONS(2461), + [anon_sym_out_GT_GT] = ACTIONS(2461), + [anon_sym_e_GT_GT] = ACTIONS(2461), + [anon_sym_o_GT_GT] = ACTIONS(2461), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2461), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2461), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2461), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(842)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1329), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1044), + [sym__unquoted_with_expr] = STATE(1264), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(842), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2405), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2415), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(821)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1691), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1033), - [sym__unquoted_with_expr] = STATE(1280), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(821), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(843)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1265), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1056), + [sym__unquoted_with_expr] = STATE(1267), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(843), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2405), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2415), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(822)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1692), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1345), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(822), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(844)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1268), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1058), + [sym__unquoted_with_expr] = STATE(1269), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(844), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2405), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2415), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(823)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1693), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1284), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(823), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(845)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1275), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1069), + [sym__unquoted_with_expr] = STATE(1276), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(845), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2405), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2415), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(824)] = { - [aux_sym__repeat_newline] = STATE(1062), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(824), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(825)] = { - [aux_sym__repeat_newline] = STATE(1065), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(825), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(826)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4388), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(826), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(827)] = { - [aux_sym__repeat_newline] = STATE(1067), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(827), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(828)] = { - [aux_sym__repeat_newline] = STATE(1070), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(828), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(829)] = { - [aux_sym__repeat_newline] = STATE(1073), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(829), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(830)] = { - [sym_cell_path] = STATE(1320), - [sym_path] = STATE(783), - [sym_comment] = STATE(830), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1882), - [anon_sym_in] = ACTIONS(1882), - [sym__newline] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_err_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_GT_PIPE] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), - [anon_sym_GT2] = ACTIONS(1884), - [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_STAR2] = ACTIONS(1884), - [anon_sym_and2] = ACTIONS(1882), - [anon_sym_xor2] = ACTIONS(1882), - [anon_sym_or2] = ACTIONS(1882), - [anon_sym_not_DASHin2] = ACTIONS(1882), - [anon_sym_has2] = ACTIONS(1882), - [anon_sym_not_DASHhas2] = ACTIONS(1882), - [anon_sym_starts_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), - [anon_sym_ends_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), - [anon_sym_EQ_EQ2] = ACTIONS(1882), - [anon_sym_BANG_EQ2] = ACTIONS(1882), - [anon_sym_LT2] = ACTIONS(1884), - [anon_sym_LT_EQ2] = ACTIONS(1882), - [anon_sym_GT_EQ2] = ACTIONS(1882), - [anon_sym_EQ_TILDE2] = ACTIONS(1882), - [anon_sym_BANG_TILDE2] = ACTIONS(1882), - [anon_sym_like2] = ACTIONS(1882), - [anon_sym_not_DASHlike2] = ACTIONS(1882), - [anon_sym_STAR_STAR2] = ACTIONS(1882), - [anon_sym_PLUS_PLUS2] = ACTIONS(1882), - [anon_sym_SLASH2] = ACTIONS(1884), - [anon_sym_mod2] = ACTIONS(1882), - [anon_sym_SLASH_SLASH2] = ACTIONS(1882), - [anon_sym_PLUS2] = ACTIONS(1884), - [anon_sym_bit_DASHshl2] = ACTIONS(1882), - [anon_sym_bit_DASHshr2] = ACTIONS(1882), - [anon_sym_bit_DASHand2] = ACTIONS(1882), - [anon_sym_bit_DASHxor2] = ACTIONS(1882), - [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1884), - [anon_sym_out_GT] = ACTIONS(1884), - [anon_sym_e_GT] = ACTIONS(1884), - [anon_sym_o_GT] = ACTIONS(1884), - [anon_sym_err_PLUSout_GT] = ACTIONS(1884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), - [anon_sym_o_PLUSe_GT] = ACTIONS(1884), - [anon_sym_e_PLUSo_GT] = ACTIONS(1884), - [anon_sym_err_GT_GT] = ACTIONS(1882), - [anon_sym_out_GT_GT] = ACTIONS(1882), - [anon_sym_e_GT_GT] = ACTIONS(1882), - [anon_sym_o_GT_GT] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(831)] = { - [aux_sym__repeat_newline] = STATE(1078), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(831), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(832)] = { - [aux_sym__repeat_newline] = STATE(1080), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(832), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(833)] = { - [aux_sym__repeat_newline] = STATE(1082), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(833), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(846)] = { + [sym_comment] = STATE(846), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2465), + [sym__newline] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_err_GT_PIPE] = ACTIONS(2465), + [anon_sym_out_GT_PIPE] = ACTIONS(2465), + [anon_sym_e_GT_PIPE] = ACTIONS(2465), + [anon_sym_o_GT_PIPE] = ACTIONS(2465), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2465), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2465), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2465), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2465), + [anon_sym_RPAREN] = ACTIONS(2465), + [anon_sym_GT2] = ACTIONS(2467), + [anon_sym_DASH2] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2465), + [anon_sym_STAR2] = ACTIONS(2467), + [anon_sym_and2] = ACTIONS(2465), + [anon_sym_xor2] = ACTIONS(2465), + [anon_sym_or2] = ACTIONS(2465), + [anon_sym_not_DASHin2] = ACTIONS(2465), + [anon_sym_has2] = ACTIONS(2465), + [anon_sym_not_DASHhas2] = ACTIONS(2465), + [anon_sym_starts_DASHwith2] = ACTIONS(2465), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2465), + [anon_sym_ends_DASHwith2] = ACTIONS(2465), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2465), + [anon_sym_EQ_EQ2] = ACTIONS(2465), + [anon_sym_BANG_EQ2] = ACTIONS(2465), + [anon_sym_LT2] = ACTIONS(2467), + [anon_sym_LT_EQ2] = ACTIONS(2465), + [anon_sym_GT_EQ2] = ACTIONS(2465), + [anon_sym_EQ_TILDE2] = ACTIONS(2465), + [anon_sym_BANG_TILDE2] = ACTIONS(2465), + [anon_sym_like2] = ACTIONS(2465), + [anon_sym_not_DASHlike2] = ACTIONS(2465), + [anon_sym_STAR_STAR2] = ACTIONS(2465), + [anon_sym_PLUS_PLUS2] = ACTIONS(2465), + [anon_sym_SLASH2] = ACTIONS(2467), + [anon_sym_mod2] = ACTIONS(2465), + [anon_sym_SLASH_SLASH2] = ACTIONS(2465), + [anon_sym_PLUS2] = ACTIONS(2467), + [anon_sym_bit_DASHshl2] = ACTIONS(2465), + [anon_sym_bit_DASHshr2] = ACTIONS(2465), + [anon_sym_bit_DASHand2] = ACTIONS(2465), + [anon_sym_bit_DASHxor2] = ACTIONS(2465), + [anon_sym_bit_DASHor2] = ACTIONS(2465), + [anon_sym_err_GT] = ACTIONS(2467), + [anon_sym_out_GT] = ACTIONS(2467), + [anon_sym_e_GT] = ACTIONS(2467), + [anon_sym_o_GT] = ACTIONS(2467), + [anon_sym_err_PLUSout_GT] = ACTIONS(2467), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2467), + [anon_sym_o_PLUSe_GT] = ACTIONS(2467), + [anon_sym_e_PLUSo_GT] = ACTIONS(2467), + [anon_sym_err_GT_GT] = ACTIONS(2465), + [anon_sym_out_GT_GT] = ACTIONS(2465), + [anon_sym_e_GT_GT] = ACTIONS(2465), + [anon_sym_o_GT_GT] = ACTIONS(2465), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2465), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2465), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2465), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2465), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(834)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(834), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(847)] = { + [sym_comment] = STATE(847), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_in] = ACTIONS(2469), + [sym__newline] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_err_GT_PIPE] = ACTIONS(2469), + [anon_sym_out_GT_PIPE] = ACTIONS(2469), + [anon_sym_e_GT_PIPE] = ACTIONS(2469), + [anon_sym_o_GT_PIPE] = ACTIONS(2469), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2469), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2469), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2469), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2469), + [anon_sym_RPAREN] = ACTIONS(2469), + [anon_sym_GT2] = ACTIONS(2471), + [anon_sym_DASH2] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_EQ_GT] = ACTIONS(2469), + [anon_sym_STAR2] = ACTIONS(2471), + [anon_sym_and2] = ACTIONS(2469), + [anon_sym_xor2] = ACTIONS(2469), + [anon_sym_or2] = ACTIONS(2469), + [anon_sym_not_DASHin2] = ACTIONS(2469), + [anon_sym_has2] = ACTIONS(2469), + [anon_sym_not_DASHhas2] = ACTIONS(2469), + [anon_sym_starts_DASHwith2] = ACTIONS(2469), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2469), + [anon_sym_ends_DASHwith2] = ACTIONS(2469), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2469), + [anon_sym_EQ_EQ2] = ACTIONS(2469), + [anon_sym_BANG_EQ2] = ACTIONS(2469), + [anon_sym_LT2] = ACTIONS(2471), + [anon_sym_LT_EQ2] = ACTIONS(2469), + [anon_sym_GT_EQ2] = ACTIONS(2469), + [anon_sym_EQ_TILDE2] = ACTIONS(2469), + [anon_sym_BANG_TILDE2] = ACTIONS(2469), + [anon_sym_like2] = ACTIONS(2469), + [anon_sym_not_DASHlike2] = ACTIONS(2469), + [anon_sym_STAR_STAR2] = ACTIONS(2469), + [anon_sym_PLUS_PLUS2] = ACTIONS(2469), + [anon_sym_SLASH2] = ACTIONS(2471), + [anon_sym_mod2] = ACTIONS(2469), + [anon_sym_SLASH_SLASH2] = ACTIONS(2469), + [anon_sym_PLUS2] = ACTIONS(2471), + [anon_sym_bit_DASHshl2] = ACTIONS(2469), + [anon_sym_bit_DASHshr2] = ACTIONS(2469), + [anon_sym_bit_DASHand2] = ACTIONS(2469), + [anon_sym_bit_DASHxor2] = ACTIONS(2469), + [anon_sym_bit_DASHor2] = ACTIONS(2469), + [anon_sym_err_GT] = ACTIONS(2471), + [anon_sym_out_GT] = ACTIONS(2471), + [anon_sym_e_GT] = ACTIONS(2471), + [anon_sym_o_GT] = ACTIONS(2471), + [anon_sym_err_PLUSout_GT] = ACTIONS(2471), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2471), + [anon_sym_o_PLUSe_GT] = ACTIONS(2471), + [anon_sym_e_PLUSo_GT] = ACTIONS(2471), + [anon_sym_err_GT_GT] = ACTIONS(2469), + [anon_sym_out_GT_GT] = ACTIONS(2469), + [anon_sym_e_GT_GT] = ACTIONS(2469), + [anon_sym_o_GT_GT] = ACTIONS(2469), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2469), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2469), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2469), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2469), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(835)] = { - [aux_sym__repeat_newline] = STATE(1088), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(835), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(848)] = { + [sym_comment] = STATE(848), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_in] = ACTIONS(2473), + [sym__newline] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2473), + [anon_sym_err_GT_PIPE] = ACTIONS(2473), + [anon_sym_out_GT_PIPE] = ACTIONS(2473), + [anon_sym_e_GT_PIPE] = ACTIONS(2473), + [anon_sym_o_GT_PIPE] = ACTIONS(2473), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2473), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2473), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2473), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2473), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_GT2] = ACTIONS(2475), + [anon_sym_DASH2] = ACTIONS(2473), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_EQ_GT] = ACTIONS(2473), + [anon_sym_STAR2] = ACTIONS(2475), + [anon_sym_and2] = ACTIONS(2473), + [anon_sym_xor2] = ACTIONS(2473), + [anon_sym_or2] = ACTIONS(2473), + [anon_sym_not_DASHin2] = ACTIONS(2473), + [anon_sym_has2] = ACTIONS(2473), + [anon_sym_not_DASHhas2] = ACTIONS(2473), + [anon_sym_starts_DASHwith2] = ACTIONS(2473), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2473), + [anon_sym_ends_DASHwith2] = ACTIONS(2473), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2473), + [anon_sym_EQ_EQ2] = ACTIONS(2473), + [anon_sym_BANG_EQ2] = ACTIONS(2473), + [anon_sym_LT2] = ACTIONS(2475), + [anon_sym_LT_EQ2] = ACTIONS(2473), + [anon_sym_GT_EQ2] = ACTIONS(2473), + [anon_sym_EQ_TILDE2] = ACTIONS(2473), + [anon_sym_BANG_TILDE2] = ACTIONS(2473), + [anon_sym_like2] = ACTIONS(2473), + [anon_sym_not_DASHlike2] = ACTIONS(2473), + [anon_sym_STAR_STAR2] = ACTIONS(2473), + [anon_sym_PLUS_PLUS2] = ACTIONS(2473), + [anon_sym_SLASH2] = ACTIONS(2475), + [anon_sym_mod2] = ACTIONS(2473), + [anon_sym_SLASH_SLASH2] = ACTIONS(2473), + [anon_sym_PLUS2] = ACTIONS(2475), + [anon_sym_bit_DASHshl2] = ACTIONS(2473), + [anon_sym_bit_DASHshr2] = ACTIONS(2473), + [anon_sym_bit_DASHand2] = ACTIONS(2473), + [anon_sym_bit_DASHxor2] = ACTIONS(2473), + [anon_sym_bit_DASHor2] = ACTIONS(2473), + [anon_sym_err_GT] = ACTIONS(2475), + [anon_sym_out_GT] = ACTIONS(2475), + [anon_sym_e_GT] = ACTIONS(2475), + [anon_sym_o_GT] = ACTIONS(2475), + [anon_sym_err_PLUSout_GT] = ACTIONS(2475), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2475), + [anon_sym_o_PLUSe_GT] = ACTIONS(2475), + [anon_sym_e_PLUSo_GT] = ACTIONS(2475), + [anon_sym_err_GT_GT] = ACTIONS(2473), + [anon_sym_out_GT_GT] = ACTIONS(2473), + [anon_sym_e_GT_GT] = ACTIONS(2473), + [anon_sym_o_GT_GT] = ACTIONS(2473), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2473), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2473), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2473), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2473), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(836)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4235), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4578), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(836), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(849)] = { + [sym_comment] = STATE(849), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_in] = ACTIONS(2477), + [sym__newline] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_err_GT_PIPE] = ACTIONS(2477), + [anon_sym_out_GT_PIPE] = ACTIONS(2477), + [anon_sym_e_GT_PIPE] = ACTIONS(2477), + [anon_sym_o_GT_PIPE] = ACTIONS(2477), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2477), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2477), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2477), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2477), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_GT2] = ACTIONS(2479), + [anon_sym_DASH2] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_EQ_GT] = ACTIONS(2477), + [anon_sym_STAR2] = ACTIONS(2479), + [anon_sym_and2] = ACTIONS(2477), + [anon_sym_xor2] = ACTIONS(2477), + [anon_sym_or2] = ACTIONS(2477), + [anon_sym_not_DASHin2] = ACTIONS(2477), + [anon_sym_has2] = ACTIONS(2477), + [anon_sym_not_DASHhas2] = ACTIONS(2477), + [anon_sym_starts_DASHwith2] = ACTIONS(2477), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2477), + [anon_sym_ends_DASHwith2] = ACTIONS(2477), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2477), + [anon_sym_EQ_EQ2] = ACTIONS(2477), + [anon_sym_BANG_EQ2] = ACTIONS(2477), + [anon_sym_LT2] = ACTIONS(2479), + [anon_sym_LT_EQ2] = ACTIONS(2477), + [anon_sym_GT_EQ2] = ACTIONS(2477), + [anon_sym_EQ_TILDE2] = ACTIONS(2477), + [anon_sym_BANG_TILDE2] = ACTIONS(2477), + [anon_sym_like2] = ACTIONS(2477), + [anon_sym_not_DASHlike2] = ACTIONS(2477), + [anon_sym_STAR_STAR2] = ACTIONS(2477), + [anon_sym_PLUS_PLUS2] = ACTIONS(2477), + [anon_sym_SLASH2] = ACTIONS(2479), + [anon_sym_mod2] = ACTIONS(2477), + [anon_sym_SLASH_SLASH2] = ACTIONS(2477), + [anon_sym_PLUS2] = ACTIONS(2479), + [anon_sym_bit_DASHshl2] = ACTIONS(2477), + [anon_sym_bit_DASHshr2] = ACTIONS(2477), + [anon_sym_bit_DASHand2] = ACTIONS(2477), + [anon_sym_bit_DASHxor2] = ACTIONS(2477), + [anon_sym_bit_DASHor2] = ACTIONS(2477), + [anon_sym_err_GT] = ACTIONS(2479), + [anon_sym_out_GT] = ACTIONS(2479), + [anon_sym_e_GT] = ACTIONS(2479), + [anon_sym_o_GT] = ACTIONS(2479), + [anon_sym_err_PLUSout_GT] = ACTIONS(2479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2479), + [anon_sym_o_PLUSe_GT] = ACTIONS(2479), + [anon_sym_e_PLUSo_GT] = ACTIONS(2479), + [anon_sym_err_GT_GT] = ACTIONS(2477), + [anon_sym_out_GT_GT] = ACTIONS(2477), + [anon_sym_e_GT_GT] = ACTIONS(2477), + [anon_sym_o_GT_GT] = ACTIONS(2477), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2477), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2477), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2477), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2477), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(837)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4581), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4758), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(837), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), - [anon_sym_export] = ACTIONS(2335), - [anon_sym_alias] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_mut] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2338), - [anon_sym_use] = ACTIONS(2338), - [anon_sym_export_DASHenv] = ACTIONS(2338), - [anon_sym_extern] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_loop] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_catch] = ACTIONS(2338), - [anon_sym_match] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [anon_sym_null] = ACTIONS(2344), - [aux_sym_cmd_identifier_token3] = ACTIONS(2347), - [aux_sym_cmd_identifier_token4] = ACTIONS(2347), - [aux_sym_cmd_identifier_token5] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_DASH2] = ACTIONS(2356), - [anon_sym_PLUS2] = ACTIONS(2356), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2362), - [aux_sym__val_number_decimal_token1] = ACTIONS(2365), - [aux_sym__val_number_decimal_token2] = ACTIONS(2368), - [aux_sym__val_number_decimal_token3] = ACTIONS(2371), - [aux_sym__val_number_decimal_token4] = ACTIONS(2371), - [aux_sym__val_number_token1] = ACTIONS(2374), - [aux_sym__val_number_token2] = ACTIONS(2374), - [aux_sym__val_number_token3] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2380), - [anon_sym_BQUOTE] = ACTIONS(2383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2386), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), + [STATE(850)] = { + [sym_cell_path] = STATE(1315), + [sym_path] = STATE(827), + [sym_comment] = STATE(850), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [sym__newline] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_err_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_GT_PIPE] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1868), + [anon_sym_GT2] = ACTIONS(1870), + [anon_sym_DASH2] = ACTIONS(1868), + [anon_sym_STAR2] = ACTIONS(1870), + [anon_sym_and2] = ACTIONS(1868), + [anon_sym_xor2] = ACTIONS(1868), + [anon_sym_or2] = ACTIONS(1868), + [anon_sym_not_DASHin2] = ACTIONS(1868), + [anon_sym_has2] = ACTIONS(1868), + [anon_sym_not_DASHhas2] = ACTIONS(1868), + [anon_sym_starts_DASHwith2] = ACTIONS(1868), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1868), + [anon_sym_ends_DASHwith2] = ACTIONS(1868), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1868), + [anon_sym_EQ_EQ2] = ACTIONS(1868), + [anon_sym_BANG_EQ2] = ACTIONS(1868), + [anon_sym_LT2] = ACTIONS(1870), + [anon_sym_LT_EQ2] = ACTIONS(1868), + [anon_sym_GT_EQ2] = ACTIONS(1868), + [anon_sym_EQ_TILDE2] = ACTIONS(1868), + [anon_sym_BANG_TILDE2] = ACTIONS(1868), + [anon_sym_like2] = ACTIONS(1868), + [anon_sym_not_DASHlike2] = ACTIONS(1868), + [anon_sym_STAR_STAR2] = ACTIONS(1868), + [anon_sym_PLUS_PLUS2] = ACTIONS(1868), + [anon_sym_SLASH2] = ACTIONS(1870), + [anon_sym_mod2] = ACTIONS(1868), + [anon_sym_SLASH_SLASH2] = ACTIONS(1868), + [anon_sym_PLUS2] = ACTIONS(1870), + [anon_sym_bit_DASHshl2] = ACTIONS(1868), + [anon_sym_bit_DASHshr2] = ACTIONS(1868), + [anon_sym_bit_DASHand2] = ACTIONS(1868), + [anon_sym_bit_DASHxor2] = ACTIONS(1868), + [anon_sym_bit_DASHor2] = ACTIONS(1868), + [anon_sym_DOT2] = ACTIONS(2251), + [anon_sym_err_GT] = ACTIONS(1870), + [anon_sym_out_GT] = ACTIONS(1870), + [anon_sym_e_GT] = ACTIONS(1870), + [anon_sym_o_GT] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT] = ACTIONS(1870), + [anon_sym_err_GT_GT] = ACTIONS(1868), + [anon_sym_out_GT_GT] = ACTIONS(1868), + [anon_sym_e_GT_GT] = ACTIONS(1868), + [anon_sym_o_GT_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2395), }, - [STATE(838)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2212), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(838), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(851)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1658), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(957), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(851), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(839)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2137), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(839), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(852)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1659), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(959), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(852), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(840)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2138), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(840), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(853)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1660), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(899), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(853), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(841)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2139), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(841), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(854)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1661), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(901), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(854), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(842)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2140), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(842), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(855)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1662), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(904), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(855), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(843)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2141), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(843), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(856)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1663), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(906), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(856), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(844)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2142), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(844), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(857)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1664), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(672), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(857), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(845)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2143), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(845), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(858)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1665), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(673), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(858), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(846)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(846), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(859)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(895), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(674), + [sym__unquoted_with_expr] = STATE(932), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(859), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(847)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2144), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(847), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(860)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1666), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(675), + [sym__unquoted_with_expr] = STATE(934), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(860), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(848)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2145), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(848), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(861)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1667), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(676), + [sym__unquoted_with_expr] = STATE(936), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(861), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(849)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2146), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(849), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(862)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1668), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(677), + [sym__unquoted_with_expr] = STATE(939), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(862), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(850)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2147), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(850), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(863)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1669), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(678), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(863), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(851)] = { - [aux_sym__repeat_newline] = STATE(1091), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(851), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(852)] = { - [aux_sym__repeat_newline] = STATE(1092), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(852), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(853)] = { - [aux_sym__repeat_newline] = STATE(1093), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(853), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(854)] = { - [aux_sym__repeat_newline] = STATE(1094), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(854), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(855)] = { - [aux_sym__repeat_newline] = STATE(1095), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(855), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(864)] = { + [sym_comment] = STATE(864), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_in] = ACTIONS(2481), + [sym__newline] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2481), + [anon_sym_err_GT_PIPE] = ACTIONS(2481), + [anon_sym_out_GT_PIPE] = ACTIONS(2481), + [anon_sym_e_GT_PIPE] = ACTIONS(2481), + [anon_sym_o_GT_PIPE] = ACTIONS(2481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2481), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_GT2] = ACTIONS(2483), + [anon_sym_DASH2] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_EQ_GT] = ACTIONS(2481), + [anon_sym_STAR2] = ACTIONS(2483), + [anon_sym_and2] = ACTIONS(2481), + [anon_sym_xor2] = ACTIONS(2481), + [anon_sym_or2] = ACTIONS(2481), + [anon_sym_not_DASHin2] = ACTIONS(2481), + [anon_sym_has2] = ACTIONS(2481), + [anon_sym_not_DASHhas2] = ACTIONS(2481), + [anon_sym_starts_DASHwith2] = ACTIONS(2481), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2481), + [anon_sym_ends_DASHwith2] = ACTIONS(2481), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2481), + [anon_sym_EQ_EQ2] = ACTIONS(2481), + [anon_sym_BANG_EQ2] = ACTIONS(2481), + [anon_sym_LT2] = ACTIONS(2483), + [anon_sym_LT_EQ2] = ACTIONS(2481), + [anon_sym_GT_EQ2] = ACTIONS(2481), + [anon_sym_EQ_TILDE2] = ACTIONS(2481), + [anon_sym_BANG_TILDE2] = ACTIONS(2481), + [anon_sym_like2] = ACTIONS(2481), + [anon_sym_not_DASHlike2] = ACTIONS(2481), + [anon_sym_STAR_STAR2] = ACTIONS(2481), + [anon_sym_PLUS_PLUS2] = ACTIONS(2481), + [anon_sym_SLASH2] = ACTIONS(2483), + [anon_sym_mod2] = ACTIONS(2481), + [anon_sym_SLASH_SLASH2] = ACTIONS(2481), + [anon_sym_PLUS2] = ACTIONS(2483), + [anon_sym_bit_DASHshl2] = ACTIONS(2481), + [anon_sym_bit_DASHshr2] = ACTIONS(2481), + [anon_sym_bit_DASHand2] = ACTIONS(2481), + [anon_sym_bit_DASHxor2] = ACTIONS(2481), + [anon_sym_bit_DASHor2] = ACTIONS(2481), + [anon_sym_err_GT] = ACTIONS(2483), + [anon_sym_out_GT] = ACTIONS(2483), + [anon_sym_e_GT] = ACTIONS(2483), + [anon_sym_o_GT] = ACTIONS(2483), + [anon_sym_err_PLUSout_GT] = ACTIONS(2483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2483), + [anon_sym_o_PLUSe_GT] = ACTIONS(2483), + [anon_sym_e_PLUSo_GT] = ACTIONS(2483), + [anon_sym_err_GT_GT] = ACTIONS(2481), + [anon_sym_out_GT_GT] = ACTIONS(2481), + [anon_sym_e_GT_GT] = ACTIONS(2481), + [anon_sym_o_GT_GT] = ACTIONS(2481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2481), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(856)] = { - [aux_sym__repeat_newline] = STATE(1096), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(856), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(865)] = { + [sym_comment] = STATE(865), + [anon_sym_in] = ACTIONS(2374), + [sym__newline] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_err_GT_PIPE] = ACTIONS(2374), + [anon_sym_out_GT_PIPE] = ACTIONS(2374), + [anon_sym_e_GT_PIPE] = ACTIONS(2374), + [anon_sym_o_GT_PIPE] = ACTIONS(2374), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2374), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2374), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2374), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2374), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_GT2] = ACTIONS(2381), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_STAR2] = ACTIONS(2381), + [anon_sym_and2] = ACTIONS(2374), + [anon_sym_xor2] = ACTIONS(2374), + [anon_sym_or2] = ACTIONS(2374), + [anon_sym_not_DASHin2] = ACTIONS(2374), + [anon_sym_has2] = ACTIONS(2374), + [anon_sym_not_DASHhas2] = ACTIONS(2374), + [anon_sym_starts_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2374), + [anon_sym_ends_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2374), + [anon_sym_EQ_EQ2] = ACTIONS(2374), + [anon_sym_BANG_EQ2] = ACTIONS(2374), + [anon_sym_LT2] = ACTIONS(2381), + [anon_sym_LT_EQ2] = ACTIONS(2374), + [anon_sym_GT_EQ2] = ACTIONS(2374), + [anon_sym_EQ_TILDE2] = ACTIONS(2374), + [anon_sym_BANG_TILDE2] = ACTIONS(2374), + [anon_sym_like2] = ACTIONS(2374), + [anon_sym_not_DASHlike2] = ACTIONS(2374), + [anon_sym_STAR_STAR2] = ACTIONS(2374), + [anon_sym_PLUS_PLUS2] = ACTIONS(2374), + [anon_sym_SLASH2] = ACTIONS(2381), + [anon_sym_mod2] = ACTIONS(2374), + [anon_sym_SLASH_SLASH2] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2381), + [anon_sym_bit_DASHshl2] = ACTIONS(2374), + [anon_sym_bit_DASHshr2] = ACTIONS(2374), + [anon_sym_bit_DASHand2] = ACTIONS(2374), + [anon_sym_bit_DASHxor2] = ACTIONS(2374), + [anon_sym_bit_DASHor2] = ACTIONS(2374), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(2381), + [anon_sym_out_GT] = ACTIONS(2381), + [anon_sym_e_GT] = ACTIONS(2381), + [anon_sym_o_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT] = ACTIONS(2381), + [anon_sym_err_GT_GT] = ACTIONS(2374), + [anon_sym_out_GT_GT] = ACTIONS(2374), + [anon_sym_e_GT_GT] = ACTIONS(2374), + [anon_sym_o_GT_GT] = ACTIONS(2374), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2374), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2374), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2374), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2374), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(857)] = { - [aux_sym__repeat_newline] = STATE(1097), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(857), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(866)] = { + [aux_sym__repeat_newline] = STATE(1116), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(866), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(858)] = { - [aux_sym__repeat_newline] = STATE(1098), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(858), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(867)] = { + [sym_comment] = STATE(867), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_in] = ACTIONS(2485), + [sym__newline] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2485), + [anon_sym_err_GT_PIPE] = ACTIONS(2485), + [anon_sym_out_GT_PIPE] = ACTIONS(2485), + [anon_sym_e_GT_PIPE] = ACTIONS(2485), + [anon_sym_o_GT_PIPE] = ACTIONS(2485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2485), + [anon_sym_RPAREN] = ACTIONS(2485), + [anon_sym_GT2] = ACTIONS(2487), + [anon_sym_DASH2] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_EQ_GT] = ACTIONS(2485), + [anon_sym_STAR2] = ACTIONS(2487), + [anon_sym_and2] = ACTIONS(2485), + [anon_sym_xor2] = ACTIONS(2485), + [anon_sym_or2] = ACTIONS(2485), + [anon_sym_not_DASHin2] = ACTIONS(2485), + [anon_sym_has2] = ACTIONS(2485), + [anon_sym_not_DASHhas2] = ACTIONS(2485), + [anon_sym_starts_DASHwith2] = ACTIONS(2485), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2485), + [anon_sym_ends_DASHwith2] = ACTIONS(2485), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2485), + [anon_sym_EQ_EQ2] = ACTIONS(2485), + [anon_sym_BANG_EQ2] = ACTIONS(2485), + [anon_sym_LT2] = ACTIONS(2487), + [anon_sym_LT_EQ2] = ACTIONS(2485), + [anon_sym_GT_EQ2] = ACTIONS(2485), + [anon_sym_EQ_TILDE2] = ACTIONS(2485), + [anon_sym_BANG_TILDE2] = ACTIONS(2485), + [anon_sym_like2] = ACTIONS(2485), + [anon_sym_not_DASHlike2] = ACTIONS(2485), + [anon_sym_STAR_STAR2] = ACTIONS(2485), + [anon_sym_PLUS_PLUS2] = ACTIONS(2485), + [anon_sym_SLASH2] = ACTIONS(2487), + [anon_sym_mod2] = ACTIONS(2485), + [anon_sym_SLASH_SLASH2] = ACTIONS(2485), + [anon_sym_PLUS2] = ACTIONS(2487), + [anon_sym_bit_DASHshl2] = ACTIONS(2485), + [anon_sym_bit_DASHshr2] = ACTIONS(2485), + [anon_sym_bit_DASHand2] = ACTIONS(2485), + [anon_sym_bit_DASHxor2] = ACTIONS(2485), + [anon_sym_bit_DASHor2] = ACTIONS(2485), + [anon_sym_err_GT] = ACTIONS(2487), + [anon_sym_out_GT] = ACTIONS(2487), + [anon_sym_e_GT] = ACTIONS(2487), + [anon_sym_o_GT] = ACTIONS(2487), + [anon_sym_err_PLUSout_GT] = ACTIONS(2487), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2487), + [anon_sym_o_PLUSe_GT] = ACTIONS(2487), + [anon_sym_e_PLUSo_GT] = ACTIONS(2487), + [anon_sym_err_GT_GT] = ACTIONS(2485), + [anon_sym_out_GT_GT] = ACTIONS(2485), + [anon_sym_e_GT_GT] = ACTIONS(2485), + [anon_sym_o_GT_GT] = ACTIONS(2485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2485), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(859)] = { - [aux_sym__repeat_newline] = STATE(1100), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(859), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(868)] = { + [aux_sym__repeat_newline] = STATE(967), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(868), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(860)] = { - [aux_sym__repeat_newline] = STATE(1101), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(860), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(869)] = { + [sym_comment] = STATE(869), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_in] = ACTIONS(2489), + [sym__newline] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2489), + [anon_sym_err_GT_PIPE] = ACTIONS(2489), + [anon_sym_out_GT_PIPE] = ACTIONS(2489), + [anon_sym_e_GT_PIPE] = ACTIONS(2489), + [anon_sym_o_GT_PIPE] = ACTIONS(2489), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2489), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2489), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2489), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2489), + [anon_sym_GT2] = ACTIONS(2491), + [anon_sym_DASH2] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_EQ_GT] = ACTIONS(2489), + [anon_sym_STAR2] = ACTIONS(2491), + [anon_sym_and2] = ACTIONS(2489), + [anon_sym_xor2] = ACTIONS(2489), + [anon_sym_or2] = ACTIONS(2489), + [anon_sym_not_DASHin2] = ACTIONS(2489), + [anon_sym_has2] = ACTIONS(2489), + [anon_sym_not_DASHhas2] = ACTIONS(2489), + [anon_sym_starts_DASHwith2] = ACTIONS(2489), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2489), + [anon_sym_ends_DASHwith2] = ACTIONS(2489), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2489), + [anon_sym_EQ_EQ2] = ACTIONS(2489), + [anon_sym_BANG_EQ2] = ACTIONS(2489), + [anon_sym_LT2] = ACTIONS(2491), + [anon_sym_LT_EQ2] = ACTIONS(2489), + [anon_sym_GT_EQ2] = ACTIONS(2489), + [anon_sym_EQ_TILDE2] = ACTIONS(2489), + [anon_sym_BANG_TILDE2] = ACTIONS(2489), + [anon_sym_like2] = ACTIONS(2489), + [anon_sym_not_DASHlike2] = ACTIONS(2489), + [anon_sym_STAR_STAR2] = ACTIONS(2489), + [anon_sym_PLUS_PLUS2] = ACTIONS(2489), + [anon_sym_SLASH2] = ACTIONS(2491), + [anon_sym_mod2] = ACTIONS(2489), + [anon_sym_SLASH_SLASH2] = ACTIONS(2489), + [anon_sym_PLUS2] = ACTIONS(2491), + [anon_sym_bit_DASHshl2] = ACTIONS(2489), + [anon_sym_bit_DASHshr2] = ACTIONS(2489), + [anon_sym_bit_DASHand2] = ACTIONS(2489), + [anon_sym_bit_DASHxor2] = ACTIONS(2489), + [anon_sym_bit_DASHor2] = ACTIONS(2489), + [anon_sym_err_GT] = ACTIONS(2491), + [anon_sym_out_GT] = ACTIONS(2491), + [anon_sym_e_GT] = ACTIONS(2491), + [anon_sym_o_GT] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT] = ACTIONS(2491), + [anon_sym_err_GT_GT] = ACTIONS(2489), + [anon_sym_out_GT_GT] = ACTIONS(2489), + [anon_sym_e_GT_GT] = ACTIONS(2489), + [anon_sym_o_GT_GT] = ACTIONS(2489), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2489), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2489), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2489), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2489), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(861)] = { - [aux_sym__repeat_newline] = STATE(1102), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(861), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(870)] = { + [aux_sym__repeat_newline] = STATE(1002), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(870), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(862)] = { - [aux_sym__repeat_newline] = STATE(1106), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(862), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(871)] = { + [sym_comment] = STATE(871), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_in] = ACTIONS(2493), + [sym__newline] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_PIPE] = ACTIONS(2493), + [anon_sym_err_GT_PIPE] = ACTIONS(2493), + [anon_sym_out_GT_PIPE] = ACTIONS(2493), + [anon_sym_e_GT_PIPE] = ACTIONS(2493), + [anon_sym_o_GT_PIPE] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2493), + [anon_sym_RPAREN] = ACTIONS(2493), + [anon_sym_GT2] = ACTIONS(2495), + [anon_sym_DASH2] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_EQ_GT] = ACTIONS(2493), + [anon_sym_STAR2] = ACTIONS(2495), + [anon_sym_and2] = ACTIONS(2493), + [anon_sym_xor2] = ACTIONS(2493), + [anon_sym_or2] = ACTIONS(2493), + [anon_sym_not_DASHin2] = ACTIONS(2493), + [anon_sym_has2] = ACTIONS(2493), + [anon_sym_not_DASHhas2] = ACTIONS(2493), + [anon_sym_starts_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2493), + [anon_sym_ends_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2493), + [anon_sym_EQ_EQ2] = ACTIONS(2493), + [anon_sym_BANG_EQ2] = ACTIONS(2493), + [anon_sym_LT2] = ACTIONS(2495), + [anon_sym_LT_EQ2] = ACTIONS(2493), + [anon_sym_GT_EQ2] = ACTIONS(2493), + [anon_sym_EQ_TILDE2] = ACTIONS(2493), + [anon_sym_BANG_TILDE2] = ACTIONS(2493), + [anon_sym_like2] = ACTIONS(2493), + [anon_sym_not_DASHlike2] = ACTIONS(2493), + [anon_sym_STAR_STAR2] = ACTIONS(2493), + [anon_sym_PLUS_PLUS2] = ACTIONS(2493), + [anon_sym_SLASH2] = ACTIONS(2495), + [anon_sym_mod2] = ACTIONS(2493), + [anon_sym_SLASH_SLASH2] = ACTIONS(2493), + [anon_sym_PLUS2] = ACTIONS(2495), + [anon_sym_bit_DASHshl2] = ACTIONS(2493), + [anon_sym_bit_DASHshr2] = ACTIONS(2493), + [anon_sym_bit_DASHand2] = ACTIONS(2493), + [anon_sym_bit_DASHxor2] = ACTIONS(2493), + [anon_sym_bit_DASHor2] = ACTIONS(2493), + [anon_sym_err_GT] = ACTIONS(2495), + [anon_sym_out_GT] = ACTIONS(2495), + [anon_sym_e_GT] = ACTIONS(2495), + [anon_sym_o_GT] = ACTIONS(2495), + [anon_sym_err_PLUSout_GT] = ACTIONS(2495), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2495), + [anon_sym_o_PLUSe_GT] = ACTIONS(2495), + [anon_sym_e_PLUSo_GT] = ACTIONS(2495), + [anon_sym_err_GT_GT] = ACTIONS(2493), + [anon_sym_out_GT_GT] = ACTIONS(2493), + [anon_sym_e_GT_GT] = ACTIONS(2493), + [anon_sym_o_GT_GT] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2493), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(863)] = { - [aux_sym__repeat_newline] = STATE(1107), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(863), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(872)] = { + [aux_sym__repeat_newline] = STATE(1020), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(872), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(864)] = { - [sym_cell_path] = STATE(1274), - [sym_path] = STATE(783), - [sym_comment] = STATE(864), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [STATE(873)] = { + [aux_sym__repeat_newline] = STATE(1049), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(873), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(865)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1665), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(865), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(866)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1666), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(866), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(867)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1667), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(867), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(868)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1668), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(868), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(869)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1669), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(869), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(870)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1670), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(870), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(871)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1671), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(871), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(872)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1672), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(872), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(873)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(873), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, [STATE(874)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1673), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1277), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1070), + [sym__unquoted_with_expr] = STATE(1285), + [sym__unquoted_anonymous_prefix] = STATE(4564), [sym_comment] = STATE(874), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(875)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1674), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(1068), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(875), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(876)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1675), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(876), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_EQ_GT] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_COLON2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(877)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1676), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(1075), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(877), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(878)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4551), - [sym__record_key] = STATE(4971), [sym_comment] = STATE(878), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_EQ_GT] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_COLON2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(879)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4727), - [sym__record_key] = STATE(4971), + [aux_sym__repeat_newline] = STATE(1077), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(879), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_alias] = ACTIONS(2425), - [anon_sym_let] = ACTIONS(2425), - [anon_sym_mut] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [aux_sym_cmd_identifier_token1] = ACTIONS(2428), - [anon_sym_def] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_export_DASHenv] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym_module] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_catch] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [anon_sym_null] = ACTIONS(2431), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_DASH2] = ACTIONS(2443), - [anon_sym_PLUS2] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2446), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), - [aux_sym__val_number_decimal_token1] = ACTIONS(2452), - [aux_sym__val_number_decimal_token2] = ACTIONS(2455), - [aux_sym__val_number_decimal_token3] = ACTIONS(2458), - [aux_sym__val_number_decimal_token4] = ACTIONS(2458), - [aux_sym__val_number_token1] = ACTIONS(2461), - [aux_sym__val_number_token2] = ACTIONS(2461), - [aux_sym__val_number_token3] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_BQUOTE] = ACTIONS(2470), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(880)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2185), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(1083), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(880), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(881)] = { - [aux_sym__repeat_newline] = STATE(3365), - [aux_sym__pipe_separator] = STATE(885), [sym_comment] = STATE(881), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_alias] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_mut] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [aux_sym_cmd_identifier_token1] = ACTIONS(2485), - [anon_sym_def] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2487), - [anon_sym_export_DASHenv] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_loop] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_catch] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_in] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [anon_sym_null] = ACTIONS(2487), - [aux_sym_cmd_identifier_token3] = ACTIONS(2487), - [aux_sym_cmd_identifier_token4] = ACTIONS(2487), - [aux_sym_cmd_identifier_token5] = ACTIONS(2487), - [sym__newline] = ACTIONS(2489), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_err_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_GT_PIPE] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_DASH2] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_where] = ACTIONS(2487), - [aux_sym_expr_unary_token1] = ACTIONS(2487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2487), - [anon_sym_DOT_DOT_LT] = ACTIONS(2487), - [aux_sym__val_number_decimal_token1] = ACTIONS(2485), - [aux_sym__val_number_decimal_token2] = ACTIONS(2487), - [aux_sym__val_number_decimal_token3] = ACTIONS(2487), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2487), - [aux_sym__val_number_token2] = ACTIONS(2487), - [aux_sym__val_number_token3] = ACTIONS(2487), - [anon_sym_0b] = ACTIONS(2485), - [anon_sym_0o] = ACTIONS(2485), - [anon_sym_0x] = ACTIONS(2485), - [sym_val_date] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_BQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2487), - }, - [STATE(882)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1323), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1121), - [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(882), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(883)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1330), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1123), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(883), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(884)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1335), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(884), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(885)] = { - [aux_sym__repeat_newline] = STATE(3365), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(885), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [sym__newline] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_err_GT_PIPE] = ACTIONS(2498), - [anon_sym_out_GT_PIPE] = ACTIONS(2498), - [anon_sym_e_GT_PIPE] = ACTIONS(2498), - [anon_sym_o_GT_PIPE] = ACTIONS(2498), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2498), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2498), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2498), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_where] = ACTIONS(2493), - [aux_sym_expr_unary_token1] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2491), - [anon_sym_0x] = ACTIONS(2491), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_BQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), - }, - [STATE(886)] = { - [sym_comment] = STATE(886), [anon_sym_in] = ACTIONS(2501), [sym__newline] = ACTIONS(2501), [anon_sym_SEMI] = ACTIONS(2501), @@ -113597,6 +113493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2501), [anon_sym_LBRACE] = ACTIONS(2501), [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_EQ_GT] = ACTIONS(2501), [anon_sym_STAR2] = ACTIONS(2503), [anon_sym_and2] = ACTIONS(2501), [anon_sym_xor2] = ACTIONS(2501), @@ -113617,7 +113514,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2501), [anon_sym_like2] = ACTIONS(2501), [anon_sym_not_DASHlike2] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(2501), [anon_sym_STAR_STAR2] = ACTIONS(2501), [anon_sym_PLUS_PLUS2] = ACTIONS(2501), [anon_sym_SLASH2] = ACTIONS(2503), @@ -113629,6 +113525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2501), [anon_sym_bit_DASHxor2] = ACTIONS(2501), [anon_sym_bit_DASHor2] = ACTIONS(2501), + [anon_sym_COLON2] = ACTIONS(2501), [anon_sym_err_GT] = ACTIONS(2503), [anon_sym_out_GT] = ACTIONS(2503), [anon_sym_e_GT] = ACTIONS(2503), @@ -113645,12 +113542,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [sym__unquoted_pattern] = ACTIONS(2503), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(887)] = { - [sym_comment] = STATE(887), - [anon_sym_if] = ACTIONS(2505), + [STATE(882)] = { + [aux_sym__repeat_newline] = STATE(1085), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(882), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(883)] = { + [sym_comment] = STATE(883), [anon_sym_in] = ACTIONS(2505), [sym__newline] = ACTIONS(2505), [anon_sym_SEMI] = ACTIONS(2505), @@ -113700,6 +113665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2505), [anon_sym_bit_DASHxor2] = ACTIONS(2505), [anon_sym_bit_DASHor2] = ACTIONS(2505), + [anon_sym_COLON2] = ACTIONS(2505), [anon_sym_err_GT] = ACTIONS(2507), [anon_sym_out_GT] = ACTIONS(2507), [anon_sym_e_GT] = ACTIONS(2507), @@ -113718,1741 +113684,1606 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2505), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(888)] = { - [sym_comment] = STATE(888), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_EQ_GT] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [STATE(884)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1211), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(957), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(884), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(889)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2169), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(889), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(885)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1215), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(959), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(885), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(890)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2170), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(890), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(886)] = { + [aux_sym__repeat_newline] = STATE(964), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(886), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(887)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1217), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(899), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(887), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(891)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2172), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(891), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(888)] = { + [aux_sym__repeat_newline] = STATE(1091), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(888), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(889)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1221), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(901), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(889), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(892)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2175), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(892), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(890)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1223), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(904), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(890), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(893)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2177), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), + [STATE(891)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1228), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(691), [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(893), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(891), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(894)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2184), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(894), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(892)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1233), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(672), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(893)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1235), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(673), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(893), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(894)] = { + [aux_sym__repeat_newline] = STATE(973), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(894), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(895)] = { [sym_comment] = STATE(895), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(2509), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_EQ_GT] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2511), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2509), + [anon_sym_PLUS_PLUS2] = ACTIONS(2509), + [anon_sym_SLASH2] = ACTIONS(2511), + [anon_sym_mod2] = ACTIONS(2509), + [anon_sym_SLASH_SLASH2] = ACTIONS(2509), + [anon_sym_PLUS2] = ACTIONS(2511), + [anon_sym_bit_DASHshl2] = ACTIONS(2509), + [anon_sym_bit_DASHshr2] = ACTIONS(2509), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(896)] = { [sym_comment] = STATE(896), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_EQ_GT] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [anon_sym_in] = ACTIONS(2513), + [sym__newline] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_err_GT_PIPE] = ACTIONS(2513), + [anon_sym_out_GT_PIPE] = ACTIONS(2513), + [anon_sym_e_GT_PIPE] = ACTIONS(2513), + [anon_sym_o_GT_PIPE] = ACTIONS(2513), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2513), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2513), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2513), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2513), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_GT2] = ACTIONS(2515), + [anon_sym_DASH2] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_EQ_GT] = ACTIONS(2513), + [anon_sym_STAR2] = ACTIONS(2515), + [anon_sym_and2] = ACTIONS(2513), + [anon_sym_xor2] = ACTIONS(2513), + [anon_sym_or2] = ACTIONS(2513), + [anon_sym_not_DASHin2] = ACTIONS(2513), + [anon_sym_has2] = ACTIONS(2513), + [anon_sym_not_DASHhas2] = ACTIONS(2513), + [anon_sym_starts_DASHwith2] = ACTIONS(2513), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2513), + [anon_sym_ends_DASHwith2] = ACTIONS(2513), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2513), + [anon_sym_EQ_EQ2] = ACTIONS(2513), + [anon_sym_BANG_EQ2] = ACTIONS(2513), + [anon_sym_LT2] = ACTIONS(2515), + [anon_sym_LT_EQ2] = ACTIONS(2513), + [anon_sym_GT_EQ2] = ACTIONS(2513), + [anon_sym_EQ_TILDE2] = ACTIONS(2513), + [anon_sym_BANG_TILDE2] = ACTIONS(2513), + [anon_sym_like2] = ACTIONS(2513), + [anon_sym_not_DASHlike2] = ACTIONS(2513), + [anon_sym_STAR_STAR2] = ACTIONS(2513), + [anon_sym_PLUS_PLUS2] = ACTIONS(2513), + [anon_sym_SLASH2] = ACTIONS(2515), + [anon_sym_mod2] = ACTIONS(2513), + [anon_sym_SLASH_SLASH2] = ACTIONS(2513), + [anon_sym_PLUS2] = ACTIONS(2515), + [anon_sym_bit_DASHshl2] = ACTIONS(2513), + [anon_sym_bit_DASHshr2] = ACTIONS(2513), + [anon_sym_bit_DASHand2] = ACTIONS(2513), + [anon_sym_bit_DASHxor2] = ACTIONS(2513), + [anon_sym_bit_DASHor2] = ACTIONS(2513), + [anon_sym_err_GT] = ACTIONS(2515), + [anon_sym_out_GT] = ACTIONS(2515), + [anon_sym_e_GT] = ACTIONS(2515), + [anon_sym_o_GT] = ACTIONS(2515), + [anon_sym_err_PLUSout_GT] = ACTIONS(2515), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2515), + [anon_sym_o_PLUSe_GT] = ACTIONS(2515), + [anon_sym_e_PLUSo_GT] = ACTIONS(2515), + [anon_sym_err_GT_GT] = ACTIONS(2513), + [anon_sym_out_GT_GT] = ACTIONS(2513), + [anon_sym_e_GT_GT] = ACTIONS(2513), + [anon_sym_o_GT_GT] = ACTIONS(2513), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2513), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2513), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2513), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2513), [anon_sym_POUND] = ACTIONS(3), }, [STATE(897)] = { [sym_comment] = STATE(897), - [anon_sym_in] = ACTIONS(2511), - [sym__newline] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_err_GT_PIPE] = ACTIONS(2511), - [anon_sym_out_GT_PIPE] = ACTIONS(2511), - [anon_sym_e_GT_PIPE] = ACTIONS(2511), - [anon_sym_o_GT_PIPE] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2511), - [anon_sym_RPAREN] = ACTIONS(2511), - [anon_sym_GT2] = ACTIONS(2513), - [anon_sym_DASH2] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_EQ_GT] = ACTIONS(2511), - [anon_sym_STAR2] = ACTIONS(2513), - [anon_sym_and2] = ACTIONS(2511), - [anon_sym_xor2] = ACTIONS(2511), - [anon_sym_or2] = ACTIONS(2511), - [anon_sym_not_DASHin2] = ACTIONS(2511), - [anon_sym_has2] = ACTIONS(2511), - [anon_sym_not_DASHhas2] = ACTIONS(2511), - [anon_sym_starts_DASHwith2] = ACTIONS(2511), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2511), - [anon_sym_ends_DASHwith2] = ACTIONS(2511), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2511), - [anon_sym_EQ_EQ2] = ACTIONS(2511), - [anon_sym_BANG_EQ2] = ACTIONS(2511), - [anon_sym_LT2] = ACTIONS(2513), - [anon_sym_LT_EQ2] = ACTIONS(2511), - [anon_sym_GT_EQ2] = ACTIONS(2511), - [anon_sym_EQ_TILDE2] = ACTIONS(2511), - [anon_sym_BANG_TILDE2] = ACTIONS(2511), - [anon_sym_like2] = ACTIONS(2511), - [anon_sym_not_DASHlike2] = ACTIONS(2511), - [anon_sym_STAR_STAR2] = ACTIONS(2511), - [anon_sym_PLUS_PLUS2] = ACTIONS(2511), - [anon_sym_SLASH2] = ACTIONS(2513), - [anon_sym_mod2] = ACTIONS(2511), - [anon_sym_SLASH_SLASH2] = ACTIONS(2511), - [anon_sym_PLUS2] = ACTIONS(2513), - [anon_sym_bit_DASHshl2] = ACTIONS(2511), - [anon_sym_bit_DASHshr2] = ACTIONS(2511), - [anon_sym_bit_DASHand2] = ACTIONS(2511), - [anon_sym_bit_DASHxor2] = ACTIONS(2511), - [anon_sym_bit_DASHor2] = ACTIONS(2511), - [anon_sym_err_GT] = ACTIONS(2513), - [anon_sym_out_GT] = ACTIONS(2513), - [anon_sym_e_GT] = ACTIONS(2513), - [anon_sym_o_GT] = ACTIONS(2513), - [anon_sym_err_PLUSout_GT] = ACTIONS(2513), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2513), - [anon_sym_o_PLUSe_GT] = ACTIONS(2513), - [anon_sym_e_PLUSo_GT] = ACTIONS(2513), - [anon_sym_err_GT_GT] = ACTIONS(2511), - [anon_sym_out_GT_GT] = ACTIONS(2511), - [anon_sym_e_GT_GT] = ACTIONS(2511), - [anon_sym_o_GT_GT] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2511), + [anon_sym_in] = ACTIONS(2517), + [sym__newline] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(2517), + [anon_sym_err_GT_PIPE] = ACTIONS(2517), + [anon_sym_out_GT_PIPE] = ACTIONS(2517), + [anon_sym_e_GT_PIPE] = ACTIONS(2517), + [anon_sym_o_GT_PIPE] = ACTIONS(2517), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2517), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2517), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2517), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2517), + [anon_sym_GT2] = ACTIONS(2519), + [anon_sym_DASH2] = ACTIONS(2517), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_EQ_GT] = ACTIONS(2517), + [anon_sym_STAR2] = ACTIONS(2519), + [anon_sym_and2] = ACTIONS(2517), + [anon_sym_xor2] = ACTIONS(2517), + [anon_sym_or2] = ACTIONS(2517), + [anon_sym_not_DASHin2] = ACTIONS(2517), + [anon_sym_has2] = ACTIONS(2517), + [anon_sym_not_DASHhas2] = ACTIONS(2517), + [anon_sym_starts_DASHwith2] = ACTIONS(2517), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2517), + [anon_sym_ends_DASHwith2] = ACTIONS(2517), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2517), + [anon_sym_EQ_EQ2] = ACTIONS(2517), + [anon_sym_BANG_EQ2] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2519), + [anon_sym_LT_EQ2] = ACTIONS(2517), + [anon_sym_GT_EQ2] = ACTIONS(2517), + [anon_sym_EQ_TILDE2] = ACTIONS(2517), + [anon_sym_BANG_TILDE2] = ACTIONS(2517), + [anon_sym_like2] = ACTIONS(2517), + [anon_sym_not_DASHlike2] = ACTIONS(2517), + [anon_sym_STAR_STAR2] = ACTIONS(2517), + [anon_sym_PLUS_PLUS2] = ACTIONS(2517), + [anon_sym_SLASH2] = ACTIONS(2519), + [anon_sym_mod2] = ACTIONS(2517), + [anon_sym_SLASH_SLASH2] = ACTIONS(2517), + [anon_sym_PLUS2] = ACTIONS(2519), + [anon_sym_bit_DASHshl2] = ACTIONS(2517), + [anon_sym_bit_DASHshr2] = ACTIONS(2517), + [anon_sym_bit_DASHand2] = ACTIONS(2517), + [anon_sym_bit_DASHxor2] = ACTIONS(2517), + [anon_sym_bit_DASHor2] = ACTIONS(2517), + [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), + [anon_sym_err_GT_GT] = ACTIONS(2517), + [anon_sym_out_GT_GT] = ACTIONS(2517), + [anon_sym_e_GT_GT] = ACTIONS(2517), + [anon_sym_o_GT_GT] = ACTIONS(2517), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2517), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2517), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2517), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2517), [anon_sym_POUND] = ACTIONS(3), }, [STATE(898)] = { [sym_comment] = STATE(898), - [anon_sym_in] = ACTIONS(2515), - [sym__newline] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_PIPE] = ACTIONS(2515), - [anon_sym_err_GT_PIPE] = ACTIONS(2515), - [anon_sym_out_GT_PIPE] = ACTIONS(2515), - [anon_sym_e_GT_PIPE] = ACTIONS(2515), - [anon_sym_o_GT_PIPE] = ACTIONS(2515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2515), - [anon_sym_RPAREN] = ACTIONS(2515), - [anon_sym_GT2] = ACTIONS(2517), - [anon_sym_DASH2] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_EQ_GT] = ACTIONS(2515), - [anon_sym_STAR2] = ACTIONS(2517), - [anon_sym_and2] = ACTIONS(2515), - [anon_sym_xor2] = ACTIONS(2515), - [anon_sym_or2] = ACTIONS(2515), - [anon_sym_not_DASHin2] = ACTIONS(2515), - [anon_sym_has2] = ACTIONS(2515), - [anon_sym_not_DASHhas2] = ACTIONS(2515), - [anon_sym_starts_DASHwith2] = ACTIONS(2515), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2515), - [anon_sym_ends_DASHwith2] = ACTIONS(2515), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2515), - [anon_sym_EQ_EQ2] = ACTIONS(2515), - [anon_sym_BANG_EQ2] = ACTIONS(2515), - [anon_sym_LT2] = ACTIONS(2517), - [anon_sym_LT_EQ2] = ACTIONS(2515), - [anon_sym_GT_EQ2] = ACTIONS(2515), - [anon_sym_EQ_TILDE2] = ACTIONS(2515), - [anon_sym_BANG_TILDE2] = ACTIONS(2515), - [anon_sym_like2] = ACTIONS(2515), - [anon_sym_not_DASHlike2] = ACTIONS(2515), - [anon_sym_STAR_STAR2] = ACTIONS(2515), - [anon_sym_PLUS_PLUS2] = ACTIONS(2515), - [anon_sym_SLASH2] = ACTIONS(2517), - [anon_sym_mod2] = ACTIONS(2515), - [anon_sym_SLASH_SLASH2] = ACTIONS(2515), - [anon_sym_PLUS2] = ACTIONS(2517), - [anon_sym_bit_DASHshl2] = ACTIONS(2515), - [anon_sym_bit_DASHshr2] = ACTIONS(2515), - [anon_sym_bit_DASHand2] = ACTIONS(2515), - [anon_sym_bit_DASHxor2] = ACTIONS(2515), - [anon_sym_bit_DASHor2] = ACTIONS(2515), - [anon_sym_err_GT] = ACTIONS(2517), - [anon_sym_out_GT] = ACTIONS(2517), - [anon_sym_e_GT] = ACTIONS(2517), - [anon_sym_o_GT] = ACTIONS(2517), - [anon_sym_err_PLUSout_GT] = ACTIONS(2517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2517), - [anon_sym_o_PLUSe_GT] = ACTIONS(2517), - [anon_sym_e_PLUSo_GT] = ACTIONS(2517), - [anon_sym_err_GT_GT] = ACTIONS(2515), - [anon_sym_out_GT_GT] = ACTIONS(2515), - [anon_sym_e_GT_GT] = ACTIONS(2515), - [anon_sym_o_GT_GT] = ACTIONS(2515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2515), + [anon_sym_in] = ACTIONS(2521), + [sym__newline] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_err_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_GT_PIPE] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), + [anon_sym_RPAREN] = ACTIONS(2521), + [anon_sym_GT2] = ACTIONS(2523), + [anon_sym_DASH2] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_EQ_GT] = ACTIONS(2521), + [anon_sym_STAR2] = ACTIONS(2523), + [anon_sym_and2] = ACTIONS(2521), + [anon_sym_xor2] = ACTIONS(2521), + [anon_sym_or2] = ACTIONS(2521), + [anon_sym_not_DASHin2] = ACTIONS(2521), + [anon_sym_has2] = ACTIONS(2521), + [anon_sym_not_DASHhas2] = ACTIONS(2521), + [anon_sym_starts_DASHwith2] = ACTIONS(2521), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2521), + [anon_sym_ends_DASHwith2] = ACTIONS(2521), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2521), + [anon_sym_EQ_EQ2] = ACTIONS(2521), + [anon_sym_BANG_EQ2] = ACTIONS(2521), + [anon_sym_LT2] = ACTIONS(2523), + [anon_sym_LT_EQ2] = ACTIONS(2521), + [anon_sym_GT_EQ2] = ACTIONS(2521), + [anon_sym_EQ_TILDE2] = ACTIONS(2521), + [anon_sym_BANG_TILDE2] = ACTIONS(2521), + [anon_sym_like2] = ACTIONS(2521), + [anon_sym_not_DASHlike2] = ACTIONS(2521), + [anon_sym_STAR_STAR2] = ACTIONS(2521), + [anon_sym_PLUS_PLUS2] = ACTIONS(2521), + [anon_sym_SLASH2] = ACTIONS(2523), + [anon_sym_mod2] = ACTIONS(2521), + [anon_sym_SLASH_SLASH2] = ACTIONS(2521), + [anon_sym_PLUS2] = ACTIONS(2523), + [anon_sym_bit_DASHshl2] = ACTIONS(2521), + [anon_sym_bit_DASHshr2] = ACTIONS(2521), + [anon_sym_bit_DASHand2] = ACTIONS(2521), + [anon_sym_bit_DASHxor2] = ACTIONS(2521), + [anon_sym_bit_DASHor2] = ACTIONS(2521), + [anon_sym_err_GT] = ACTIONS(2523), + [anon_sym_out_GT] = ACTIONS(2523), + [anon_sym_e_GT] = ACTIONS(2523), + [anon_sym_o_GT] = ACTIONS(2523), + [anon_sym_err_PLUSout_GT] = ACTIONS(2523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), + [anon_sym_o_PLUSe_GT] = ACTIONS(2523), + [anon_sym_e_PLUSo_GT] = ACTIONS(2523), + [anon_sym_err_GT_GT] = ACTIONS(2521), + [anon_sym_out_GT_GT] = ACTIONS(2521), + [anon_sym_e_GT_GT] = ACTIONS(2521), + [anon_sym_o_GT_GT] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), [anon_sym_POUND] = ACTIONS(3), }, [STATE(899)] = { [sym_comment] = STATE(899), - [anon_sym_in] = ACTIONS(2519), - [sym__newline] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_err_GT_PIPE] = ACTIONS(2519), - [anon_sym_out_GT_PIPE] = ACTIONS(2519), - [anon_sym_e_GT_PIPE] = ACTIONS(2519), - [anon_sym_o_GT_PIPE] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2519), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_GT2] = ACTIONS(2521), - [anon_sym_DASH2] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_EQ_GT] = ACTIONS(2519), - [anon_sym_STAR2] = ACTIONS(2521), - [anon_sym_and2] = ACTIONS(2519), - [anon_sym_xor2] = ACTIONS(2519), - [anon_sym_or2] = ACTIONS(2519), - [anon_sym_not_DASHin2] = ACTIONS(2519), - [anon_sym_has2] = ACTIONS(2519), - [anon_sym_not_DASHhas2] = ACTIONS(2519), - [anon_sym_starts_DASHwith2] = ACTIONS(2519), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2519), - [anon_sym_ends_DASHwith2] = ACTIONS(2519), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2519), - [anon_sym_EQ_EQ2] = ACTIONS(2519), - [anon_sym_BANG_EQ2] = ACTIONS(2519), - [anon_sym_LT2] = ACTIONS(2521), - [anon_sym_LT_EQ2] = ACTIONS(2519), - [anon_sym_GT_EQ2] = ACTIONS(2519), - [anon_sym_EQ_TILDE2] = ACTIONS(2519), - [anon_sym_BANG_TILDE2] = ACTIONS(2519), - [anon_sym_like2] = ACTIONS(2519), - [anon_sym_not_DASHlike2] = ACTIONS(2519), - [anon_sym_STAR_STAR2] = ACTIONS(2519), - [anon_sym_PLUS_PLUS2] = ACTIONS(2519), - [anon_sym_SLASH2] = ACTIONS(2521), - [anon_sym_mod2] = ACTIONS(2519), - [anon_sym_SLASH_SLASH2] = ACTIONS(2519), - [anon_sym_PLUS2] = ACTIONS(2521), - [anon_sym_bit_DASHshl2] = ACTIONS(2519), - [anon_sym_bit_DASHshr2] = ACTIONS(2519), - [anon_sym_bit_DASHand2] = ACTIONS(2519), - [anon_sym_bit_DASHxor2] = ACTIONS(2519), - [anon_sym_bit_DASHor2] = ACTIONS(2519), - [anon_sym_err_GT] = ACTIONS(2521), - [anon_sym_out_GT] = ACTIONS(2521), - [anon_sym_e_GT] = ACTIONS(2521), - [anon_sym_o_GT] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT] = ACTIONS(2521), - [anon_sym_err_GT_GT] = ACTIONS(2519), - [anon_sym_out_GT_GT] = ACTIONS(2519), - [anon_sym_e_GT_GT] = ACTIONS(2519), - [anon_sym_o_GT_GT] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2519), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(900)] = { [sym_comment] = STATE(900), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [sym__newline] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_err_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_GT_PIPE] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1880), + [anon_sym_GT2] = ACTIONS(1882), + [anon_sym_DASH2] = ACTIONS(1880), + [anon_sym_STAR2] = ACTIONS(1882), + [anon_sym_and2] = ACTIONS(1880), + [anon_sym_xor2] = ACTIONS(1880), + [anon_sym_or2] = ACTIONS(1880), + [anon_sym_not_DASHin2] = ACTIONS(1880), + [anon_sym_has2] = ACTIONS(1880), + [anon_sym_not_DASHhas2] = ACTIONS(1880), + [anon_sym_starts_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1880), + [anon_sym_ends_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1880), + [anon_sym_EQ_EQ2] = ACTIONS(1880), + [anon_sym_BANG_EQ2] = ACTIONS(1880), + [anon_sym_LT2] = ACTIONS(1882), + [anon_sym_LT_EQ2] = ACTIONS(1880), + [anon_sym_GT_EQ2] = ACTIONS(1880), + [anon_sym_EQ_TILDE2] = ACTIONS(1880), + [anon_sym_BANG_TILDE2] = ACTIONS(1880), + [anon_sym_like2] = ACTIONS(1880), + [anon_sym_not_DASHlike2] = ACTIONS(1880), + [anon_sym_STAR_STAR2] = ACTIONS(1880), + [anon_sym_PLUS_PLUS2] = ACTIONS(1880), + [anon_sym_SLASH2] = ACTIONS(1882), + [anon_sym_mod2] = ACTIONS(1880), + [anon_sym_SLASH_SLASH2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1882), + [anon_sym_bit_DASHshl2] = ACTIONS(1880), + [anon_sym_bit_DASHshr2] = ACTIONS(1880), + [anon_sym_bit_DASHand2] = ACTIONS(1880), + [anon_sym_bit_DASHxor2] = ACTIONS(1880), + [anon_sym_bit_DASHor2] = ACTIONS(1880), + [anon_sym_DOT_DOT2] = ACTIONS(1882), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1880), + [anon_sym_err_GT] = ACTIONS(1882), + [anon_sym_out_GT] = ACTIONS(1882), + [anon_sym_e_GT] = ACTIONS(1882), + [anon_sym_o_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT] = ACTIONS(1882), + [anon_sym_err_GT_GT] = ACTIONS(1880), + [anon_sym_out_GT_GT] = ACTIONS(1880), + [anon_sym_e_GT_GT] = ACTIONS(1880), + [anon_sym_o_GT_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1880), [anon_sym_POUND] = ACTIONS(3), }, [STATE(901)] = { [sym_comment] = STATE(901), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(902)] = { [sym_comment] = STATE(902), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2525), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_RPAREN] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_EQ_GT] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2525), + [anon_sym_xor2] = ACTIONS(2525), + [anon_sym_or2] = ACTIONS(2525), + [anon_sym_not_DASHin2] = ACTIONS(2525), + [anon_sym_has2] = ACTIONS(2525), + [anon_sym_not_DASHhas2] = ACTIONS(2525), + [anon_sym_starts_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), + [anon_sym_ends_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2525), + [anon_sym_like2] = ACTIONS(2525), + [anon_sym_not_DASHlike2] = ACTIONS(2525), + [anon_sym_STAR_STAR2] = ACTIONS(2525), + [anon_sym_PLUS_PLUS2] = ACTIONS(2525), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2525), + [anon_sym_SLASH_SLASH2] = ACTIONS(2525), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2525), + [anon_sym_bit_DASHshr2] = ACTIONS(2525), + [anon_sym_bit_DASHand2] = ACTIONS(2525), + [anon_sym_bit_DASHxor2] = ACTIONS(2525), + [anon_sym_bit_DASHor2] = ACTIONS(2525), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), [anon_sym_POUND] = ACTIONS(3), }, [STATE(903)] = { [sym_comment] = STATE(903), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, [STATE(904)] = { [sym_comment] = STATE(904), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_RPAREN] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_EQ_GT] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(905)] = { [sym_comment] = STATE(905), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(2529), + [sym__newline] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(2529), + [anon_sym_err_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_GT_PIPE] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2529), + [anon_sym_RPAREN] = ACTIONS(2529), + [anon_sym_GT2] = ACTIONS(2531), + [anon_sym_DASH2] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_EQ_GT] = ACTIONS(2529), + [anon_sym_STAR2] = ACTIONS(2531), + [anon_sym_and2] = ACTIONS(2529), + [anon_sym_xor2] = ACTIONS(2529), + [anon_sym_or2] = ACTIONS(2529), + [anon_sym_not_DASHin2] = ACTIONS(2529), + [anon_sym_has2] = ACTIONS(2529), + [anon_sym_not_DASHhas2] = ACTIONS(2529), + [anon_sym_starts_DASHwith2] = ACTIONS(2529), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2529), + [anon_sym_ends_DASHwith2] = ACTIONS(2529), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2529), + [anon_sym_EQ_EQ2] = ACTIONS(2529), + [anon_sym_BANG_EQ2] = ACTIONS(2529), + [anon_sym_LT2] = ACTIONS(2531), + [anon_sym_LT_EQ2] = ACTIONS(2529), + [anon_sym_GT_EQ2] = ACTIONS(2529), + [anon_sym_EQ_TILDE2] = ACTIONS(2529), + [anon_sym_BANG_TILDE2] = ACTIONS(2529), + [anon_sym_like2] = ACTIONS(2529), + [anon_sym_not_DASHlike2] = ACTIONS(2529), + [anon_sym_STAR_STAR2] = ACTIONS(2529), + [anon_sym_PLUS_PLUS2] = ACTIONS(2529), + [anon_sym_SLASH2] = ACTIONS(2531), + [anon_sym_mod2] = ACTIONS(2529), + [anon_sym_SLASH_SLASH2] = ACTIONS(2529), + [anon_sym_PLUS2] = ACTIONS(2531), + [anon_sym_bit_DASHshl2] = ACTIONS(2529), + [anon_sym_bit_DASHshr2] = ACTIONS(2529), + [anon_sym_bit_DASHand2] = ACTIONS(2529), + [anon_sym_bit_DASHxor2] = ACTIONS(2529), + [anon_sym_bit_DASHor2] = ACTIONS(2529), + [anon_sym_err_GT] = ACTIONS(2531), + [anon_sym_out_GT] = ACTIONS(2531), + [anon_sym_e_GT] = ACTIONS(2531), + [anon_sym_o_GT] = ACTIONS(2531), + [anon_sym_err_PLUSout_GT] = ACTIONS(2531), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2531), + [anon_sym_o_PLUSe_GT] = ACTIONS(2531), + [anon_sym_e_PLUSo_GT] = ACTIONS(2531), + [anon_sym_err_GT_GT] = ACTIONS(2529), + [anon_sym_out_GT_GT] = ACTIONS(2529), + [anon_sym_e_GT_GT] = ACTIONS(2529), + [anon_sym_o_GT_GT] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2529), [anon_sym_POUND] = ACTIONS(3), }, [STATE(906)] = { [sym_comment] = STATE(906), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(907)] = { [sym_comment] = STATE(907), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(908)] = { - [sym_comment] = STATE(908), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(909)] = { - [sym_comment] = STATE(909), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(910)] = { - [sym_comment] = STATE(910), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(911)] = { - [sym_comment] = STATE(911), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(912)] = { - [aux_sym__repeat_newline] = STATE(964), - [sym_comment] = STATE(912), - [anon_sym_export] = ACTIONS(2527), - [anon_sym_alias] = ACTIONS(2529), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_mut] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [aux_sym_cmd_identifier_token1] = ACTIONS(2527), - [anon_sym_def] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_export_DASHenv] = ACTIONS(2529), - [anon_sym_extern] = ACTIONS(2529), - [anon_sym_module] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_loop] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_catch] = ACTIONS(2529), - [anon_sym_match] = ACTIONS(2529), - [anon_sym_in] = ACTIONS(2527), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [aux_sym_cmd_identifier_token3] = ACTIONS(2529), - [aux_sym_cmd_identifier_token4] = ACTIONS(2529), - [aux_sym_cmd_identifier_token5] = ACTIONS(2529), - [sym__newline] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2531), - [anon_sym_err_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_GT_PIPE] = ACTIONS(2531), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_DOLLAR] = ACTIONS(2527), - [anon_sym_DASH2] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(2527), - [anon_sym_where] = ACTIONS(2529), - [aux_sym_expr_unary_token1] = ACTIONS(2529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2529), - [anon_sym_DOT_DOT_LT] = ACTIONS(2529), - [aux_sym__val_number_decimal_token1] = ACTIONS(2527), - [aux_sym__val_number_decimal_token2] = ACTIONS(2529), - [aux_sym__val_number_decimal_token3] = ACTIONS(2529), - [aux_sym__val_number_decimal_token4] = ACTIONS(2529), - [aux_sym__val_number_token1] = ACTIONS(2529), - [aux_sym__val_number_token2] = ACTIONS(2529), - [aux_sym__val_number_token3] = ACTIONS(2529), - [anon_sym_0b] = ACTIONS(2527), - [anon_sym_0o] = ACTIONS(2527), - [anon_sym_0x] = ACTIONS(2527), - [sym_val_date] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_BQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2529), - [anon_sym_CARET] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2529), - }, - [STATE(913)] = { - [sym_comment] = STATE(913), [anon_sym_in] = ACTIONS(2533), [sym__newline] = ACTIONS(2533), [anon_sym_SEMI] = ACTIONS(2533), @@ -115468,9 +115299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2533), [anon_sym_GT2] = ACTIONS(2535), [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_LBRACE] = ACTIONS(2533), [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_EQ_GT] = ACTIONS(2533), [anon_sym_STAR2] = ACTIONS(2535), [anon_sym_and2] = ACTIONS(2533), [anon_sym_xor2] = ACTIONS(2533), @@ -115491,6 +115320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2533), [anon_sym_like2] = ACTIONS(2533), [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(2015), [anon_sym_STAR_STAR2] = ACTIONS(2533), [anon_sym_PLUS_PLUS2] = ACTIONS(2533), [anon_sym_SLASH2] = ACTIONS(2535), @@ -115518,532 +115348,671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [sym__unquoted_pattern] = ACTIONS(2021), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(914)] = { - [sym_comment] = STATE(914), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [STATE(908)] = { + [sym_comment] = STATE(908), + [ts_builtin_sym_end] = ACTIONS(2066), + [anon_sym_in] = ACTIONS(2066), + [sym__newline] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_err_GT_PIPE] = ACTIONS(2066), + [anon_sym_out_GT_PIPE] = ACTIONS(2066), + [anon_sym_e_GT_PIPE] = ACTIONS(2066), + [anon_sym_o_GT_PIPE] = ACTIONS(2066), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2066), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2066), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2066), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2066), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2066), + [anon_sym_xor2] = ACTIONS(2066), + [anon_sym_or2] = ACTIONS(2066), + [anon_sym_not_DASHin2] = ACTIONS(2066), + [anon_sym_has2] = ACTIONS(2066), + [anon_sym_not_DASHhas2] = ACTIONS(2066), + [anon_sym_starts_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2066), + [anon_sym_ends_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2066), + [anon_sym_EQ_EQ2] = ACTIONS(2066), + [anon_sym_BANG_EQ2] = ACTIONS(2066), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2066), + [anon_sym_GT_EQ2] = ACTIONS(2066), + [anon_sym_EQ_TILDE2] = ACTIONS(2066), + [anon_sym_BANG_TILDE2] = ACTIONS(2066), + [anon_sym_like2] = ACTIONS(2066), + [anon_sym_not_DASHlike2] = ACTIONS(2066), + [anon_sym_STAR_STAR2] = ACTIONS(2066), + [anon_sym_PLUS_PLUS2] = ACTIONS(2066), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2066), + [anon_sym_SLASH_SLASH2] = ACTIONS(2066), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2066), + [anon_sym_bit_DASHshr2] = ACTIONS(2066), + [anon_sym_bit_DASHand2] = ACTIONS(2066), + [anon_sym_bit_DASHxor2] = ACTIONS(2066), + [anon_sym_bit_DASHor2] = ACTIONS(2066), + [anon_sym_DOT_DOT2] = ACTIONS(2537), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2539), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2539), + [anon_sym_err_GT] = ACTIONS(2068), + [anon_sym_out_GT] = ACTIONS(2068), + [anon_sym_e_GT] = ACTIONS(2068), + [anon_sym_o_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT] = ACTIONS(2068), + [anon_sym_err_GT_GT] = ACTIONS(2066), + [anon_sym_out_GT_GT] = ACTIONS(2066), + [anon_sym_e_GT_GT] = ACTIONS(2066), + [anon_sym_o_GT_GT] = ACTIONS(2066), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2066), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2066), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2066), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2066), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(915)] = { - [sym_comment] = STATE(915), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [STATE(909)] = { + [sym_comment] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(2074), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2076), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2076), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2076), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2076), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(2541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2543), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2543), + [anon_sym_err_GT] = ACTIONS(2076), + [anon_sym_out_GT] = ACTIONS(2076), + [anon_sym_e_GT] = ACTIONS(2076), + [anon_sym_o_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT] = ACTIONS(2076), + [anon_sym_err_GT_GT] = ACTIONS(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(916)] = { - [sym_comment] = STATE(916), - [anon_sym_in] = ACTIONS(2537), - [sym__newline] = ACTIONS(2537), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_PIPE] = ACTIONS(2537), - [anon_sym_err_GT_PIPE] = ACTIONS(2537), - [anon_sym_out_GT_PIPE] = ACTIONS(2537), - [anon_sym_e_GT_PIPE] = ACTIONS(2537), - [anon_sym_o_GT_PIPE] = ACTIONS(2537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2537), - [anon_sym_RPAREN] = ACTIONS(2537), - [anon_sym_GT2] = ACTIONS(2539), - [anon_sym_DASH2] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_EQ_GT] = ACTIONS(2537), - [anon_sym_STAR2] = ACTIONS(2539), - [anon_sym_and2] = ACTIONS(2537), - [anon_sym_xor2] = ACTIONS(2537), - [anon_sym_or2] = ACTIONS(2537), - [anon_sym_not_DASHin2] = ACTIONS(2537), - [anon_sym_has2] = ACTIONS(2537), - [anon_sym_not_DASHhas2] = ACTIONS(2537), - [anon_sym_starts_DASHwith2] = ACTIONS(2537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2537), - [anon_sym_ends_DASHwith2] = ACTIONS(2537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2537), - [anon_sym_EQ_EQ2] = ACTIONS(2537), - [anon_sym_BANG_EQ2] = ACTIONS(2537), - [anon_sym_LT2] = ACTIONS(2539), - [anon_sym_LT_EQ2] = ACTIONS(2537), - [anon_sym_GT_EQ2] = ACTIONS(2537), - [anon_sym_EQ_TILDE2] = ACTIONS(2537), - [anon_sym_BANG_TILDE2] = ACTIONS(2537), - [anon_sym_like2] = ACTIONS(2537), - [anon_sym_not_DASHlike2] = ACTIONS(2537), - [anon_sym_STAR_STAR2] = ACTIONS(2537), - [anon_sym_PLUS_PLUS2] = ACTIONS(2537), - [anon_sym_SLASH2] = ACTIONS(2539), - [anon_sym_mod2] = ACTIONS(2537), - [anon_sym_SLASH_SLASH2] = ACTIONS(2537), - [anon_sym_PLUS2] = ACTIONS(2539), - [anon_sym_bit_DASHshl2] = ACTIONS(2537), - [anon_sym_bit_DASHshr2] = ACTIONS(2537), - [anon_sym_bit_DASHand2] = ACTIONS(2537), - [anon_sym_bit_DASHxor2] = ACTIONS(2537), - [anon_sym_bit_DASHor2] = ACTIONS(2537), - [anon_sym_err_GT] = ACTIONS(2539), - [anon_sym_out_GT] = ACTIONS(2539), - [anon_sym_e_GT] = ACTIONS(2539), - [anon_sym_o_GT] = ACTIONS(2539), - [anon_sym_err_PLUSout_GT] = ACTIONS(2539), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2539), - [anon_sym_o_PLUSe_GT] = ACTIONS(2539), - [anon_sym_e_PLUSo_GT] = ACTIONS(2539), - [anon_sym_err_GT_GT] = ACTIONS(2537), - [anon_sym_out_GT_GT] = ACTIONS(2537), - [anon_sym_e_GT_GT] = ACTIONS(2537), - [anon_sym_o_GT_GT] = ACTIONS(2537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2537), + [STATE(910)] = { + [sym_comment] = STATE(910), + [anon_sym_in] = ACTIONS(2545), + [sym__newline] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2545), + [anon_sym_err_GT_PIPE] = ACTIONS(2545), + [anon_sym_out_GT_PIPE] = ACTIONS(2545), + [anon_sym_e_GT_PIPE] = ACTIONS(2545), + [anon_sym_o_GT_PIPE] = ACTIONS(2545), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2545), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2545), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2545), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2545), + [anon_sym_RPAREN] = ACTIONS(2545), + [anon_sym_GT2] = ACTIONS(2547), + [anon_sym_DASH2] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_EQ_GT] = ACTIONS(2545), + [anon_sym_STAR2] = ACTIONS(2547), + [anon_sym_and2] = ACTIONS(2545), + [anon_sym_xor2] = ACTIONS(2545), + [anon_sym_or2] = ACTIONS(2545), + [anon_sym_not_DASHin2] = ACTIONS(2545), + [anon_sym_has2] = ACTIONS(2545), + [anon_sym_not_DASHhas2] = ACTIONS(2545), + [anon_sym_starts_DASHwith2] = ACTIONS(2545), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2545), + [anon_sym_ends_DASHwith2] = ACTIONS(2545), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2545), + [anon_sym_EQ_EQ2] = ACTIONS(2545), + [anon_sym_BANG_EQ2] = ACTIONS(2545), + [anon_sym_LT2] = ACTIONS(2547), + [anon_sym_LT_EQ2] = ACTIONS(2545), + [anon_sym_GT_EQ2] = ACTIONS(2545), + [anon_sym_EQ_TILDE2] = ACTIONS(2545), + [anon_sym_BANG_TILDE2] = ACTIONS(2545), + [anon_sym_like2] = ACTIONS(2545), + [anon_sym_not_DASHlike2] = ACTIONS(2545), + [anon_sym_STAR_STAR2] = ACTIONS(2545), + [anon_sym_PLUS_PLUS2] = ACTIONS(2545), + [anon_sym_SLASH2] = ACTIONS(2547), + [anon_sym_mod2] = ACTIONS(2545), + [anon_sym_SLASH_SLASH2] = ACTIONS(2545), + [anon_sym_PLUS2] = ACTIONS(2547), + [anon_sym_bit_DASHshl2] = ACTIONS(2545), + [anon_sym_bit_DASHshr2] = ACTIONS(2545), + [anon_sym_bit_DASHand2] = ACTIONS(2545), + [anon_sym_bit_DASHxor2] = ACTIONS(2545), + [anon_sym_bit_DASHor2] = ACTIONS(2545), + [anon_sym_err_GT] = ACTIONS(2547), + [anon_sym_out_GT] = ACTIONS(2547), + [anon_sym_e_GT] = ACTIONS(2547), + [anon_sym_o_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT] = ACTIONS(2547), + [anon_sym_err_GT_GT] = ACTIONS(2545), + [anon_sym_out_GT_GT] = ACTIONS(2545), + [anon_sym_e_GT_GT] = ACTIONS(2545), + [anon_sym_o_GT_GT] = ACTIONS(2545), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2545), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2545), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2545), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2545), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(917)] = { - [sym_comment] = STATE(917), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [STATE(911)] = { + [sym_comment] = STATE(911), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_DOT_DOT2] = ACTIONS(2549), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2551), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(918)] = { - [sym_comment] = STATE(918), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_DOT_DOT2] = ACTIONS(2541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2543), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [STATE(912)] = { + [sym_comment] = STATE(912), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_DOT_DOT2] = ACTIONS(2553), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2555), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2555), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(919)] = { - [sym_comment] = STATE(919), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [STATE(913)] = { + [sym_comment] = STATE(913), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_EQ_GT] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(920)] = { - [sym_comment] = STATE(920), - [ts_builtin_sym_end] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_DOT_DOT2] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [STATE(914)] = { + [sym_comment] = STATE(914), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(921)] = { - [aux_sym__repeat_newline] = STATE(978), - [sym__expression_parenthesized] = STATE(4280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(921), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [STATE(915)] = { + [sym_comment] = STATE(915), + [anon_sym_in] = ACTIONS(1854), + [sym__newline] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_err_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_GT_PIPE] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), + [anon_sym_RPAREN] = ACTIONS(1854), + [anon_sym_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1856), + [anon_sym_out_GT] = ACTIONS(1856), + [anon_sym_e_GT] = ACTIONS(1856), + [anon_sym_o_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT] = ACTIONS(1856), + [anon_sym_err_GT_GT] = ACTIONS(1854), + [anon_sym_out_GT_GT] = ACTIONS(1854), + [anon_sym_e_GT_GT] = ACTIONS(1854), + [anon_sym_o_GT_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [sym__unquoted_pattern] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(916)] = { + [sym_comment] = STATE(916), + [anon_sym_in] = ACTIONS(2557), [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_EQ_GT] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(917)] = { + [aux_sym__repeat_newline] = STATE(999), + [sym__expression_parenthesized] = STATE(4197), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(917), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [sym__newline] = ACTIONS(2569), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -116053,17 +116022,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2573), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -116072,540 +116041,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(922)] = { - [sym_comment] = STATE(922), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(923)] = { - [sym_comment] = STATE(923), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(924)] = { - [sym_comment] = STATE(924), - [anon_sym_in] = ACTIONS(2563), - [sym__newline] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2563), - [anon_sym_err_GT_PIPE] = ACTIONS(2563), - [anon_sym_out_GT_PIPE] = ACTIONS(2563), - [anon_sym_e_GT_PIPE] = ACTIONS(2563), - [anon_sym_o_GT_PIPE] = ACTIONS(2563), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2563), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2563), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2563), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_GT2] = ACTIONS(2565), - [anon_sym_DASH2] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_EQ_GT] = ACTIONS(2563), - [anon_sym_STAR2] = ACTIONS(2565), - [anon_sym_and2] = ACTIONS(2563), - [anon_sym_xor2] = ACTIONS(2563), - [anon_sym_or2] = ACTIONS(2563), - [anon_sym_not_DASHin2] = ACTIONS(2563), - [anon_sym_has2] = ACTIONS(2563), - [anon_sym_not_DASHhas2] = ACTIONS(2563), - [anon_sym_starts_DASHwith2] = ACTIONS(2563), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2563), - [anon_sym_ends_DASHwith2] = ACTIONS(2563), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2563), - [anon_sym_EQ_EQ2] = ACTIONS(2563), - [anon_sym_BANG_EQ2] = ACTIONS(2563), - [anon_sym_LT2] = ACTIONS(2565), - [anon_sym_LT_EQ2] = ACTIONS(2563), - [anon_sym_GT_EQ2] = ACTIONS(2563), - [anon_sym_EQ_TILDE2] = ACTIONS(2563), - [anon_sym_BANG_TILDE2] = ACTIONS(2563), - [anon_sym_like2] = ACTIONS(2563), - [anon_sym_not_DASHlike2] = ACTIONS(2563), - [anon_sym_STAR_STAR2] = ACTIONS(2563), - [anon_sym_PLUS_PLUS2] = ACTIONS(2563), - [anon_sym_SLASH2] = ACTIONS(2565), - [anon_sym_mod2] = ACTIONS(2563), - [anon_sym_SLASH_SLASH2] = ACTIONS(2563), - [anon_sym_PLUS2] = ACTIONS(2565), - [anon_sym_bit_DASHshl2] = ACTIONS(2563), - [anon_sym_bit_DASHshr2] = ACTIONS(2563), - [anon_sym_bit_DASHand2] = ACTIONS(2563), - [anon_sym_bit_DASHxor2] = ACTIONS(2563), - [anon_sym_bit_DASHor2] = ACTIONS(2563), - [anon_sym_err_GT] = ACTIONS(2565), - [anon_sym_out_GT] = ACTIONS(2565), - [anon_sym_e_GT] = ACTIONS(2565), - [anon_sym_o_GT] = ACTIONS(2565), - [anon_sym_err_PLUSout_GT] = ACTIONS(2565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2565), - [anon_sym_o_PLUSe_GT] = ACTIONS(2565), - [anon_sym_e_PLUSo_GT] = ACTIONS(2565), - [anon_sym_err_GT_GT] = ACTIONS(2563), - [anon_sym_out_GT_GT] = ACTIONS(2563), - [anon_sym_e_GT_GT] = ACTIONS(2563), - [anon_sym_o_GT_GT] = ACTIONS(2563), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2563), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2563), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2563), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2563), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(925)] = { - [sym_comment] = STATE(925), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_EQ_GT] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(926)] = { - [sym_comment] = STATE(926), - [anon_sym_in] = ACTIONS(2571), - [sym__newline] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_PIPE] = ACTIONS(2571), - [anon_sym_err_GT_PIPE] = ACTIONS(2571), - [anon_sym_out_GT_PIPE] = ACTIONS(2571), - [anon_sym_e_GT_PIPE] = ACTIONS(2571), - [anon_sym_o_GT_PIPE] = ACTIONS(2571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2571), - [anon_sym_RPAREN] = ACTIONS(2571), - [anon_sym_GT2] = ACTIONS(2573), - [anon_sym_DASH2] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_EQ_GT] = ACTIONS(2571), - [anon_sym_STAR2] = ACTIONS(2573), - [anon_sym_and2] = ACTIONS(2571), - [anon_sym_xor2] = ACTIONS(2571), - [anon_sym_or2] = ACTIONS(2571), - [anon_sym_not_DASHin2] = ACTIONS(2571), - [anon_sym_has2] = ACTIONS(2571), - [anon_sym_not_DASHhas2] = ACTIONS(2571), - [anon_sym_starts_DASHwith2] = ACTIONS(2571), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2571), - [anon_sym_ends_DASHwith2] = ACTIONS(2571), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2571), - [anon_sym_EQ_EQ2] = ACTIONS(2571), - [anon_sym_BANG_EQ2] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2573), - [anon_sym_LT_EQ2] = ACTIONS(2571), - [anon_sym_GT_EQ2] = ACTIONS(2571), - [anon_sym_EQ_TILDE2] = ACTIONS(2571), - [anon_sym_BANG_TILDE2] = ACTIONS(2571), - [anon_sym_like2] = ACTIONS(2571), - [anon_sym_not_DASHlike2] = ACTIONS(2571), - [anon_sym_STAR_STAR2] = ACTIONS(2571), - [anon_sym_PLUS_PLUS2] = ACTIONS(2571), - [anon_sym_SLASH2] = ACTIONS(2573), - [anon_sym_mod2] = ACTIONS(2571), - [anon_sym_SLASH_SLASH2] = ACTIONS(2571), - [anon_sym_PLUS2] = ACTIONS(2573), - [anon_sym_bit_DASHshl2] = ACTIONS(2571), - [anon_sym_bit_DASHshr2] = ACTIONS(2571), - [anon_sym_bit_DASHand2] = ACTIONS(2571), - [anon_sym_bit_DASHxor2] = ACTIONS(2571), - [anon_sym_bit_DASHor2] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2571), - [anon_sym_out_GT_GT] = ACTIONS(2571), - [anon_sym_e_GT_GT] = ACTIONS(2571), - [anon_sym_o_GT_GT] = ACTIONS(2571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2571), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(927)] = { - [sym_comment] = STATE(927), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_EQ_GT] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [STATE(918)] = { + [sym_comment] = STATE(918), + [ts_builtin_sym_end] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_DOT_DOT2] = ACTIONS(2575), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2577), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2577), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(928)] = { - [sym_comment] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [STATE(919)] = { + [sym_comment] = STATE(919), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [sym__unquoted_pattern] = ACTIONS(2021), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(929)] = { - [sym_comment] = STATE(929), - [ts_builtin_sym_end] = ACTIONS(2120), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), + [STATE(920)] = { + [sym_comment] = STATE(920), + [ts_builtin_sym_end] = ACTIONS(2118), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_err_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_GT_PIPE] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2118), [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2118), [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2579), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2581), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(1734), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), [anon_sym_err_GT] = ACTIONS(2122), [anon_sym_out_GT] = ACTIONS(2122), [anon_sym_e_GT] = ACTIONS(2122), @@ -116614,87 +116238,432 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), [anon_sym_o_PLUSe_GT] = ACTIONS(2122), [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [anon_sym_err_GT_GT] = ACTIONS(2118), + [anon_sym_out_GT_GT] = ACTIONS(2118), + [anon_sym_e_GT_GT] = ACTIONS(2118), + [anon_sym_o_GT_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(930)] = { - [sym_comment] = STATE(930), - [anon_sym_in] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_EQ_GT] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), - [anon_sym_bit_DASHxor2] = ACTIONS(1858), - [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), + [STATE(921)] = { + [sym_comment] = STATE(921), + [ts_builtin_sym_end] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [aux_sym__immediate_decimal_token5] = ACTIONS(2579), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(931)] = { - [sym_comment] = STATE(931), + [STATE(922)] = { + [sym_comment] = STATE(922), + [anon_sym_in] = ACTIONS(2525), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_RPAREN] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2525), + [anon_sym_xor2] = ACTIONS(2525), + [anon_sym_or2] = ACTIONS(2525), + [anon_sym_not_DASHin2] = ACTIONS(2525), + [anon_sym_has2] = ACTIONS(2525), + [anon_sym_not_DASHhas2] = ACTIONS(2525), + [anon_sym_starts_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), + [anon_sym_ends_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2525), + [anon_sym_like2] = ACTIONS(2525), + [anon_sym_not_DASHlike2] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_STAR_STAR2] = ACTIONS(2525), + [anon_sym_PLUS_PLUS2] = ACTIONS(2525), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2525), + [anon_sym_SLASH_SLASH2] = ACTIONS(2525), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2525), + [anon_sym_bit_DASHshr2] = ACTIONS(2525), + [anon_sym_bit_DASHand2] = ACTIONS(2525), + [anon_sym_bit_DASHxor2] = ACTIONS(2525), + [anon_sym_bit_DASHor2] = ACTIONS(2525), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [sym__unquoted_pattern] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(923)] = { + [sym_comment] = STATE(923), + [anon_sym_in] = ACTIONS(2583), + [sym__newline] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_err_GT_PIPE] = ACTIONS(2583), + [anon_sym_out_GT_PIPE] = ACTIONS(2583), + [anon_sym_e_GT_PIPE] = ACTIONS(2583), + [anon_sym_o_GT_PIPE] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2583), + [anon_sym_GT2] = ACTIONS(2585), + [anon_sym_DASH2] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_STAR2] = ACTIONS(2585), + [anon_sym_and2] = ACTIONS(2583), + [anon_sym_xor2] = ACTIONS(2583), + [anon_sym_or2] = ACTIONS(2583), + [anon_sym_not_DASHin2] = ACTIONS(2583), + [anon_sym_has2] = ACTIONS(2583), + [anon_sym_not_DASHhas2] = ACTIONS(2583), + [anon_sym_starts_DASHwith2] = ACTIONS(2583), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2583), + [anon_sym_ends_DASHwith2] = ACTIONS(2583), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2583), + [anon_sym_EQ_EQ2] = ACTIONS(2583), + [anon_sym_BANG_EQ2] = ACTIONS(2583), + [anon_sym_LT2] = ACTIONS(2585), + [anon_sym_LT_EQ2] = ACTIONS(2583), + [anon_sym_GT_EQ2] = ACTIONS(2583), + [anon_sym_EQ_TILDE2] = ACTIONS(2583), + [anon_sym_BANG_TILDE2] = ACTIONS(2583), + [anon_sym_like2] = ACTIONS(2583), + [anon_sym_not_DASHlike2] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2587), + [anon_sym_STAR_STAR2] = ACTIONS(2583), + [anon_sym_PLUS_PLUS2] = ACTIONS(2583), + [anon_sym_SLASH2] = ACTIONS(2585), + [anon_sym_mod2] = ACTIONS(2583), + [anon_sym_SLASH_SLASH2] = ACTIONS(2583), + [anon_sym_PLUS2] = ACTIONS(2585), + [anon_sym_bit_DASHshl2] = ACTIONS(2583), + [anon_sym_bit_DASHshr2] = ACTIONS(2583), + [anon_sym_bit_DASHand2] = ACTIONS(2583), + [anon_sym_bit_DASHxor2] = ACTIONS(2583), + [anon_sym_bit_DASHor2] = ACTIONS(2583), + [anon_sym_err_GT] = ACTIONS(2585), + [anon_sym_out_GT] = ACTIONS(2585), + [anon_sym_e_GT] = ACTIONS(2585), + [anon_sym_o_GT] = ACTIONS(2585), + [anon_sym_err_PLUSout_GT] = ACTIONS(2585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2585), + [anon_sym_o_PLUSe_GT] = ACTIONS(2585), + [anon_sym_e_PLUSo_GT] = ACTIONS(2585), + [anon_sym_err_GT_GT] = ACTIONS(2583), + [anon_sym_out_GT_GT] = ACTIONS(2583), + [anon_sym_e_GT_GT] = ACTIONS(2583), + [anon_sym_o_GT_GT] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2583), + [sym__unquoted_pattern] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(924)] = { + [sym_comment] = STATE(924), + [anon_sym_in] = ACTIONS(2591), + [sym__newline] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_err_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_GT_PIPE] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), + [anon_sym_RPAREN] = ACTIONS(2591), + [anon_sym_GT2] = ACTIONS(2593), + [anon_sym_DASH2] = ACTIONS(2591), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_STAR2] = ACTIONS(2593), + [anon_sym_and2] = ACTIONS(2591), + [anon_sym_xor2] = ACTIONS(2591), + [anon_sym_or2] = ACTIONS(2591), + [anon_sym_not_DASHin2] = ACTIONS(2591), + [anon_sym_has2] = ACTIONS(2591), + [anon_sym_not_DASHhas2] = ACTIONS(2591), + [anon_sym_starts_DASHwith2] = ACTIONS(2591), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2591), + [anon_sym_ends_DASHwith2] = ACTIONS(2591), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2591), + [anon_sym_EQ_EQ2] = ACTIONS(2591), + [anon_sym_BANG_EQ2] = ACTIONS(2591), + [anon_sym_LT2] = ACTIONS(2593), + [anon_sym_LT_EQ2] = ACTIONS(2591), + [anon_sym_GT_EQ2] = ACTIONS(2591), + [anon_sym_EQ_TILDE2] = ACTIONS(2591), + [anon_sym_BANG_TILDE2] = ACTIONS(2591), + [anon_sym_like2] = ACTIONS(2591), + [anon_sym_not_DASHlike2] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_STAR_STAR2] = ACTIONS(2591), + [anon_sym_PLUS_PLUS2] = ACTIONS(2591), + [anon_sym_SLASH2] = ACTIONS(2593), + [anon_sym_mod2] = ACTIONS(2591), + [anon_sym_SLASH_SLASH2] = ACTIONS(2591), + [anon_sym_PLUS2] = ACTIONS(2593), + [anon_sym_bit_DASHshl2] = ACTIONS(2591), + [anon_sym_bit_DASHshr2] = ACTIONS(2591), + [anon_sym_bit_DASHand2] = ACTIONS(2591), + [anon_sym_bit_DASHxor2] = ACTIONS(2591), + [anon_sym_bit_DASHor2] = ACTIONS(2591), + [anon_sym_err_GT] = ACTIONS(2593), + [anon_sym_out_GT] = ACTIONS(2593), + [anon_sym_e_GT] = ACTIONS(2593), + [anon_sym_o_GT] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT] = ACTIONS(2593), + [anon_sym_err_GT_GT] = ACTIONS(2591), + [anon_sym_out_GT_GT] = ACTIONS(2591), + [anon_sym_e_GT_GT] = ACTIONS(2591), + [anon_sym_o_GT_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [sym__unquoted_pattern] = ACTIONS(2597), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(925)] = { + [aux_sym__repeat_newline] = STATE(925), + [sym_comment] = STATE(925), + [anon_sym_export] = ACTIONS(1921), + [anon_sym_alias] = ACTIONS(1916), + [anon_sym_let] = ACTIONS(1916), + [anon_sym_mut] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [aux_sym_cmd_identifier_token1] = ACTIONS(1921), + [anon_sym_def] = ACTIONS(1916), + [anon_sym_use] = ACTIONS(1916), + [anon_sym_export_DASHenv] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_module] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_loop] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_else] = ACTIONS(1916), + [anon_sym_try] = ACTIONS(1916), + [anon_sym_catch] = ACTIONS(1916), + [anon_sym_match] = ACTIONS(1916), + [anon_sym_in] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1916), + [aux_sym_cmd_identifier_token4] = ACTIONS(1916), + [aux_sym_cmd_identifier_token5] = ACTIONS(1916), + [sym__newline] = ACTIONS(2599), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_err_GT_PIPE] = ACTIONS(1916), + [anon_sym_out_GT_PIPE] = ACTIONS(1916), + [anon_sym_e_GT_PIPE] = ACTIONS(1916), + [anon_sym_o_GT_PIPE] = ACTIONS(1916), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1916), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1916), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1916), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_DOT_DOT] = ACTIONS(1921), + [anon_sym_where] = ACTIONS(1916), + [aux_sym_expr_unary_token1] = ACTIONS(1916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1916), + [anon_sym_DOT_DOT_LT] = ACTIONS(1916), + [aux_sym__val_number_decimal_token1] = ACTIONS(1921), + [aux_sym__val_number_decimal_token2] = ACTIONS(1916), + [aux_sym__val_number_decimal_token3] = ACTIONS(1916), + [aux_sym__val_number_decimal_token4] = ACTIONS(1916), + [aux_sym__val_number_token1] = ACTIONS(1916), + [aux_sym__val_number_token2] = ACTIONS(1916), + [aux_sym__val_number_token3] = ACTIONS(1916), + [anon_sym_0b] = ACTIONS(1921), + [anon_sym_0o] = ACTIONS(1921), + [anon_sym_0x] = ACTIONS(1921), + [sym_val_date] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1916), + [anon_sym_CARET] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1916), + }, + [STATE(926)] = { + [sym_comment] = STATE(926), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(927)] = { + [sym_comment] = STATE(927), [anon_sym_in] = ACTIONS(1018), [sym__newline] = ACTIONS(1018), [anon_sym_SEMI] = ACTIONS(1018), @@ -116708,10 +116677,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1016), + [anon_sym_GT2] = ACTIONS(1002), [anon_sym_DASH2] = ACTIONS(1018), [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1016), + [anon_sym_STAR2] = ACTIONS(1002), [anon_sym_and2] = ACTIONS(1018), [anon_sym_xor2] = ACTIONS(1018), [anon_sym_or2] = ACTIONS(1018), @@ -116724,33 +116693,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), [anon_sym_EQ_EQ2] = ACTIONS(1018), [anon_sym_BANG_EQ2] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1016), + [anon_sym_LT2] = ACTIONS(1002), [anon_sym_LT_EQ2] = ACTIONS(1018), [anon_sym_GT_EQ2] = ACTIONS(1018), [anon_sym_EQ_TILDE2] = ACTIONS(1018), [anon_sym_BANG_TILDE2] = ACTIONS(1018), [anon_sym_like2] = ACTIONS(1018), [anon_sym_not_DASHlike2] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2602), [anon_sym_STAR_STAR2] = ACTIONS(1018), [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1016), + [anon_sym_SLASH2] = ACTIONS(1002), [anon_sym_mod2] = ACTIONS(1018), [anon_sym_SLASH_SLASH2] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1016), + [anon_sym_PLUS2] = ACTIONS(1002), [anon_sym_bit_DASHshl2] = ACTIONS(1018), [anon_sym_bit_DASHshr2] = ACTIONS(1018), [anon_sym_bit_DASHand2] = ACTIONS(1018), [anon_sym_bit_DASHxor2] = ACTIONS(1018), [anon_sym_bit_DASHor2] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), [anon_sym_err_GT_GT] = ACTIONS(1018), [anon_sym_out_GT_GT] = ACTIONS(1018), [anon_sym_e_GT_GT] = ACTIONS(1018), @@ -116759,356 +116728,839 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), - [sym__unquoted_pattern] = ACTIONS(2585), + [sym__unquoted_pattern] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(928)] = { + [aux_sym__repeat_newline] = STATE(925), + [sym_comment] = STATE(928), + [anon_sym_export] = ACTIONS(2606), + [anon_sym_alias] = ACTIONS(2608), + [anon_sym_let] = ACTIONS(2608), + [anon_sym_mut] = ACTIONS(2608), + [anon_sym_const] = ACTIONS(2608), + [aux_sym_cmd_identifier_token1] = ACTIONS(2606), + [anon_sym_def] = ACTIONS(2608), + [anon_sym_use] = ACTIONS(2608), + [anon_sym_export_DASHenv] = ACTIONS(2608), + [anon_sym_extern] = ACTIONS(2608), + [anon_sym_module] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2608), + [anon_sym_loop] = ACTIONS(2608), + [anon_sym_while] = ACTIONS(2608), + [anon_sym_if] = ACTIONS(2608), + [anon_sym_else] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2608), + [anon_sym_catch] = ACTIONS(2608), + [anon_sym_match] = ACTIONS(2608), + [anon_sym_in] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2608), + [anon_sym_false] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2608), + [aux_sym_cmd_identifier_token3] = ACTIONS(2608), + [aux_sym_cmd_identifier_token4] = ACTIONS(2608), + [aux_sym_cmd_identifier_token5] = ACTIONS(2608), + [sym__newline] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2610), + [anon_sym_err_GT_PIPE] = ACTIONS(2610), + [anon_sym_out_GT_PIPE] = ACTIONS(2610), + [anon_sym_e_GT_PIPE] = ACTIONS(2610), + [anon_sym_o_GT_PIPE] = ACTIONS(2610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2610), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_DOLLAR] = ACTIONS(2606), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(2606), + [anon_sym_where] = ACTIONS(2608), + [aux_sym_expr_unary_token1] = ACTIONS(2608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2608), + [anon_sym_DOT_DOT_LT] = ACTIONS(2608), + [aux_sym__val_number_decimal_token1] = ACTIONS(2606), + [aux_sym__val_number_decimal_token2] = ACTIONS(2608), + [aux_sym__val_number_decimal_token3] = ACTIONS(2608), + [aux_sym__val_number_decimal_token4] = ACTIONS(2608), + [aux_sym__val_number_token1] = ACTIONS(2608), + [aux_sym__val_number_token2] = ACTIONS(2608), + [aux_sym__val_number_token3] = ACTIONS(2608), + [anon_sym_0b] = ACTIONS(2606), + [anon_sym_0o] = ACTIONS(2606), + [anon_sym_0x] = ACTIONS(2606), + [sym_val_date] = ACTIONS(2608), + [anon_sym_DQUOTE] = ACTIONS(2608), + [anon_sym_SQUOTE] = ACTIONS(2608), + [anon_sym_BQUOTE] = ACTIONS(2608), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2608), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2608), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2608), + }, + [STATE(929)] = { + [sym_comment] = STATE(929), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(930)] = { + [sym_comment] = STATE(930), + [anon_sym_in] = ACTIONS(2612), + [sym__newline] = ACTIONS(2612), + [anon_sym_SEMI] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2612), + [anon_sym_err_GT_PIPE] = ACTIONS(2612), + [anon_sym_out_GT_PIPE] = ACTIONS(2612), + [anon_sym_e_GT_PIPE] = ACTIONS(2612), + [anon_sym_o_GT_PIPE] = ACTIONS(2612), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2612), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2612), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2612), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2612), + [anon_sym_RPAREN] = ACTIONS(2612), + [anon_sym_GT2] = ACTIONS(2614), + [anon_sym_DASH2] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2612), + [anon_sym_RBRACE] = ACTIONS(2612), + [anon_sym_EQ_GT] = ACTIONS(2612), + [anon_sym_STAR2] = ACTIONS(2614), + [anon_sym_and2] = ACTIONS(2612), + [anon_sym_xor2] = ACTIONS(2612), + [anon_sym_or2] = ACTIONS(2612), + [anon_sym_not_DASHin2] = ACTIONS(2612), + [anon_sym_has2] = ACTIONS(2612), + [anon_sym_not_DASHhas2] = ACTIONS(2612), + [anon_sym_starts_DASHwith2] = ACTIONS(2612), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2612), + [anon_sym_ends_DASHwith2] = ACTIONS(2612), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2612), + [anon_sym_EQ_EQ2] = ACTIONS(2612), + [anon_sym_BANG_EQ2] = ACTIONS(2612), + [anon_sym_LT2] = ACTIONS(2614), + [anon_sym_LT_EQ2] = ACTIONS(2612), + [anon_sym_GT_EQ2] = ACTIONS(2612), + [anon_sym_EQ_TILDE2] = ACTIONS(2612), + [anon_sym_BANG_TILDE2] = ACTIONS(2612), + [anon_sym_like2] = ACTIONS(2612), + [anon_sym_not_DASHlike2] = ACTIONS(2612), + [anon_sym_STAR_STAR2] = ACTIONS(2612), + [anon_sym_PLUS_PLUS2] = ACTIONS(2612), + [anon_sym_SLASH2] = ACTIONS(2614), + [anon_sym_mod2] = ACTIONS(2612), + [anon_sym_SLASH_SLASH2] = ACTIONS(2612), + [anon_sym_PLUS2] = ACTIONS(2614), + [anon_sym_bit_DASHshl2] = ACTIONS(2612), + [anon_sym_bit_DASHshr2] = ACTIONS(2612), + [anon_sym_bit_DASHand2] = ACTIONS(2612), + [anon_sym_bit_DASHxor2] = ACTIONS(2612), + [anon_sym_bit_DASHor2] = ACTIONS(2612), + [anon_sym_err_GT] = ACTIONS(2614), + [anon_sym_out_GT] = ACTIONS(2614), + [anon_sym_e_GT] = ACTIONS(2614), + [anon_sym_o_GT] = ACTIONS(2614), + [anon_sym_err_PLUSout_GT] = ACTIONS(2614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2614), + [anon_sym_o_PLUSe_GT] = ACTIONS(2614), + [anon_sym_e_PLUSo_GT] = ACTIONS(2614), + [anon_sym_err_GT_GT] = ACTIONS(2612), + [anon_sym_out_GT_GT] = ACTIONS(2612), + [anon_sym_e_GT_GT] = ACTIONS(2612), + [anon_sym_o_GT_GT] = ACTIONS(2612), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2612), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2612), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2612), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2612), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(931)] = { + [sym_comment] = STATE(931), + [anon_sym_in] = ACTIONS(2616), + [sym__newline] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(2616), + [anon_sym_PIPE] = ACTIONS(2616), + [anon_sym_err_GT_PIPE] = ACTIONS(2616), + [anon_sym_out_GT_PIPE] = ACTIONS(2616), + [anon_sym_e_GT_PIPE] = ACTIONS(2616), + [anon_sym_o_GT_PIPE] = ACTIONS(2616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2616), + [anon_sym_RPAREN] = ACTIONS(2616), + [anon_sym_GT2] = ACTIONS(2618), + [anon_sym_DASH2] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2616), + [anon_sym_RBRACE] = ACTIONS(2616), + [anon_sym_EQ_GT] = ACTIONS(2616), + [anon_sym_STAR2] = ACTIONS(2618), + [anon_sym_and2] = ACTIONS(2616), + [anon_sym_xor2] = ACTIONS(2616), + [anon_sym_or2] = ACTIONS(2616), + [anon_sym_not_DASHin2] = ACTIONS(2616), + [anon_sym_has2] = ACTIONS(2616), + [anon_sym_not_DASHhas2] = ACTIONS(2616), + [anon_sym_starts_DASHwith2] = ACTIONS(2616), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2616), + [anon_sym_ends_DASHwith2] = ACTIONS(2616), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2616), + [anon_sym_EQ_EQ2] = ACTIONS(2616), + [anon_sym_BANG_EQ2] = ACTIONS(2616), + [anon_sym_LT2] = ACTIONS(2618), + [anon_sym_LT_EQ2] = ACTIONS(2616), + [anon_sym_GT_EQ2] = ACTIONS(2616), + [anon_sym_EQ_TILDE2] = ACTIONS(2616), + [anon_sym_BANG_TILDE2] = ACTIONS(2616), + [anon_sym_like2] = ACTIONS(2616), + [anon_sym_not_DASHlike2] = ACTIONS(2616), + [anon_sym_STAR_STAR2] = ACTIONS(2616), + [anon_sym_PLUS_PLUS2] = ACTIONS(2616), + [anon_sym_SLASH2] = ACTIONS(2618), + [anon_sym_mod2] = ACTIONS(2616), + [anon_sym_SLASH_SLASH2] = ACTIONS(2616), + [anon_sym_PLUS2] = ACTIONS(2618), + [anon_sym_bit_DASHshl2] = ACTIONS(2616), + [anon_sym_bit_DASHshr2] = ACTIONS(2616), + [anon_sym_bit_DASHand2] = ACTIONS(2616), + [anon_sym_bit_DASHxor2] = ACTIONS(2616), + [anon_sym_bit_DASHor2] = ACTIONS(2616), + [anon_sym_err_GT] = ACTIONS(2618), + [anon_sym_out_GT] = ACTIONS(2618), + [anon_sym_e_GT] = ACTIONS(2618), + [anon_sym_o_GT] = ACTIONS(2618), + [anon_sym_err_PLUSout_GT] = ACTIONS(2618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2618), + [anon_sym_o_PLUSe_GT] = ACTIONS(2618), + [anon_sym_e_PLUSo_GT] = ACTIONS(2618), + [anon_sym_err_GT_GT] = ACTIONS(2616), + [anon_sym_out_GT_GT] = ACTIONS(2616), + [anon_sym_e_GT_GT] = ACTIONS(2616), + [anon_sym_o_GT_GT] = ACTIONS(2616), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2616), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2616), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2616), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2616), [anon_sym_POUND] = ACTIONS(3), }, [STATE(932)] = { [sym_comment] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(933)] = { [sym_comment] = STATE(933), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1558), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [ts_builtin_sym_end] = ACTIONS(1574), + [anon_sym_in] = ACTIONS(1574), + [sym__newline] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_err_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_GT_PIPE] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1574), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1574), + [anon_sym_xor2] = ACTIONS(1574), + [anon_sym_or2] = ACTIONS(1574), + [anon_sym_not_DASHin2] = ACTIONS(1574), + [anon_sym_has2] = ACTIONS(1574), + [anon_sym_not_DASHhas2] = ACTIONS(1574), + [anon_sym_starts_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), + [anon_sym_ends_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), + [anon_sym_EQ_EQ2] = ACTIONS(1574), + [anon_sym_BANG_EQ2] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1574), + [anon_sym_GT_EQ2] = ACTIONS(1574), + [anon_sym_EQ_TILDE2] = ACTIONS(1574), + [anon_sym_BANG_TILDE2] = ACTIONS(1574), + [anon_sym_like2] = ACTIONS(1574), + [anon_sym_not_DASHlike2] = ACTIONS(1574), + [anon_sym_STAR_STAR2] = ACTIONS(1574), + [anon_sym_PLUS_PLUS2] = ACTIONS(1574), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1574), + [anon_sym_SLASH_SLASH2] = ACTIONS(1574), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1574), + [anon_sym_bit_DASHshr2] = ACTIONS(1574), + [anon_sym_bit_DASHand2] = ACTIONS(1574), + [anon_sym_bit_DASHxor2] = ACTIONS(1574), + [anon_sym_bit_DASHor2] = ACTIONS(1574), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1574), + [anon_sym_out_GT_GT] = ACTIONS(1574), + [anon_sym_e_GT_GT] = ACTIONS(1574), + [anon_sym_o_GT_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), [anon_sym_POUND] = ACTIONS(3), }, [STATE(934)] = { [sym_comment] = STATE(934), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2589), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(935)] = { [sym_comment] = STATE(935), - [ts_builtin_sym_end] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_GT2] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1822), - [anon_sym_STAR2] = ACTIONS(1824), - [anon_sym_and2] = ACTIONS(1822), - [anon_sym_xor2] = ACTIONS(1822), - [anon_sym_or2] = ACTIONS(1822), - [anon_sym_not_DASHin2] = ACTIONS(1822), - [anon_sym_has2] = ACTIONS(1822), - [anon_sym_not_DASHhas2] = ACTIONS(1822), - [anon_sym_starts_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1822), - [anon_sym_ends_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1822), - [anon_sym_EQ_EQ2] = ACTIONS(1822), - [anon_sym_BANG_EQ2] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1824), - [anon_sym_LT_EQ2] = ACTIONS(1822), - [anon_sym_GT_EQ2] = ACTIONS(1822), - [anon_sym_EQ_TILDE2] = ACTIONS(1822), - [anon_sym_BANG_TILDE2] = ACTIONS(1822), - [anon_sym_like2] = ACTIONS(1822), - [anon_sym_not_DASHlike2] = ACTIONS(1822), - [anon_sym_STAR_STAR2] = ACTIONS(1822), - [anon_sym_PLUS_PLUS2] = ACTIONS(1822), - [anon_sym_SLASH2] = ACTIONS(1824), - [anon_sym_mod2] = ACTIONS(1822), - [anon_sym_SLASH_SLASH2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_bit_DASHshl2] = ACTIONS(1822), - [anon_sym_bit_DASHshr2] = ACTIONS(1822), - [anon_sym_bit_DASHand2] = ACTIONS(1822), - [anon_sym_bit_DASHxor2] = ACTIONS(1822), - [anon_sym_bit_DASHor2] = ACTIONS(1822), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [ts_builtin_sym_end] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1770), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1770), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_has2] = ACTIONS(1768), + [anon_sym_not_DASHhas2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1770), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_like2] = ACTIONS(1768), + [anon_sym_not_DASHlike2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1770), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1770), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1770), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1770), + [anon_sym_out_GT] = ACTIONS(1770), + [anon_sym_e_GT] = ACTIONS(1770), + [anon_sym_o_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT] = ACTIONS(1770), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(936)] = { [sym_comment] = STATE(936), - [anon_sym_in] = ACTIONS(2591), - [sym__newline] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_PIPE] = ACTIONS(2591), - [anon_sym_err_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_GT_PIPE] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_GT2] = ACTIONS(2593), - [anon_sym_DASH2] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2591), - [anon_sym_EQ_GT] = ACTIONS(2591), - [anon_sym_STAR2] = ACTIONS(2593), - [anon_sym_and2] = ACTIONS(2591), - [anon_sym_xor2] = ACTIONS(2591), - [anon_sym_or2] = ACTIONS(2591), - [anon_sym_not_DASHin2] = ACTIONS(2591), - [anon_sym_has2] = ACTIONS(2591), - [anon_sym_not_DASHhas2] = ACTIONS(2591), - [anon_sym_starts_DASHwith2] = ACTIONS(2591), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2591), - [anon_sym_ends_DASHwith2] = ACTIONS(2591), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2591), - [anon_sym_EQ_EQ2] = ACTIONS(2591), - [anon_sym_BANG_EQ2] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2593), - [anon_sym_LT_EQ2] = ACTIONS(2591), - [anon_sym_GT_EQ2] = ACTIONS(2591), - [anon_sym_EQ_TILDE2] = ACTIONS(2591), - [anon_sym_BANG_TILDE2] = ACTIONS(2591), - [anon_sym_like2] = ACTIONS(2591), - [anon_sym_not_DASHlike2] = ACTIONS(2591), - [anon_sym_STAR_STAR2] = ACTIONS(2591), - [anon_sym_PLUS_PLUS2] = ACTIONS(2591), - [anon_sym_SLASH2] = ACTIONS(2593), - [anon_sym_mod2] = ACTIONS(2591), - [anon_sym_SLASH_SLASH2] = ACTIONS(2591), - [anon_sym_PLUS2] = ACTIONS(2593), - [anon_sym_bit_DASHshl2] = ACTIONS(2591), - [anon_sym_bit_DASHshr2] = ACTIONS(2591), - [anon_sym_bit_DASHand2] = ACTIONS(2591), - [anon_sym_bit_DASHxor2] = ACTIONS(2591), - [anon_sym_bit_DASHor2] = ACTIONS(2591), - [anon_sym_err_GT] = ACTIONS(2593), - [anon_sym_out_GT] = ACTIONS(2593), - [anon_sym_e_GT] = ACTIONS(2593), - [anon_sym_o_GT] = ACTIONS(2593), - [anon_sym_err_PLUSout_GT] = ACTIONS(2593), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), - [anon_sym_o_PLUSe_GT] = ACTIONS(2593), - [anon_sym_e_PLUSo_GT] = ACTIONS(2593), - [anon_sym_err_GT_GT] = ACTIONS(2591), - [anon_sym_out_GT_GT] = ACTIONS(2591), - [anon_sym_e_GT_GT] = ACTIONS(2591), - [anon_sym_o_GT_GT] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(937)] = { [sym_comment] = STATE(937), + [anon_sym_in] = ACTIONS(1872), + [sym__newline] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_err_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_GT_PIPE] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_GT2] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_EQ_GT] = ACTIONS(1872), + [anon_sym_STAR2] = ACTIONS(1874), + [anon_sym_and2] = ACTIONS(1872), + [anon_sym_xor2] = ACTIONS(1872), + [anon_sym_or2] = ACTIONS(1872), + [anon_sym_not_DASHin2] = ACTIONS(1872), + [anon_sym_has2] = ACTIONS(1872), + [anon_sym_not_DASHhas2] = ACTIONS(1872), + [anon_sym_starts_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), + [anon_sym_ends_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), + [anon_sym_EQ_EQ2] = ACTIONS(1872), + [anon_sym_BANG_EQ2] = ACTIONS(1872), + [anon_sym_LT2] = ACTIONS(1874), + [anon_sym_LT_EQ2] = ACTIONS(1872), + [anon_sym_GT_EQ2] = ACTIONS(1872), + [anon_sym_EQ_TILDE2] = ACTIONS(1872), + [anon_sym_BANG_TILDE2] = ACTIONS(1872), + [anon_sym_like2] = ACTIONS(1872), + [anon_sym_not_DASHlike2] = ACTIONS(1872), + [anon_sym_STAR_STAR2] = ACTIONS(1872), + [anon_sym_PLUS_PLUS2] = ACTIONS(1872), + [anon_sym_SLASH2] = ACTIONS(1874), + [anon_sym_mod2] = ACTIONS(1872), + [anon_sym_SLASH_SLASH2] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1874), + [anon_sym_bit_DASHshl2] = ACTIONS(1872), + [anon_sym_bit_DASHshr2] = ACTIONS(1872), + [anon_sym_bit_DASHand2] = ACTIONS(1872), + [anon_sym_bit_DASHxor2] = ACTIONS(1872), + [anon_sym_bit_DASHor2] = ACTIONS(1872), + [anon_sym_err_GT] = ACTIONS(1874), + [anon_sym_out_GT] = ACTIONS(1874), + [anon_sym_e_GT] = ACTIONS(1874), + [anon_sym_o_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT] = ACTIONS(1874), + [anon_sym_err_GT_GT] = ACTIONS(1872), + [anon_sym_out_GT_GT] = ACTIONS(1872), + [anon_sym_e_GT_GT] = ACTIONS(1872), + [anon_sym_o_GT_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(938)] = { + [sym_comment] = STATE(938), + [anon_sym_in] = ACTIONS(2583), + [sym__newline] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_err_GT_PIPE] = ACTIONS(2583), + [anon_sym_out_GT_PIPE] = ACTIONS(2583), + [anon_sym_e_GT_PIPE] = ACTIONS(2583), + [anon_sym_o_GT_PIPE] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2583), + [anon_sym_GT2] = ACTIONS(2585), + [anon_sym_DASH2] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_EQ_GT] = ACTIONS(2583), + [anon_sym_STAR2] = ACTIONS(2585), + [anon_sym_and2] = ACTIONS(2583), + [anon_sym_xor2] = ACTIONS(2583), + [anon_sym_or2] = ACTIONS(2583), + [anon_sym_not_DASHin2] = ACTIONS(2583), + [anon_sym_has2] = ACTIONS(2583), + [anon_sym_not_DASHhas2] = ACTIONS(2583), + [anon_sym_starts_DASHwith2] = ACTIONS(2583), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2583), + [anon_sym_ends_DASHwith2] = ACTIONS(2583), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2583), + [anon_sym_EQ_EQ2] = ACTIONS(2583), + [anon_sym_BANG_EQ2] = ACTIONS(2583), + [anon_sym_LT2] = ACTIONS(2585), + [anon_sym_LT_EQ2] = ACTIONS(2583), + [anon_sym_GT_EQ2] = ACTIONS(2583), + [anon_sym_EQ_TILDE2] = ACTIONS(2583), + [anon_sym_BANG_TILDE2] = ACTIONS(2583), + [anon_sym_like2] = ACTIONS(2583), + [anon_sym_not_DASHlike2] = ACTIONS(2583), + [anon_sym_STAR_STAR2] = ACTIONS(2583), + [anon_sym_PLUS_PLUS2] = ACTIONS(2583), + [anon_sym_SLASH2] = ACTIONS(2585), + [anon_sym_mod2] = ACTIONS(2583), + [anon_sym_SLASH_SLASH2] = ACTIONS(2583), + [anon_sym_PLUS2] = ACTIONS(2585), + [anon_sym_bit_DASHshl2] = ACTIONS(2583), + [anon_sym_bit_DASHshr2] = ACTIONS(2583), + [anon_sym_bit_DASHand2] = ACTIONS(2583), + [anon_sym_bit_DASHxor2] = ACTIONS(2583), + [anon_sym_bit_DASHor2] = ACTIONS(2583), + [anon_sym_err_GT] = ACTIONS(2585), + [anon_sym_out_GT] = ACTIONS(2585), + [anon_sym_e_GT] = ACTIONS(2585), + [anon_sym_o_GT] = ACTIONS(2585), + [anon_sym_err_PLUSout_GT] = ACTIONS(2585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2585), + [anon_sym_o_PLUSe_GT] = ACTIONS(2585), + [anon_sym_e_PLUSo_GT] = ACTIONS(2585), + [anon_sym_err_GT_GT] = ACTIONS(2583), + [anon_sym_out_GT_GT] = ACTIONS(2583), + [anon_sym_e_GT_GT] = ACTIONS(2583), + [anon_sym_o_GT_GT] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2583), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(939)] = { + [sym_comment] = STATE(939), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(940)] = { + [sym_comment] = STATE(940), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -117122,10 +117574,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), + [anon_sym_GT2] = ACTIONS(1604), [anon_sym_DASH2] = ACTIONS(1706), [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_STAR2] = ACTIONS(1604), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -117138,33 +117590,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1604), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), [anon_sym_BANG_TILDE2] = ACTIONS(1706), [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2620), [anon_sym_STAR_STAR2] = ACTIONS(1706), [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_SLASH2] = ACTIONS(1604), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1604), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -117173,356 +117625,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [sym__unquoted_pattern] = ACTIONS(2597), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(938)] = { - [sym_comment] = STATE(938), - [ts_builtin_sym_end] = ACTIONS(1874), - [anon_sym_in] = ACTIONS(1874), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_GT2] = ACTIONS(1876), - [anon_sym_DASH2] = ACTIONS(1874), - [anon_sym_STAR2] = ACTIONS(1876), - [anon_sym_and2] = ACTIONS(1874), - [anon_sym_xor2] = ACTIONS(1874), - [anon_sym_or2] = ACTIONS(1874), - [anon_sym_not_DASHin2] = ACTIONS(1874), - [anon_sym_has2] = ACTIONS(1874), - [anon_sym_not_DASHhas2] = ACTIONS(1874), - [anon_sym_starts_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), - [anon_sym_ends_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), - [anon_sym_EQ_EQ2] = ACTIONS(1874), - [anon_sym_BANG_EQ2] = ACTIONS(1874), - [anon_sym_LT2] = ACTIONS(1876), - [anon_sym_LT_EQ2] = ACTIONS(1874), - [anon_sym_GT_EQ2] = ACTIONS(1874), - [anon_sym_EQ_TILDE2] = ACTIONS(1874), - [anon_sym_BANG_TILDE2] = ACTIONS(1874), - [anon_sym_like2] = ACTIONS(1874), - [anon_sym_not_DASHlike2] = ACTIONS(1874), - [anon_sym_STAR_STAR2] = ACTIONS(1874), - [anon_sym_PLUS_PLUS2] = ACTIONS(1874), - [anon_sym_SLASH2] = ACTIONS(1876), - [anon_sym_mod2] = ACTIONS(1874), - [anon_sym_SLASH_SLASH2] = ACTIONS(1874), - [anon_sym_PLUS2] = ACTIONS(1876), - [anon_sym_bit_DASHshl2] = ACTIONS(1874), - [anon_sym_bit_DASHshr2] = ACTIONS(1874), - [anon_sym_bit_DASHand2] = ACTIONS(1874), - [anon_sym_bit_DASHxor2] = ACTIONS(1874), - [anon_sym_bit_DASHor2] = ACTIONS(1874), - [anon_sym_DOT_DOT2] = ACTIONS(1876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1876), - [anon_sym_out_GT] = ACTIONS(1876), - [anon_sym_e_GT] = ACTIONS(1876), - [anon_sym_o_GT] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT] = ACTIONS(1876), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(939)] = { - [sym_comment] = STATE(939), - [ts_builtin_sym_end] = ACTIONS(2136), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(940)] = { - [sym_comment] = STATE(940), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(2307), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(2622), [anon_sym_POUND] = ACTIONS(3), }, [STATE(941)] = { [sym_comment] = STATE(941), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(942)] = { [sym_comment] = STATE(942), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_GT2] = ACTIONS(1888), - [anon_sym_DASH2] = ACTIONS(1886), - [anon_sym_STAR2] = ACTIONS(1888), - [anon_sym_and2] = ACTIONS(1886), - [anon_sym_xor2] = ACTIONS(1886), - [anon_sym_or2] = ACTIONS(1886), - [anon_sym_not_DASHin2] = ACTIONS(1886), - [anon_sym_has2] = ACTIONS(1886), - [anon_sym_not_DASHhas2] = ACTIONS(1886), - [anon_sym_starts_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1886), - [anon_sym_ends_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), - [anon_sym_EQ_EQ2] = ACTIONS(1886), - [anon_sym_BANG_EQ2] = ACTIONS(1886), - [anon_sym_LT2] = ACTIONS(1888), - [anon_sym_LT_EQ2] = ACTIONS(1886), - [anon_sym_GT_EQ2] = ACTIONS(1886), - [anon_sym_EQ_TILDE2] = ACTIONS(1886), - [anon_sym_BANG_TILDE2] = ACTIONS(1886), - [anon_sym_like2] = ACTIONS(1886), - [anon_sym_not_DASHlike2] = ACTIONS(1886), - [anon_sym_STAR_STAR2] = ACTIONS(1886), - [anon_sym_PLUS_PLUS2] = ACTIONS(1886), - [anon_sym_SLASH2] = ACTIONS(1888), - [anon_sym_mod2] = ACTIONS(1886), - [anon_sym_SLASH_SLASH2] = ACTIONS(1886), - [anon_sym_PLUS2] = ACTIONS(1888), - [anon_sym_bit_DASHshl2] = ACTIONS(1886), - [anon_sym_bit_DASHshr2] = ACTIONS(1886), - [anon_sym_bit_DASHand2] = ACTIONS(1886), - [anon_sym_bit_DASHxor2] = ACTIONS(1886), - [anon_sym_bit_DASHor2] = ACTIONS(1886), - [anon_sym_DOT_DOT2] = ACTIONS(1888), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1888), - [anon_sym_out_GT] = ACTIONS(1888), - [anon_sym_e_GT] = ACTIONS(1888), - [anon_sym_o_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT] = ACTIONS(1888), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), + [anon_sym_in] = ACTIONS(1844), + [sym__newline] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_err_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_GT_PIPE] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_GT2] = ACTIONS(1846), + [anon_sym_DASH2] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_EQ_GT] = ACTIONS(1844), + [anon_sym_STAR2] = ACTIONS(1846), + [anon_sym_and2] = ACTIONS(1844), + [anon_sym_xor2] = ACTIONS(1844), + [anon_sym_or2] = ACTIONS(1844), + [anon_sym_not_DASHin2] = ACTIONS(1844), + [anon_sym_has2] = ACTIONS(1844), + [anon_sym_not_DASHhas2] = ACTIONS(1844), + [anon_sym_starts_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1844), + [anon_sym_ends_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1844), + [anon_sym_EQ_EQ2] = ACTIONS(1844), + [anon_sym_BANG_EQ2] = ACTIONS(1844), + [anon_sym_LT2] = ACTIONS(1846), + [anon_sym_LT_EQ2] = ACTIONS(1844), + [anon_sym_GT_EQ2] = ACTIONS(1844), + [anon_sym_EQ_TILDE2] = ACTIONS(1844), + [anon_sym_BANG_TILDE2] = ACTIONS(1844), + [anon_sym_like2] = ACTIONS(1844), + [anon_sym_not_DASHlike2] = ACTIONS(1844), + [anon_sym_STAR_STAR2] = ACTIONS(1844), + [anon_sym_PLUS_PLUS2] = ACTIONS(1844), + [anon_sym_SLASH2] = ACTIONS(1846), + [anon_sym_mod2] = ACTIONS(1844), + [anon_sym_SLASH_SLASH2] = ACTIONS(1844), + [anon_sym_PLUS2] = ACTIONS(1846), + [anon_sym_bit_DASHshl2] = ACTIONS(1844), + [anon_sym_bit_DASHshr2] = ACTIONS(1844), + [anon_sym_bit_DASHand2] = ACTIONS(1844), + [anon_sym_bit_DASHxor2] = ACTIONS(1844), + [anon_sym_bit_DASHor2] = ACTIONS(1844), + [anon_sym_err_GT] = ACTIONS(1846), + [anon_sym_out_GT] = ACTIONS(1846), + [anon_sym_e_GT] = ACTIONS(1846), + [anon_sym_o_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT] = ACTIONS(1846), + [anon_sym_err_GT_GT] = ACTIONS(1844), + [anon_sym_out_GT_GT] = ACTIONS(1844), + [anon_sym_e_GT_GT] = ACTIONS(1844), + [anon_sym_o_GT_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(3), }, [STATE(943)] = { [sym_comment] = STATE(943), + [anon_sym_in] = ACTIONS(2624), + [sym__newline] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2624), + [anon_sym_PIPE] = ACTIONS(2624), + [anon_sym_err_GT_PIPE] = ACTIONS(2624), + [anon_sym_out_GT_PIPE] = ACTIONS(2624), + [anon_sym_e_GT_PIPE] = ACTIONS(2624), + [anon_sym_o_GT_PIPE] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2624), + [anon_sym_RPAREN] = ACTIONS(2624), + [anon_sym_GT2] = ACTIONS(2626), + [anon_sym_DASH2] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_EQ_GT] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2626), + [anon_sym_and2] = ACTIONS(2624), + [anon_sym_xor2] = ACTIONS(2624), + [anon_sym_or2] = ACTIONS(2624), + [anon_sym_not_DASHin2] = ACTIONS(2624), + [anon_sym_has2] = ACTIONS(2624), + [anon_sym_not_DASHhas2] = ACTIONS(2624), + [anon_sym_starts_DASHwith2] = ACTIONS(2624), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2624), + [anon_sym_ends_DASHwith2] = ACTIONS(2624), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2624), + [anon_sym_EQ_EQ2] = ACTIONS(2624), + [anon_sym_BANG_EQ2] = ACTIONS(2624), + [anon_sym_LT2] = ACTIONS(2626), + [anon_sym_LT_EQ2] = ACTIONS(2624), + [anon_sym_GT_EQ2] = ACTIONS(2624), + [anon_sym_EQ_TILDE2] = ACTIONS(2624), + [anon_sym_BANG_TILDE2] = ACTIONS(2624), + [anon_sym_like2] = ACTIONS(2624), + [anon_sym_not_DASHlike2] = ACTIONS(2624), + [anon_sym_STAR_STAR2] = ACTIONS(2624), + [anon_sym_PLUS_PLUS2] = ACTIONS(2624), + [anon_sym_SLASH2] = ACTIONS(2626), + [anon_sym_mod2] = ACTIONS(2624), + [anon_sym_SLASH_SLASH2] = ACTIONS(2624), + [anon_sym_PLUS2] = ACTIONS(2626), + [anon_sym_bit_DASHshl2] = ACTIONS(2624), + [anon_sym_bit_DASHshr2] = ACTIONS(2624), + [anon_sym_bit_DASHand2] = ACTIONS(2624), + [anon_sym_bit_DASHxor2] = ACTIONS(2624), + [anon_sym_bit_DASHor2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(944)] = { + [sym_comment] = STATE(944), + [anon_sym_in] = ACTIONS(2628), + [sym__newline] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_PIPE] = ACTIONS(2628), + [anon_sym_err_GT_PIPE] = ACTIONS(2628), + [anon_sym_out_GT_PIPE] = ACTIONS(2628), + [anon_sym_e_GT_PIPE] = ACTIONS(2628), + [anon_sym_o_GT_PIPE] = ACTIONS(2628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2628), + [anon_sym_RPAREN] = ACTIONS(2628), + [anon_sym_GT2] = ACTIONS(2630), + [anon_sym_DASH2] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_EQ_GT] = ACTIONS(2628), + [anon_sym_STAR2] = ACTIONS(2630), + [anon_sym_and2] = ACTIONS(2628), + [anon_sym_xor2] = ACTIONS(2628), + [anon_sym_or2] = ACTIONS(2628), + [anon_sym_not_DASHin2] = ACTIONS(2628), + [anon_sym_has2] = ACTIONS(2628), + [anon_sym_not_DASHhas2] = ACTIONS(2628), + [anon_sym_starts_DASHwith2] = ACTIONS(2628), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2628), + [anon_sym_ends_DASHwith2] = ACTIONS(2628), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2628), + [anon_sym_EQ_EQ2] = ACTIONS(2628), + [anon_sym_BANG_EQ2] = ACTIONS(2628), + [anon_sym_LT2] = ACTIONS(2630), + [anon_sym_LT_EQ2] = ACTIONS(2628), + [anon_sym_GT_EQ2] = ACTIONS(2628), + [anon_sym_EQ_TILDE2] = ACTIONS(2628), + [anon_sym_BANG_TILDE2] = ACTIONS(2628), + [anon_sym_like2] = ACTIONS(2628), + [anon_sym_not_DASHlike2] = ACTIONS(2628), + [anon_sym_STAR_STAR2] = ACTIONS(2628), + [anon_sym_PLUS_PLUS2] = ACTIONS(2628), + [anon_sym_SLASH2] = ACTIONS(2630), + [anon_sym_mod2] = ACTIONS(2628), + [anon_sym_SLASH_SLASH2] = ACTIONS(2628), + [anon_sym_PLUS2] = ACTIONS(2630), + [anon_sym_bit_DASHshl2] = ACTIONS(2628), + [anon_sym_bit_DASHshr2] = ACTIONS(2628), + [anon_sym_bit_DASHand2] = ACTIONS(2628), + [anon_sym_bit_DASHxor2] = ACTIONS(2628), + [anon_sym_bit_DASHor2] = ACTIONS(2628), + [anon_sym_err_GT] = ACTIONS(2630), + [anon_sym_out_GT] = ACTIONS(2630), + [anon_sym_e_GT] = ACTIONS(2630), + [anon_sym_o_GT] = ACTIONS(2630), + [anon_sym_err_PLUSout_GT] = ACTIONS(2630), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2630), + [anon_sym_o_PLUSe_GT] = ACTIONS(2630), + [anon_sym_e_PLUSo_GT] = ACTIONS(2630), + [anon_sym_err_GT_GT] = ACTIONS(2628), + [anon_sym_out_GT_GT] = ACTIONS(2628), + [anon_sym_e_GT_GT] = ACTIONS(2628), + [anon_sym_o_GT_GT] = ACTIONS(2628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2628), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(945)] = { + [sym_comment] = STATE(945), + [ts_builtin_sym_end] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(2273), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(946)] = { + [sym_comment] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1706), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -117535,13 +117988,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), + [anon_sym_GT2] = ACTIONS(1604), [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_EQ_GT] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_STAR2] = ACTIONS(1604), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -117554,7 +118003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1604), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -117563,23 +118012,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_SLASH2] = ACTIONS(1604), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1604), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_DOT_DOT2] = ACTIONS(1734), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -117590,146 +118042,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(944)] = { - [sym_comment] = STATE(944), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_EQ_GT] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(945)] = { - [sym_comment] = STATE(945), - [anon_sym_in] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(2599), - [anon_sym_err_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_GT_PIPE] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2599), - [anon_sym_RPAREN] = ACTIONS(2599), - [anon_sym_GT2] = ACTIONS(2601), - [anon_sym_DASH2] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_EQ_GT] = ACTIONS(2599), - [anon_sym_STAR2] = ACTIONS(2601), - [anon_sym_and2] = ACTIONS(2599), - [anon_sym_xor2] = ACTIONS(2599), - [anon_sym_or2] = ACTIONS(2599), - [anon_sym_not_DASHin2] = ACTIONS(2599), - [anon_sym_has2] = ACTIONS(2599), - [anon_sym_not_DASHhas2] = ACTIONS(2599), - [anon_sym_starts_DASHwith2] = ACTIONS(2599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2599), - [anon_sym_ends_DASHwith2] = ACTIONS(2599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2599), - [anon_sym_EQ_EQ2] = ACTIONS(2599), - [anon_sym_BANG_EQ2] = ACTIONS(2599), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LT_EQ2] = ACTIONS(2599), - [anon_sym_GT_EQ2] = ACTIONS(2599), - [anon_sym_EQ_TILDE2] = ACTIONS(2599), - [anon_sym_BANG_TILDE2] = ACTIONS(2599), - [anon_sym_like2] = ACTIONS(2599), - [anon_sym_not_DASHlike2] = ACTIONS(2599), - [anon_sym_STAR_STAR2] = ACTIONS(2599), - [anon_sym_PLUS_PLUS2] = ACTIONS(2599), - [anon_sym_SLASH2] = ACTIONS(2601), - [anon_sym_mod2] = ACTIONS(2599), - [anon_sym_SLASH_SLASH2] = ACTIONS(2599), - [anon_sym_PLUS2] = ACTIONS(2601), - [anon_sym_bit_DASHshl2] = ACTIONS(2599), - [anon_sym_bit_DASHshr2] = ACTIONS(2599), - [anon_sym_bit_DASHand2] = ACTIONS(2599), - [anon_sym_bit_DASHxor2] = ACTIONS(2599), - [anon_sym_bit_DASHor2] = ACTIONS(2599), - [anon_sym_err_GT] = ACTIONS(2601), - [anon_sym_out_GT] = ACTIONS(2601), - [anon_sym_e_GT] = ACTIONS(2601), - [anon_sym_o_GT] = ACTIONS(2601), - [anon_sym_err_PLUSout_GT] = ACTIONS(2601), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2601), - [anon_sym_o_PLUSe_GT] = ACTIONS(2601), - [anon_sym_e_PLUSo_GT] = ACTIONS(2601), - [anon_sym_err_GT_GT] = ACTIONS(2599), - [anon_sym_out_GT_GT] = ACTIONS(2599), - [anon_sym_e_GT_GT] = ACTIONS(2599), - [anon_sym_o_GT_GT] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2599), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(946)] = { - [sym_comment] = STATE(946), + [STATE(947)] = { + [sym_comment] = STATE(947), + [ts_builtin_sym_end] = ACTIONS(2134), [anon_sym_in] = ACTIONS(2134), [sym__newline] = ACTIONS(2134), [anon_sym_SEMI] = ACTIONS(2134), @@ -117742,13 +118057,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), + [anon_sym_GT2] = ACTIONS(2136), [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_EQ_GT] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), + [anon_sym_STAR2] = ACTIONS(2136), [anon_sym_and2] = ACTIONS(2134), [anon_sym_xor2] = ACTIONS(2134), [anon_sym_or2] = ACTIONS(2134), @@ -117761,7 +118072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), [anon_sym_EQ_EQ2] = ACTIONS(2134), [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), + [anon_sym_LT2] = ACTIONS(2136), [anon_sym_LT_EQ2] = ACTIONS(2134), [anon_sym_GT_EQ2] = ACTIONS(2134), [anon_sym_EQ_TILDE2] = ACTIONS(2134), @@ -117770,23 +118081,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(2134), [anon_sym_STAR_STAR2] = ACTIONS(2134), [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), + [anon_sym_SLASH2] = ACTIONS(2136), [anon_sym_mod2] = ACTIONS(2134), [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_PLUS2] = ACTIONS(2136), [anon_sym_bit_DASHshl2] = ACTIONS(2134), [anon_sym_bit_DASHshr2] = ACTIONS(2134), [anon_sym_bit_DASHand2] = ACTIONS(2134), [anon_sym_bit_DASHxor2] = ACTIONS(2134), [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), + [anon_sym_DOT_DOT2] = ACTIONS(2632), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2634), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2634), + [anon_sym_err_GT] = ACTIONS(2136), + [anon_sym_out_GT] = ACTIONS(2136), + [anon_sym_e_GT] = ACTIONS(2136), + [anon_sym_o_GT] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT] = ACTIONS(2136), [anon_sym_err_GT_GT] = ACTIONS(2134), [anon_sym_out_GT_GT] = ACTIONS(2134), [anon_sym_e_GT_GT] = ACTIONS(2134), @@ -117797,1082 +118111,944 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(947)] = { - [sym_comment] = STATE(947), - [anon_sym_in] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_PIPE] = ACTIONS(2603), - [anon_sym_err_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_GT_PIPE] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2603), - [anon_sym_RPAREN] = ACTIONS(2603), - [anon_sym_GT2] = ACTIONS(2605), - [anon_sym_DASH2] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_EQ_GT] = ACTIONS(2603), - [anon_sym_STAR2] = ACTIONS(2605), - [anon_sym_and2] = ACTIONS(2603), - [anon_sym_xor2] = ACTIONS(2603), - [anon_sym_or2] = ACTIONS(2603), - [anon_sym_not_DASHin2] = ACTIONS(2603), - [anon_sym_has2] = ACTIONS(2603), - [anon_sym_not_DASHhas2] = ACTIONS(2603), - [anon_sym_starts_DASHwith2] = ACTIONS(2603), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2603), - [anon_sym_ends_DASHwith2] = ACTIONS(2603), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2603), - [anon_sym_EQ_EQ2] = ACTIONS(2603), - [anon_sym_BANG_EQ2] = ACTIONS(2603), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LT_EQ2] = ACTIONS(2603), - [anon_sym_GT_EQ2] = ACTIONS(2603), - [anon_sym_EQ_TILDE2] = ACTIONS(2603), - [anon_sym_BANG_TILDE2] = ACTIONS(2603), - [anon_sym_like2] = ACTIONS(2603), - [anon_sym_not_DASHlike2] = ACTIONS(2603), - [anon_sym_STAR_STAR2] = ACTIONS(2603), - [anon_sym_PLUS_PLUS2] = ACTIONS(2603), - [anon_sym_SLASH2] = ACTIONS(2605), - [anon_sym_mod2] = ACTIONS(2603), - [anon_sym_SLASH_SLASH2] = ACTIONS(2603), - [anon_sym_PLUS2] = ACTIONS(2605), - [anon_sym_bit_DASHshl2] = ACTIONS(2603), - [anon_sym_bit_DASHshr2] = ACTIONS(2603), - [anon_sym_bit_DASHand2] = ACTIONS(2603), - [anon_sym_bit_DASHxor2] = ACTIONS(2603), - [anon_sym_bit_DASHor2] = ACTIONS(2603), - [anon_sym_err_GT] = ACTIONS(2605), - [anon_sym_out_GT] = ACTIONS(2605), - [anon_sym_e_GT] = ACTIONS(2605), - [anon_sym_o_GT] = ACTIONS(2605), - [anon_sym_err_PLUSout_GT] = ACTIONS(2605), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2605), - [anon_sym_o_PLUSe_GT] = ACTIONS(2605), - [anon_sym_e_PLUSo_GT] = ACTIONS(2605), - [anon_sym_err_GT_GT] = ACTIONS(2603), - [anon_sym_out_GT_GT] = ACTIONS(2603), - [anon_sym_e_GT_GT] = ACTIONS(2603), - [anon_sym_o_GT_GT] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2603), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(948)] = { [sym_comment] = STATE(948), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(2533), + [sym__newline] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2533), + [anon_sym_err_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_GT_PIPE] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_GT2] = ACTIONS(2535), + [anon_sym_DASH2] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_EQ_GT] = ACTIONS(2533), + [anon_sym_STAR2] = ACTIONS(2535), + [anon_sym_and2] = ACTIONS(2533), + [anon_sym_xor2] = ACTIONS(2533), + [anon_sym_or2] = ACTIONS(2533), + [anon_sym_not_DASHin2] = ACTIONS(2533), + [anon_sym_has2] = ACTIONS(2533), + [anon_sym_not_DASHhas2] = ACTIONS(2533), + [anon_sym_starts_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), + [anon_sym_ends_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), + [anon_sym_EQ_EQ2] = ACTIONS(2533), + [anon_sym_BANG_EQ2] = ACTIONS(2533), + [anon_sym_LT2] = ACTIONS(2535), + [anon_sym_LT_EQ2] = ACTIONS(2533), + [anon_sym_GT_EQ2] = ACTIONS(2533), + [anon_sym_EQ_TILDE2] = ACTIONS(2533), + [anon_sym_BANG_TILDE2] = ACTIONS(2533), + [anon_sym_like2] = ACTIONS(2533), + [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_STAR_STAR2] = ACTIONS(2533), + [anon_sym_PLUS_PLUS2] = ACTIONS(2533), + [anon_sym_SLASH2] = ACTIONS(2535), + [anon_sym_mod2] = ACTIONS(2533), + [anon_sym_SLASH_SLASH2] = ACTIONS(2533), + [anon_sym_PLUS2] = ACTIONS(2535), + [anon_sym_bit_DASHshl2] = ACTIONS(2533), + [anon_sym_bit_DASHshr2] = ACTIONS(2533), + [anon_sym_bit_DASHand2] = ACTIONS(2533), + [anon_sym_bit_DASHxor2] = ACTIONS(2533), + [anon_sym_bit_DASHor2] = ACTIONS(2533), + [anon_sym_err_GT] = ACTIONS(2535), + [anon_sym_out_GT] = ACTIONS(2535), + [anon_sym_e_GT] = ACTIONS(2535), + [anon_sym_o_GT] = ACTIONS(2535), + [anon_sym_err_PLUSout_GT] = ACTIONS(2535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), + [anon_sym_o_PLUSe_GT] = ACTIONS(2535), + [anon_sym_e_PLUSo_GT] = ACTIONS(2535), + [anon_sym_err_GT_GT] = ACTIONS(2533), + [anon_sym_out_GT_GT] = ACTIONS(2533), + [anon_sym_e_GT_GT] = ACTIONS(2533), + [anon_sym_o_GT_GT] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), [anon_sym_POUND] = ACTIONS(3), }, [STATE(949)] = { [sym_comment] = STATE(949), - [anon_sym_in] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_PIPE] = ACTIONS(2607), - [anon_sym_err_GT_PIPE] = ACTIONS(2607), - [anon_sym_out_GT_PIPE] = ACTIONS(2607), - [anon_sym_e_GT_PIPE] = ACTIONS(2607), - [anon_sym_o_GT_PIPE] = ACTIONS(2607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2607), - [anon_sym_RPAREN] = ACTIONS(2607), - [anon_sym_GT2] = ACTIONS(2609), - [anon_sym_DASH2] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_EQ_GT] = ACTIONS(2607), - [anon_sym_STAR2] = ACTIONS(2609), - [anon_sym_and2] = ACTIONS(2607), - [anon_sym_xor2] = ACTIONS(2607), - [anon_sym_or2] = ACTIONS(2607), - [anon_sym_not_DASHin2] = ACTIONS(2607), - [anon_sym_has2] = ACTIONS(2607), - [anon_sym_not_DASHhas2] = ACTIONS(2607), - [anon_sym_starts_DASHwith2] = ACTIONS(2607), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2607), - [anon_sym_ends_DASHwith2] = ACTIONS(2607), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2607), - [anon_sym_EQ_EQ2] = ACTIONS(2607), - [anon_sym_BANG_EQ2] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LT_EQ2] = ACTIONS(2607), - [anon_sym_GT_EQ2] = ACTIONS(2607), - [anon_sym_EQ_TILDE2] = ACTIONS(2607), - [anon_sym_BANG_TILDE2] = ACTIONS(2607), - [anon_sym_like2] = ACTIONS(2607), - [anon_sym_not_DASHlike2] = ACTIONS(2607), - [anon_sym_STAR_STAR2] = ACTIONS(2607), - [anon_sym_PLUS_PLUS2] = ACTIONS(2607), - [anon_sym_SLASH2] = ACTIONS(2609), - [anon_sym_mod2] = ACTIONS(2607), - [anon_sym_SLASH_SLASH2] = ACTIONS(2607), - [anon_sym_PLUS2] = ACTIONS(2609), - [anon_sym_bit_DASHshl2] = ACTIONS(2607), - [anon_sym_bit_DASHshr2] = ACTIONS(2607), - [anon_sym_bit_DASHand2] = ACTIONS(2607), - [anon_sym_bit_DASHxor2] = ACTIONS(2607), - [anon_sym_bit_DASHor2] = ACTIONS(2607), - [anon_sym_err_GT] = ACTIONS(2609), - [anon_sym_out_GT] = ACTIONS(2609), - [anon_sym_e_GT] = ACTIONS(2609), - [anon_sym_o_GT] = ACTIONS(2609), - [anon_sym_err_PLUSout_GT] = ACTIONS(2609), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2609), - [anon_sym_o_PLUSe_GT] = ACTIONS(2609), - [anon_sym_e_PLUSo_GT] = ACTIONS(2609), - [anon_sym_err_GT_GT] = ACTIONS(2607), - [anon_sym_out_GT_GT] = ACTIONS(2607), - [anon_sym_e_GT_GT] = ACTIONS(2607), - [anon_sym_o_GT_GT] = ACTIONS(2607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2607), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(2005), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(950)] = { [sym_comment] = STATE(950), - [ts_builtin_sym_end] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2611), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2613), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2613), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [ts_builtin_sym_end] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_err_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_GT_PIPE] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2122), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2122), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(1734), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), + [anon_sym_err_GT] = ACTIONS(2124), + [anon_sym_out_GT] = ACTIONS(2124), + [anon_sym_e_GT] = ACTIONS(2124), + [anon_sym_o_GT] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT] = ACTIONS(2124), + [anon_sym_err_GT_GT] = ACTIONS(2120), + [anon_sym_out_GT_GT] = ACTIONS(2120), + [anon_sym_e_GT_GT] = ACTIONS(2120), + [anon_sym_o_GT_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), [anon_sym_POUND] = ACTIONS(3), }, [STATE(951)] = { [sym_comment] = STATE(951), - [anon_sym_in] = ACTIONS(2615), - [sym__newline] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_PIPE] = ACTIONS(2615), - [anon_sym_err_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_GT_PIPE] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2615), - [anon_sym_RPAREN] = ACTIONS(2615), - [anon_sym_GT2] = ACTIONS(2617), - [anon_sym_DASH2] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_EQ_GT] = ACTIONS(2615), - [anon_sym_STAR2] = ACTIONS(2617), - [anon_sym_and2] = ACTIONS(2615), - [anon_sym_xor2] = ACTIONS(2615), - [anon_sym_or2] = ACTIONS(2615), - [anon_sym_not_DASHin2] = ACTIONS(2615), - [anon_sym_has2] = ACTIONS(2615), - [anon_sym_not_DASHhas2] = ACTIONS(2615), - [anon_sym_starts_DASHwith2] = ACTIONS(2615), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2615), - [anon_sym_ends_DASHwith2] = ACTIONS(2615), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2615), - [anon_sym_EQ_EQ2] = ACTIONS(2615), - [anon_sym_BANG_EQ2] = ACTIONS(2615), - [anon_sym_LT2] = ACTIONS(2617), - [anon_sym_LT_EQ2] = ACTIONS(2615), - [anon_sym_GT_EQ2] = ACTIONS(2615), - [anon_sym_EQ_TILDE2] = ACTIONS(2615), - [anon_sym_BANG_TILDE2] = ACTIONS(2615), - [anon_sym_like2] = ACTIONS(2615), - [anon_sym_not_DASHlike2] = ACTIONS(2615), - [anon_sym_STAR_STAR2] = ACTIONS(2615), - [anon_sym_PLUS_PLUS2] = ACTIONS(2615), - [anon_sym_SLASH2] = ACTIONS(2617), - [anon_sym_mod2] = ACTIONS(2615), - [anon_sym_SLASH_SLASH2] = ACTIONS(2615), - [anon_sym_PLUS2] = ACTIONS(2617), - [anon_sym_bit_DASHshl2] = ACTIONS(2615), - [anon_sym_bit_DASHshr2] = ACTIONS(2615), - [anon_sym_bit_DASHand2] = ACTIONS(2615), - [anon_sym_bit_DASHxor2] = ACTIONS(2615), - [anon_sym_bit_DASHor2] = ACTIONS(2615), - [anon_sym_err_GT] = ACTIONS(2617), - [anon_sym_out_GT] = ACTIONS(2617), - [anon_sym_e_GT] = ACTIONS(2617), - [anon_sym_o_GT] = ACTIONS(2617), - [anon_sym_err_PLUSout_GT] = ACTIONS(2617), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2617), - [anon_sym_o_PLUSe_GT] = ACTIONS(2617), - [anon_sym_e_PLUSo_GT] = ACTIONS(2617), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [ts_builtin_sym_end] = ACTIONS(1858), + [anon_sym_in] = ACTIONS(1858), + [sym__newline] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_err_GT_PIPE] = ACTIONS(1858), + [anon_sym_out_GT_PIPE] = ACTIONS(1858), + [anon_sym_e_GT_PIPE] = ACTIONS(1858), + [anon_sym_o_GT_PIPE] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), + [anon_sym_GT2] = ACTIONS(1860), + [anon_sym_DASH2] = ACTIONS(1858), + [anon_sym_STAR2] = ACTIONS(1860), + [anon_sym_and2] = ACTIONS(1858), + [anon_sym_xor2] = ACTIONS(1858), + [anon_sym_or2] = ACTIONS(1858), + [anon_sym_not_DASHin2] = ACTIONS(1858), + [anon_sym_has2] = ACTIONS(1858), + [anon_sym_not_DASHhas2] = ACTIONS(1858), + [anon_sym_starts_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), + [anon_sym_ends_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), + [anon_sym_EQ_EQ2] = ACTIONS(1858), + [anon_sym_BANG_EQ2] = ACTIONS(1858), + [anon_sym_LT2] = ACTIONS(1860), + [anon_sym_LT_EQ2] = ACTIONS(1858), + [anon_sym_GT_EQ2] = ACTIONS(1858), + [anon_sym_EQ_TILDE2] = ACTIONS(1858), + [anon_sym_BANG_TILDE2] = ACTIONS(1858), + [anon_sym_like2] = ACTIONS(1858), + [anon_sym_not_DASHlike2] = ACTIONS(1858), + [anon_sym_STAR_STAR2] = ACTIONS(1858), + [anon_sym_PLUS_PLUS2] = ACTIONS(1858), + [anon_sym_SLASH2] = ACTIONS(1860), + [anon_sym_mod2] = ACTIONS(1858), + [anon_sym_SLASH_SLASH2] = ACTIONS(1858), + [anon_sym_PLUS2] = ACTIONS(1860), + [anon_sym_bit_DASHshl2] = ACTIONS(1858), + [anon_sym_bit_DASHshr2] = ACTIONS(1858), + [anon_sym_bit_DASHand2] = ACTIONS(1858), + [anon_sym_bit_DASHxor2] = ACTIONS(1858), + [anon_sym_bit_DASHor2] = ACTIONS(1858), + [anon_sym_DOT_DOT2] = ACTIONS(1860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1858), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1858), + [anon_sym_err_GT] = ACTIONS(1860), + [anon_sym_out_GT] = ACTIONS(1860), + [anon_sym_e_GT] = ACTIONS(1860), + [anon_sym_o_GT] = ACTIONS(1860), + [anon_sym_err_PLUSout_GT] = ACTIONS(1860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), + [anon_sym_o_PLUSe_GT] = ACTIONS(1860), + [anon_sym_e_PLUSo_GT] = ACTIONS(1860), + [anon_sym_err_GT_GT] = ACTIONS(1858), + [anon_sym_out_GT_GT] = ACTIONS(1858), + [anon_sym_e_GT_GT] = ACTIONS(1858), + [anon_sym_o_GT_GT] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), [anon_sym_POUND] = ACTIONS(3), }, [STATE(952)] = { [sym_comment] = STATE(952), - [ts_builtin_sym_end] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_EQ_GT] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), [anon_sym_POUND] = ACTIONS(3), }, [STATE(953)] = { [sym_comment] = STATE(953), - [anon_sym_in] = ACTIONS(2619), - [sym__newline] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_PIPE] = ACTIONS(2619), - [anon_sym_err_GT_PIPE] = ACTIONS(2619), - [anon_sym_out_GT_PIPE] = ACTIONS(2619), - [anon_sym_e_GT_PIPE] = ACTIONS(2619), - [anon_sym_o_GT_PIPE] = ACTIONS(2619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2619), - [anon_sym_GT2] = ACTIONS(2621), - [anon_sym_DASH2] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_EQ_GT] = ACTIONS(2619), - [anon_sym_STAR2] = ACTIONS(2621), - [anon_sym_and2] = ACTIONS(2619), - [anon_sym_xor2] = ACTIONS(2619), - [anon_sym_or2] = ACTIONS(2619), - [anon_sym_not_DASHin2] = ACTIONS(2619), - [anon_sym_has2] = ACTIONS(2619), - [anon_sym_not_DASHhas2] = ACTIONS(2619), - [anon_sym_starts_DASHwith2] = ACTIONS(2619), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2619), - [anon_sym_ends_DASHwith2] = ACTIONS(2619), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2619), - [anon_sym_EQ_EQ2] = ACTIONS(2619), - [anon_sym_BANG_EQ2] = ACTIONS(2619), - [anon_sym_LT2] = ACTIONS(2621), - [anon_sym_LT_EQ2] = ACTIONS(2619), - [anon_sym_GT_EQ2] = ACTIONS(2619), - [anon_sym_EQ_TILDE2] = ACTIONS(2619), - [anon_sym_BANG_TILDE2] = ACTIONS(2619), - [anon_sym_like2] = ACTIONS(2619), - [anon_sym_not_DASHlike2] = ACTIONS(2619), - [anon_sym_STAR_STAR2] = ACTIONS(2619), - [anon_sym_PLUS_PLUS2] = ACTIONS(2619), - [anon_sym_SLASH2] = ACTIONS(2621), - [anon_sym_mod2] = ACTIONS(2619), - [anon_sym_SLASH_SLASH2] = ACTIONS(2619), - [anon_sym_PLUS2] = ACTIONS(2621), - [anon_sym_bit_DASHshl2] = ACTIONS(2619), - [anon_sym_bit_DASHshr2] = ACTIONS(2619), - [anon_sym_bit_DASHand2] = ACTIONS(2619), - [anon_sym_bit_DASHxor2] = ACTIONS(2619), - [anon_sym_bit_DASHor2] = ACTIONS(2619), - [anon_sym_err_GT] = ACTIONS(2621), - [anon_sym_out_GT] = ACTIONS(2621), - [anon_sym_e_GT] = ACTIONS(2621), - [anon_sym_o_GT] = ACTIONS(2621), - [anon_sym_err_PLUSout_GT] = ACTIONS(2621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2621), - [anon_sym_o_PLUSe_GT] = ACTIONS(2621), - [anon_sym_e_PLUSo_GT] = ACTIONS(2621), - [anon_sym_err_GT_GT] = ACTIONS(2619), - [anon_sym_out_GT_GT] = ACTIONS(2619), - [anon_sym_e_GT_GT] = ACTIONS(2619), - [anon_sym_o_GT_GT] = ACTIONS(2619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2619), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_err_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_GT_PIPE] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_EQ_GT] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2122), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2122), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_err_GT] = ACTIONS(2122), + [anon_sym_out_GT] = ACTIONS(2122), + [anon_sym_e_GT] = ACTIONS(2122), + [anon_sym_o_GT] = ACTIONS(2122), + [anon_sym_err_PLUSout_GT] = ACTIONS(2122), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), + [anon_sym_o_PLUSe_GT] = ACTIONS(2122), + [anon_sym_e_PLUSo_GT] = ACTIONS(2122), + [anon_sym_err_GT_GT] = ACTIONS(2118), + [anon_sym_out_GT_GT] = ACTIONS(2118), + [anon_sym_e_GT_GT] = ACTIONS(2118), + [anon_sym_o_GT_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(3), }, [STATE(954)] = { [sym_comment] = STATE(954), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_EQ_GT] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(955)] = { [sym_comment] = STATE(955), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [ts_builtin_sym_end] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [sym__newline] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_err_GT_PIPE] = ACTIONS(1647), + [anon_sym_out_GT_PIPE] = ACTIONS(1647), + [anon_sym_e_GT_PIPE] = ACTIONS(1647), + [anon_sym_o_GT_PIPE] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), + [anon_sym_GT2] = ACTIONS(1649), + [anon_sym_DASH2] = ACTIONS(1647), + [anon_sym_STAR2] = ACTIONS(1649), + [anon_sym_and2] = ACTIONS(1647), + [anon_sym_xor2] = ACTIONS(1647), + [anon_sym_or2] = ACTIONS(1647), + [anon_sym_not_DASHin2] = ACTIONS(1647), + [anon_sym_has2] = ACTIONS(1647), + [anon_sym_not_DASHhas2] = ACTIONS(1647), + [anon_sym_starts_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1647), + [anon_sym_ends_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1647), + [anon_sym_EQ_EQ2] = ACTIONS(1647), + [anon_sym_BANG_EQ2] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1649), + [anon_sym_LT_EQ2] = ACTIONS(1647), + [anon_sym_GT_EQ2] = ACTIONS(1647), + [anon_sym_EQ_TILDE2] = ACTIONS(1647), + [anon_sym_BANG_TILDE2] = ACTIONS(1647), + [anon_sym_like2] = ACTIONS(1647), + [anon_sym_not_DASHlike2] = ACTIONS(1647), + [anon_sym_STAR_STAR2] = ACTIONS(1647), + [anon_sym_PLUS_PLUS2] = ACTIONS(1647), + [anon_sym_SLASH2] = ACTIONS(1649), + [anon_sym_mod2] = ACTIONS(1647), + [anon_sym_SLASH_SLASH2] = ACTIONS(1647), + [anon_sym_PLUS2] = ACTIONS(1649), + [anon_sym_bit_DASHshl2] = ACTIONS(1647), + [anon_sym_bit_DASHshr2] = ACTIONS(1647), + [anon_sym_bit_DASHand2] = ACTIONS(1647), + [anon_sym_bit_DASHxor2] = ACTIONS(1647), + [anon_sym_bit_DASHor2] = ACTIONS(1647), + [anon_sym_DOT_DOT2] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), + [anon_sym_err_GT] = ACTIONS(1649), + [anon_sym_out_GT] = ACTIONS(1649), + [anon_sym_e_GT] = ACTIONS(1649), + [anon_sym_o_GT] = ACTIONS(1649), + [anon_sym_err_PLUSout_GT] = ACTIONS(1649), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1649), + [anon_sym_o_PLUSe_GT] = ACTIONS(1649), + [anon_sym_e_PLUSo_GT] = ACTIONS(1649), + [anon_sym_err_GT_GT] = ACTIONS(1647), + [anon_sym_out_GT_GT] = ACTIONS(1647), + [anon_sym_e_GT_GT] = ACTIONS(1647), + [anon_sym_o_GT_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), [anon_sym_POUND] = ACTIONS(3), }, [STATE(956)] = { [sym_comment] = STATE(956), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(2636), + [sym__newline] = ACTIONS(2636), + [anon_sym_SEMI] = ACTIONS(2636), + [anon_sym_PIPE] = ACTIONS(2636), + [anon_sym_err_GT_PIPE] = ACTIONS(2636), + [anon_sym_out_GT_PIPE] = ACTIONS(2636), + [anon_sym_e_GT_PIPE] = ACTIONS(2636), + [anon_sym_o_GT_PIPE] = ACTIONS(2636), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2636), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2636), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2636), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2636), + [anon_sym_RPAREN] = ACTIONS(2636), + [anon_sym_GT2] = ACTIONS(2638), + [anon_sym_DASH2] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2636), + [anon_sym_EQ_GT] = ACTIONS(2636), + [anon_sym_STAR2] = ACTIONS(2638), + [anon_sym_and2] = ACTIONS(2636), + [anon_sym_xor2] = ACTIONS(2636), + [anon_sym_or2] = ACTIONS(2636), + [anon_sym_not_DASHin2] = ACTIONS(2636), + [anon_sym_has2] = ACTIONS(2636), + [anon_sym_not_DASHhas2] = ACTIONS(2636), + [anon_sym_starts_DASHwith2] = ACTIONS(2636), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2636), + [anon_sym_ends_DASHwith2] = ACTIONS(2636), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2636), + [anon_sym_EQ_EQ2] = ACTIONS(2636), + [anon_sym_BANG_EQ2] = ACTIONS(2636), + [anon_sym_LT2] = ACTIONS(2638), + [anon_sym_LT_EQ2] = ACTIONS(2636), + [anon_sym_GT_EQ2] = ACTIONS(2636), + [anon_sym_EQ_TILDE2] = ACTIONS(2636), + [anon_sym_BANG_TILDE2] = ACTIONS(2636), + [anon_sym_like2] = ACTIONS(2636), + [anon_sym_not_DASHlike2] = ACTIONS(2636), + [anon_sym_STAR_STAR2] = ACTIONS(2636), + [anon_sym_PLUS_PLUS2] = ACTIONS(2636), + [anon_sym_SLASH2] = ACTIONS(2638), + [anon_sym_mod2] = ACTIONS(2636), + [anon_sym_SLASH_SLASH2] = ACTIONS(2636), + [anon_sym_PLUS2] = ACTIONS(2638), + [anon_sym_bit_DASHshl2] = ACTIONS(2636), + [anon_sym_bit_DASHshr2] = ACTIONS(2636), + [anon_sym_bit_DASHand2] = ACTIONS(2636), + [anon_sym_bit_DASHxor2] = ACTIONS(2636), + [anon_sym_bit_DASHor2] = ACTIONS(2636), + [anon_sym_err_GT] = ACTIONS(2638), + [anon_sym_out_GT] = ACTIONS(2638), + [anon_sym_e_GT] = ACTIONS(2638), + [anon_sym_o_GT] = ACTIONS(2638), + [anon_sym_err_PLUSout_GT] = ACTIONS(2638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2638), + [anon_sym_o_PLUSe_GT] = ACTIONS(2638), + [anon_sym_e_PLUSo_GT] = ACTIONS(2638), + [anon_sym_err_GT_GT] = ACTIONS(2636), + [anon_sym_out_GT_GT] = ACTIONS(2636), + [anon_sym_e_GT_GT] = ACTIONS(2636), + [anon_sym_o_GT_GT] = ACTIONS(2636), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2636), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2636), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2636), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2636), [anon_sym_POUND] = ACTIONS(3), }, [STATE(957)] = { [sym_comment] = STATE(957), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(2627), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(958)] = { [sym_comment] = STATE(958), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_RPAREN] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_err_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_GT_PIPE] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_EQ_GT] = ACTIONS(2120), + [anon_sym_STAR2] = ACTIONS(2122), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2122), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_err_GT] = ACTIONS(2124), + [anon_sym_out_GT] = ACTIONS(2124), + [anon_sym_e_GT] = ACTIONS(2124), + [anon_sym_o_GT] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT] = ACTIONS(2124), + [anon_sym_err_GT_GT] = ACTIONS(2120), + [anon_sym_out_GT_GT] = ACTIONS(2120), + [anon_sym_e_GT_GT] = ACTIONS(2120), + [anon_sym_o_GT_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), [anon_sym_POUND] = ACTIONS(3), }, [STATE(959)] = { [sym_comment] = STATE(959), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), - [sym__unquoted_pattern] = ACTIONS(2633), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(960)] = { [sym_comment] = STATE(960), - [anon_sym_in] = ACTIONS(2635), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2635), - [anon_sym_xor2] = ACTIONS(2635), - [anon_sym_or2] = ACTIONS(2635), - [anon_sym_not_DASHin2] = ACTIONS(2635), - [anon_sym_has2] = ACTIONS(2635), - [anon_sym_not_DASHhas2] = ACTIONS(2635), - [anon_sym_starts_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2635), - [anon_sym_ends_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2635), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2635), - [anon_sym_like2] = ACTIONS(2635), - [anon_sym_not_DASHlike2] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_STAR_STAR2] = ACTIONS(2635), - [anon_sym_PLUS_PLUS2] = ACTIONS(2635), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2635), - [anon_sym_SLASH_SLASH2] = ACTIONS(2635), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2635), - [anon_sym_bit_DASHshr2] = ACTIONS(2635), - [anon_sym_bit_DASHand2] = ACTIONS(2635), - [anon_sym_bit_DASHxor2] = ACTIONS(2635), - [anon_sym_bit_DASHor2] = ACTIONS(2635), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [sym__unquoted_pattern] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2640), + [sym__newline] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_err_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_GT_PIPE] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2640), + [anon_sym_RPAREN] = ACTIONS(2640), + [anon_sym_GT2] = ACTIONS(2642), + [anon_sym_DASH2] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_EQ_GT] = ACTIONS(2640), + [anon_sym_STAR2] = ACTIONS(2642), + [anon_sym_and2] = ACTIONS(2640), + [anon_sym_xor2] = ACTIONS(2640), + [anon_sym_or2] = ACTIONS(2640), + [anon_sym_not_DASHin2] = ACTIONS(2640), + [anon_sym_has2] = ACTIONS(2640), + [anon_sym_not_DASHhas2] = ACTIONS(2640), + [anon_sym_starts_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2640), + [anon_sym_ends_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2640), + [anon_sym_EQ_EQ2] = ACTIONS(2640), + [anon_sym_BANG_EQ2] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2642), + [anon_sym_LT_EQ2] = ACTIONS(2640), + [anon_sym_GT_EQ2] = ACTIONS(2640), + [anon_sym_EQ_TILDE2] = ACTIONS(2640), + [anon_sym_BANG_TILDE2] = ACTIONS(2640), + [anon_sym_like2] = ACTIONS(2640), + [anon_sym_not_DASHlike2] = ACTIONS(2640), + [anon_sym_STAR_STAR2] = ACTIONS(2640), + [anon_sym_PLUS_PLUS2] = ACTIONS(2640), + [anon_sym_SLASH2] = ACTIONS(2642), + [anon_sym_mod2] = ACTIONS(2640), + [anon_sym_SLASH_SLASH2] = ACTIONS(2640), + [anon_sym_PLUS2] = ACTIONS(2642), + [anon_sym_bit_DASHshl2] = ACTIONS(2640), + [anon_sym_bit_DASHshr2] = ACTIONS(2640), + [anon_sym_bit_DASHand2] = ACTIONS(2640), + [anon_sym_bit_DASHxor2] = ACTIONS(2640), + [anon_sym_bit_DASHor2] = ACTIONS(2640), + [anon_sym_err_GT] = ACTIONS(2642), + [anon_sym_out_GT] = ACTIONS(2642), + [anon_sym_e_GT] = ACTIONS(2642), + [anon_sym_o_GT] = ACTIONS(2642), + [anon_sym_err_PLUSout_GT] = ACTIONS(2642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2642), + [anon_sym_o_PLUSe_GT] = ACTIONS(2642), + [anon_sym_e_PLUSo_GT] = ACTIONS(2642), + [anon_sym_err_GT_GT] = ACTIONS(2640), + [anon_sym_out_GT_GT] = ACTIONS(2640), + [anon_sym_e_GT_GT] = ACTIONS(2640), + [anon_sym_o_GT_GT] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2640), [anon_sym_POUND] = ACTIONS(3), }, [STATE(961)] = { + [aux_sym__repeat_newline] = STATE(1128), + [sym__expression_parenthesized] = STATE(4391), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), [sym_comment] = STATE(961), - [anon_sym_in] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_like2] = ACTIONS(994), - [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(962)] = { - [aux_sym__repeat_newline] = STATE(1129), - [sym__expression_parenthesized] = STATE(4352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [sym__newline] = ACTIONS(2569), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -118882,17 +119058,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2573), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -118901,47 +119077,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(963)] = { - [aux_sym__repeat_newline] = STATE(1005), - [sym__expression_parenthesized] = STATE(4360), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(963), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), + [STATE(962)] = { + [aux_sym__repeat_newline] = STATE(1052), + [sym__expression_parenthesized] = STATE(4397), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [sym__newline] = ACTIONS(2569), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -118951,17 +119127,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2573), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -118970,2835 +119146,2495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(963)] = { + [sym_comment] = STATE(963), + [anon_sym_in] = ACTIONS(1004), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(2602), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [sym__unquoted_pattern] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(964)] = { - [aux_sym__repeat_newline] = STATE(964), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(964), - [anon_sym_export] = ACTIONS(1960), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1960), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [sym__newline] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1960), - [anon_sym_where] = ACTIONS(1955), - [aux_sym_expr_unary_token1] = ACTIONS(1955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1960), - [anon_sym_0o] = ACTIONS(1960), - [anon_sym_0x] = ACTIONS(1960), - [sym_val_date] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [anon_sym_SQUOTE] = ACTIONS(1955), - [anon_sym_BQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1955), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(965)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), [sym_comment] = STATE(965), - [anon_sym_export] = ACTIONS(2646), - [anon_sym_alias] = ACTIONS(2648), - [anon_sym_let] = ACTIONS(2648), - [anon_sym_mut] = ACTIONS(2648), - [anon_sym_const] = ACTIONS(2648), - [aux_sym_cmd_identifier_token1] = ACTIONS(2646), - [anon_sym_def] = ACTIONS(2648), - [anon_sym_use] = ACTIONS(2648), - [anon_sym_export_DASHenv] = ACTIONS(2648), - [anon_sym_extern] = ACTIONS(2648), - [anon_sym_module] = ACTIONS(2648), - [anon_sym_for] = ACTIONS(2648), - [anon_sym_loop] = ACTIONS(2648), - [anon_sym_while] = ACTIONS(2648), - [anon_sym_if] = ACTIONS(2648), - [anon_sym_else] = ACTIONS(2648), - [anon_sym_try] = ACTIONS(2648), - [anon_sym_catch] = ACTIONS(2648), - [anon_sym_match] = ACTIONS(2648), - [anon_sym_in] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_null] = ACTIONS(2648), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [sym__newline] = ACTIONS(2648), - [anon_sym_PIPE] = ACTIONS(2648), - [anon_sym_err_GT_PIPE] = ACTIONS(2648), - [anon_sym_out_GT_PIPE] = ACTIONS(2648), - [anon_sym_e_GT_PIPE] = ACTIONS(2648), - [anon_sym_o_GT_PIPE] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(2648), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_DOLLAR] = ACTIONS(2646), - [anon_sym_DASH2] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_DOT_DOT] = ACTIONS(2646), - [anon_sym_where] = ACTIONS(2648), - [aux_sym_expr_unary_token1] = ACTIONS(2648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2648), - [anon_sym_DOT_DOT_LT] = ACTIONS(2648), - [aux_sym__val_number_decimal_token1] = ACTIONS(2646), - [aux_sym__val_number_decimal_token2] = ACTIONS(2648), - [aux_sym__val_number_decimal_token3] = ACTIONS(2648), - [aux_sym__val_number_decimal_token4] = ACTIONS(2648), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2646), - [anon_sym_0o] = ACTIONS(2646), - [anon_sym_0x] = ACTIONS(2646), - [sym_val_date] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_BQUOTE] = ACTIONS(2648), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2648), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), - [anon_sym_CARET] = ACTIONS(2648), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2648), + [ts_builtin_sym_end] = ACTIONS(2094), + [anon_sym_in] = ACTIONS(2094), + [sym__newline] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_err_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_GT_PIPE] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), + [anon_sym_GT2] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_STAR2] = ACTIONS(2096), + [anon_sym_and2] = ACTIONS(2094), + [anon_sym_xor2] = ACTIONS(2094), + [anon_sym_or2] = ACTIONS(2094), + [anon_sym_not_DASHin2] = ACTIONS(2094), + [anon_sym_has2] = ACTIONS(2094), + [anon_sym_not_DASHhas2] = ACTIONS(2094), + [anon_sym_starts_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), + [anon_sym_ends_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), + [anon_sym_EQ_EQ2] = ACTIONS(2094), + [anon_sym_BANG_EQ2] = ACTIONS(2094), + [anon_sym_LT2] = ACTIONS(2096), + [anon_sym_LT_EQ2] = ACTIONS(2094), + [anon_sym_GT_EQ2] = ACTIONS(2094), + [anon_sym_EQ_TILDE2] = ACTIONS(2094), + [anon_sym_BANG_TILDE2] = ACTIONS(2094), + [anon_sym_like2] = ACTIONS(2094), + [anon_sym_not_DASHlike2] = ACTIONS(2094), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2094), + [anon_sym_PLUS_PLUS2] = ACTIONS(2094), + [anon_sym_SLASH2] = ACTIONS(2096), + [anon_sym_mod2] = ACTIONS(2094), + [anon_sym_SLASH_SLASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_bit_DASHshl2] = ACTIONS(2094), + [anon_sym_bit_DASHshr2] = ACTIONS(2094), + [anon_sym_bit_DASHand2] = ACTIONS(2094), + [anon_sym_bit_DASHxor2] = ACTIONS(2094), + [anon_sym_bit_DASHor2] = ACTIONS(2094), + [anon_sym_err_GT] = ACTIONS(2096), + [anon_sym_out_GT] = ACTIONS(2096), + [anon_sym_e_GT] = ACTIONS(2096), + [anon_sym_o_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT] = ACTIONS(2096), + [anon_sym_err_GT_GT] = ACTIONS(2094), + [anon_sym_out_GT_GT] = ACTIONS(2094), + [anon_sym_e_GT_GT] = ACTIONS(2094), + [anon_sym_o_GT_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(966)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), [sym_comment] = STATE(966), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_alias] = ACTIONS(2096), - [anon_sym_let] = ACTIONS(2096), - [anon_sym_mut] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [aux_sym_cmd_identifier_token1] = ACTIONS(2098), - [anon_sym_def] = ACTIONS(2096), - [anon_sym_use] = ACTIONS(2096), - [anon_sym_export_DASHenv] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_module] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_loop] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [anon_sym_catch] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), + [ts_builtin_sym_end] = ACTIONS(2098), [anon_sym_in] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_null] = ACTIONS(2096), - [aux_sym_cmd_identifier_token3] = ACTIONS(2096), - [aux_sym_cmd_identifier_token4] = ACTIONS(2096), - [aux_sym_cmd_identifier_token5] = ACTIONS(2096), - [sym__newline] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_where] = ACTIONS(2096), - [aux_sym_expr_unary_token1] = ACTIONS(2096), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2096), - [anon_sym_DOT_DOT_LT] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [anon_sym_0b] = ACTIONS(2098), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_BQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2096), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(967)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(967), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(968)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(968), - [ts_builtin_sym_end] = ACTIONS(2170), - [anon_sym_in] = ACTIONS(2170), - [sym__newline] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_err_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_GT_PIPE] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2170), - [anon_sym_GT2] = ACTIONS(2172), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_STAR2] = ACTIONS(2172), - [anon_sym_and2] = ACTIONS(2170), - [anon_sym_xor2] = ACTIONS(2170), - [anon_sym_or2] = ACTIONS(2170), - [anon_sym_not_DASHin2] = ACTIONS(2170), - [anon_sym_has2] = ACTIONS(2170), - [anon_sym_not_DASHhas2] = ACTIONS(2170), - [anon_sym_starts_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2170), - [anon_sym_ends_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2170), - [anon_sym_EQ_EQ2] = ACTIONS(2170), - [anon_sym_BANG_EQ2] = ACTIONS(2170), - [anon_sym_LT2] = ACTIONS(2172), - [anon_sym_LT_EQ2] = ACTIONS(2170), - [anon_sym_GT_EQ2] = ACTIONS(2170), - [anon_sym_EQ_TILDE2] = ACTIONS(2170), - [anon_sym_BANG_TILDE2] = ACTIONS(2170), - [anon_sym_like2] = ACTIONS(2170), - [anon_sym_not_DASHlike2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2170), - [anon_sym_PLUS_PLUS2] = ACTIONS(2170), - [anon_sym_SLASH2] = ACTIONS(2172), - [anon_sym_mod2] = ACTIONS(2170), - [anon_sym_SLASH_SLASH2] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2172), - [anon_sym_bit_DASHshl2] = ACTIONS(2170), - [anon_sym_bit_DASHshr2] = ACTIONS(2170), - [anon_sym_bit_DASHand2] = ACTIONS(2170), - [anon_sym_bit_DASHxor2] = ACTIONS(2170), - [anon_sym_bit_DASHor2] = ACTIONS(2170), - [anon_sym_err_GT] = ACTIONS(2172), - [anon_sym_out_GT] = ACTIONS(2172), - [anon_sym_e_GT] = ACTIONS(2172), - [anon_sym_o_GT] = ACTIONS(2172), - [anon_sym_err_PLUSout_GT] = ACTIONS(2172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), - [anon_sym_o_PLUSe_GT] = ACTIONS(2172), - [anon_sym_e_PLUSo_GT] = ACTIONS(2172), - [anon_sym_err_GT_GT] = ACTIONS(2170), - [anon_sym_out_GT_GT] = ACTIONS(2170), - [anon_sym_e_GT_GT] = ACTIONS(2170), - [anon_sym_o_GT_GT] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, [STATE(969)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(969), - [ts_builtin_sym_end] = ACTIONS(2072), - [anon_sym_in] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_GT2] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_STAR2] = ACTIONS(2074), - [anon_sym_and2] = ACTIONS(2072), - [anon_sym_xor2] = ACTIONS(2072), - [anon_sym_or2] = ACTIONS(2072), - [anon_sym_not_DASHin2] = ACTIONS(2072), - [anon_sym_has2] = ACTIONS(2072), - [anon_sym_not_DASHhas2] = ACTIONS(2072), - [anon_sym_starts_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2072), - [anon_sym_ends_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2072), - [anon_sym_EQ_EQ2] = ACTIONS(2072), - [anon_sym_BANG_EQ2] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LT_EQ2] = ACTIONS(2072), - [anon_sym_GT_EQ2] = ACTIONS(2072), - [anon_sym_EQ_TILDE2] = ACTIONS(2072), - [anon_sym_BANG_TILDE2] = ACTIONS(2072), - [anon_sym_like2] = ACTIONS(2072), - [anon_sym_not_DASHlike2] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2072), - [anon_sym_PLUS_PLUS2] = ACTIONS(2072), - [anon_sym_SLASH2] = ACTIONS(2074), - [anon_sym_mod2] = ACTIONS(2072), - [anon_sym_SLASH_SLASH2] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2074), - [anon_sym_bit_DASHshl2] = ACTIONS(2072), - [anon_sym_bit_DASHshr2] = ACTIONS(2072), - [anon_sym_bit_DASHand2] = ACTIONS(2072), - [anon_sym_bit_DASHxor2] = ACTIONS(2072), - [anon_sym_bit_DASHor2] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2074), - [anon_sym_out_GT] = ACTIONS(2074), - [anon_sym_e_GT] = ACTIONS(2074), - [anon_sym_o_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT] = ACTIONS(2074), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, [STATE(970)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), [sym_comment] = STATE(970), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [ts_builtin_sym_end] = ACTIONS(2102), + [anon_sym_in] = ACTIONS(2102), + [sym__newline] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_err_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_GT_PIPE] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), + [anon_sym_GT2] = ACTIONS(2104), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_STAR2] = ACTIONS(2104), + [anon_sym_and2] = ACTIONS(2102), + [anon_sym_xor2] = ACTIONS(2102), + [anon_sym_or2] = ACTIONS(2102), + [anon_sym_not_DASHin2] = ACTIONS(2102), + [anon_sym_has2] = ACTIONS(2102), + [anon_sym_not_DASHhas2] = ACTIONS(2102), + [anon_sym_starts_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2102), + [anon_sym_ends_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2102), + [anon_sym_EQ_EQ2] = ACTIONS(2102), + [anon_sym_BANG_EQ2] = ACTIONS(2102), + [anon_sym_LT2] = ACTIONS(2104), + [anon_sym_LT_EQ2] = ACTIONS(2102), + [anon_sym_GT_EQ2] = ACTIONS(2102), + [anon_sym_EQ_TILDE2] = ACTIONS(2102), + [anon_sym_BANG_TILDE2] = ACTIONS(2102), + [anon_sym_like2] = ACTIONS(2102), + [anon_sym_not_DASHlike2] = ACTIONS(2102), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2102), + [anon_sym_PLUS_PLUS2] = ACTIONS(2102), + [anon_sym_SLASH2] = ACTIONS(2104), + [anon_sym_mod2] = ACTIONS(2102), + [anon_sym_SLASH_SLASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_bit_DASHshl2] = ACTIONS(2102), + [anon_sym_bit_DASHshr2] = ACTIONS(2102), + [anon_sym_bit_DASHand2] = ACTIONS(2102), + [anon_sym_bit_DASHxor2] = ACTIONS(2102), + [anon_sym_bit_DASHor2] = ACTIONS(2102), + [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), + [anon_sym_err_GT_GT] = ACTIONS(2102), + [anon_sym_out_GT_GT] = ACTIONS(2102), + [anon_sym_e_GT_GT] = ACTIONS(2102), + [anon_sym_o_GT_GT] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2102), [anon_sym_POUND] = ACTIONS(3), }, [STATE(971)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4465), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(4840), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3665), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), + [sym__expr_parenthesized_immediate] = STATE(5228), [sym_comment] = STATE(971), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3958), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2660), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(2106), + [sym__newline] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_err_GT_PIPE] = ACTIONS(2106), + [anon_sym_out_GT_PIPE] = ACTIONS(2106), + [anon_sym_e_GT_PIPE] = ACTIONS(2106), + [anon_sym_o_GT_PIPE] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2106), + [anon_sym_GT2] = ACTIONS(2108), + [anon_sym_DASH2] = ACTIONS(2106), + [anon_sym_STAR2] = ACTIONS(2108), + [anon_sym_and2] = ACTIONS(2106), + [anon_sym_xor2] = ACTIONS(2106), + [anon_sym_or2] = ACTIONS(2106), + [anon_sym_not_DASHin2] = ACTIONS(2106), + [anon_sym_has2] = ACTIONS(2106), + [anon_sym_not_DASHhas2] = ACTIONS(2106), + [anon_sym_starts_DASHwith2] = ACTIONS(2106), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2106), + [anon_sym_ends_DASHwith2] = ACTIONS(2106), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2106), + [anon_sym_EQ_EQ2] = ACTIONS(2106), + [anon_sym_BANG_EQ2] = ACTIONS(2106), + [anon_sym_LT2] = ACTIONS(2108), + [anon_sym_LT_EQ2] = ACTIONS(2106), + [anon_sym_GT_EQ2] = ACTIONS(2106), + [anon_sym_EQ_TILDE2] = ACTIONS(2106), + [anon_sym_BANG_TILDE2] = ACTIONS(2106), + [anon_sym_like2] = ACTIONS(2106), + [anon_sym_not_DASHlike2] = ACTIONS(2106), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2106), + [anon_sym_PLUS_PLUS2] = ACTIONS(2106), + [anon_sym_SLASH2] = ACTIONS(2108), + [anon_sym_mod2] = ACTIONS(2106), + [anon_sym_SLASH_SLASH2] = ACTIONS(2106), + [anon_sym_PLUS2] = ACTIONS(2108), + [anon_sym_bit_DASHshl2] = ACTIONS(2106), + [anon_sym_bit_DASHshr2] = ACTIONS(2106), + [anon_sym_bit_DASHand2] = ACTIONS(2106), + [anon_sym_bit_DASHxor2] = ACTIONS(2106), + [anon_sym_bit_DASHor2] = ACTIONS(2106), + [anon_sym_err_GT] = ACTIONS(2108), + [anon_sym_out_GT] = ACTIONS(2108), + [anon_sym_e_GT] = ACTIONS(2108), + [anon_sym_o_GT] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT] = ACTIONS(2108), + [anon_sym_err_GT_GT] = ACTIONS(2106), + [anon_sym_out_GT_GT] = ACTIONS(2106), + [anon_sym_e_GT_GT] = ACTIONS(2106), + [anon_sym_o_GT_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2106), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(972)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, [STATE(973)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(973), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, [STATE(974)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(974), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, [STATE(975)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, [STATE(976)] = { - [sym__expression] = STATE(4724), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_COLON2] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(977)] = { - [sym__expression] = STATE(4726), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(977), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_COLON2] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(978)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4271), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(978), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_in] = ACTIONS(2652), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2654), + [anon_sym_DASH2] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_STAR2] = ACTIONS(2654), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2652), + [anon_sym_has2] = ACTIONS(2652), + [anon_sym_not_DASHhas2] = ACTIONS(2652), + [anon_sym_starts_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2652), + [anon_sym_ends_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2652), + [anon_sym_EQ_EQ2] = ACTIONS(2652), + [anon_sym_BANG_EQ2] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2654), + [anon_sym_LT_EQ2] = ACTIONS(2652), + [anon_sym_GT_EQ2] = ACTIONS(2652), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2652), + [anon_sym_PLUS_PLUS2] = ACTIONS(2652), + [anon_sym_SLASH2] = ACTIONS(2654), + [anon_sym_mod2] = ACTIONS(2652), + [anon_sym_SLASH_SLASH2] = ACTIONS(2652), + [anon_sym_PLUS2] = ACTIONS(2654), + [anon_sym_bit_DASHshl2] = ACTIONS(2652), + [anon_sym_bit_DASHshr2] = ACTIONS(2652), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(979)] = { - [aux_sym__repeat_newline] = STATE(1034), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(979), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, [STATE(980)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(980), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, [STATE(981)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, [STATE(982)] = { - [aux_sym__repeat_newline] = STATE(1035), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(982), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, [STATE(983)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(983), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, [STATE(984)] = { - [aux_sym__repeat_newline] = STATE(1036), + [aux_sym__repeat_newline] = STATE(1050), [sym_comment] = STATE(984), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), }, [STATE(985)] = { - [sym_expr_unary] = STATE(2779), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2475), - [sym_val_range] = STATE(2779), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2779), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2547), - [sym__unquoted_with_expr] = STATE(2780), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(985), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(2385), + [anon_sym_in] = ACTIONS(2385), + [sym__newline] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_err_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_GT_PIPE] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2385), + [anon_sym_GT2] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2385), + [anon_sym_STAR2] = ACTIONS(2387), + [anon_sym_and2] = ACTIONS(2385), + [anon_sym_xor2] = ACTIONS(2385), + [anon_sym_or2] = ACTIONS(2385), + [anon_sym_not_DASHin2] = ACTIONS(2385), + [anon_sym_has2] = ACTIONS(2385), + [anon_sym_not_DASHhas2] = ACTIONS(2385), + [anon_sym_starts_DASHwith2] = ACTIONS(2385), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2385), + [anon_sym_ends_DASHwith2] = ACTIONS(2385), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2385), + [anon_sym_EQ_EQ2] = ACTIONS(2385), + [anon_sym_BANG_EQ2] = ACTIONS(2385), + [anon_sym_LT2] = ACTIONS(2387), + [anon_sym_LT_EQ2] = ACTIONS(2385), + [anon_sym_GT_EQ2] = ACTIONS(2385), + [anon_sym_EQ_TILDE2] = ACTIONS(2385), + [anon_sym_BANG_TILDE2] = ACTIONS(2385), + [anon_sym_like2] = ACTIONS(2385), + [anon_sym_not_DASHlike2] = ACTIONS(2385), + [anon_sym_LPAREN2] = ACTIONS(2385), + [anon_sym_STAR_STAR2] = ACTIONS(2385), + [anon_sym_PLUS_PLUS2] = ACTIONS(2385), + [anon_sym_SLASH2] = ACTIONS(2387), + [anon_sym_mod2] = ACTIONS(2385), + [anon_sym_SLASH_SLASH2] = ACTIONS(2385), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_bit_DASHshl2] = ACTIONS(2385), + [anon_sym_bit_DASHshr2] = ACTIONS(2385), + [anon_sym_bit_DASHand2] = ACTIONS(2385), + [anon_sym_bit_DASHxor2] = ACTIONS(2385), + [anon_sym_bit_DASHor2] = ACTIONS(2385), + [anon_sym_err_GT] = ACTIONS(2387), + [anon_sym_out_GT] = ACTIONS(2387), + [anon_sym_e_GT] = ACTIONS(2387), + [anon_sym_o_GT] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT] = ACTIONS(2387), + [anon_sym_err_GT_GT] = ACTIONS(2385), + [anon_sym_out_GT_GT] = ACTIONS(2385), + [anon_sym_e_GT_GT] = ACTIONS(2385), + [anon_sym_o_GT_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), + [sym__unquoted_pattern] = ACTIONS(2387), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(986)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(986), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [ts_builtin_sym_end] = ACTIONS(2591), + [anon_sym_in] = ACTIONS(2591), + [sym__newline] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_err_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_GT_PIPE] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), + [anon_sym_GT2] = ACTIONS(2593), + [anon_sym_DASH2] = ACTIONS(2591), + [anon_sym_STAR2] = ACTIONS(2593), + [anon_sym_and2] = ACTIONS(2591), + [anon_sym_xor2] = ACTIONS(2591), + [anon_sym_or2] = ACTIONS(2591), + [anon_sym_not_DASHin2] = ACTIONS(2591), + [anon_sym_has2] = ACTIONS(2591), + [anon_sym_not_DASHhas2] = ACTIONS(2591), + [anon_sym_starts_DASHwith2] = ACTIONS(2591), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2591), + [anon_sym_ends_DASHwith2] = ACTIONS(2591), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2591), + [anon_sym_EQ_EQ2] = ACTIONS(2591), + [anon_sym_BANG_EQ2] = ACTIONS(2591), + [anon_sym_LT2] = ACTIONS(2593), + [anon_sym_LT_EQ2] = ACTIONS(2591), + [anon_sym_GT_EQ2] = ACTIONS(2591), + [anon_sym_EQ_TILDE2] = ACTIONS(2591), + [anon_sym_BANG_TILDE2] = ACTIONS(2591), + [anon_sym_like2] = ACTIONS(2591), + [anon_sym_not_DASHlike2] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_STAR_STAR2] = ACTIONS(2591), + [anon_sym_PLUS_PLUS2] = ACTIONS(2591), + [anon_sym_SLASH2] = ACTIONS(2593), + [anon_sym_mod2] = ACTIONS(2591), + [anon_sym_SLASH_SLASH2] = ACTIONS(2591), + [anon_sym_PLUS2] = ACTIONS(2593), + [anon_sym_bit_DASHshl2] = ACTIONS(2591), + [anon_sym_bit_DASHshr2] = ACTIONS(2591), + [anon_sym_bit_DASHand2] = ACTIONS(2591), + [anon_sym_bit_DASHxor2] = ACTIONS(2591), + [anon_sym_bit_DASHor2] = ACTIONS(2591), + [anon_sym_err_GT] = ACTIONS(2593), + [anon_sym_out_GT] = ACTIONS(2593), + [anon_sym_e_GT] = ACTIONS(2593), + [anon_sym_o_GT] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT] = ACTIONS(2593), + [anon_sym_err_GT_GT] = ACTIONS(2591), + [anon_sym_out_GT_GT] = ACTIONS(2591), + [anon_sym_e_GT_GT] = ACTIONS(2591), + [anon_sym_o_GT_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [sym__unquoted_pattern] = ACTIONS(2597), [anon_sym_POUND] = ACTIONS(3), }, [STATE(987)] = { - [sym_expr_unary] = STATE(2782), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2481), - [sym_val_range] = STATE(2782), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2782), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2581), - [sym__unquoted_with_expr] = STATE(2783), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(987), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_LPAREN2] = ACTIONS(2620), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [sym__unquoted_pattern] = ACTIONS(2622), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(988)] = { - [sym_expr_unary] = STATE(2786), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2497), - [sym_val_range] = STATE(2786), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2786), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2567), - [sym__unquoted_with_expr] = STATE(2797), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(988), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(989)] = { - [aux_sym__repeat_newline] = STATE(1037), [sym_comment] = STATE(989), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(2005), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(990)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(990), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [ts_builtin_sym_end] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(1018), + [sym__newline] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_err_GT_PIPE] = ACTIONS(1018), + [anon_sym_out_GT_PIPE] = ACTIONS(1018), + [anon_sym_e_GT_PIPE] = ACTIONS(1018), + [anon_sym_o_GT_PIPE] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1018), + [anon_sym_xor2] = ACTIONS(1018), + [anon_sym_or2] = ACTIONS(1018), + [anon_sym_not_DASHin2] = ACTIONS(1018), + [anon_sym_has2] = ACTIONS(1018), + [anon_sym_not_DASHhas2] = ACTIONS(1018), + [anon_sym_starts_DASHwith2] = ACTIONS(1018), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), + [anon_sym_ends_DASHwith2] = ACTIONS(1018), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), + [anon_sym_EQ_EQ2] = ACTIONS(1018), + [anon_sym_BANG_EQ2] = ACTIONS(1018), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1018), + [anon_sym_GT_EQ2] = ACTIONS(1018), + [anon_sym_EQ_TILDE2] = ACTIONS(1018), + [anon_sym_BANG_TILDE2] = ACTIONS(1018), + [anon_sym_like2] = ACTIONS(1018), + [anon_sym_not_DASHlike2] = ACTIONS(1018), + [anon_sym_LPAREN2] = ACTIONS(2602), + [anon_sym_STAR_STAR2] = ACTIONS(1018), + [anon_sym_PLUS_PLUS2] = ACTIONS(1018), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1018), + [anon_sym_SLASH_SLASH2] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1018), + [anon_sym_bit_DASHshr2] = ACTIONS(1018), + [anon_sym_bit_DASHand2] = ACTIONS(1018), + [anon_sym_bit_DASHxor2] = ACTIONS(1018), + [anon_sym_bit_DASHor2] = ACTIONS(1018), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1018), + [anon_sym_out_GT_GT] = ACTIONS(1018), + [anon_sym_e_GT_GT] = ACTIONS(1018), + [anon_sym_o_GT_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), + [sym__unquoted_pattern] = ACTIONS(2604), [anon_sym_POUND] = ACTIONS(3), }, [STATE(991)] = { - [aux_sym__repeat_newline] = STATE(1038), [sym_comment] = STATE(991), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(1004), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(2602), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [sym__unquoted_pattern] = ACTIONS(2604), [anon_sym_POUND] = ACTIONS(3), }, [STATE(992)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(992), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [ts_builtin_sym_end] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2533), + [sym__newline] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2533), + [anon_sym_err_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_GT_PIPE] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), + [anon_sym_GT2] = ACTIONS(2535), + [anon_sym_DASH2] = ACTIONS(2533), + [anon_sym_STAR2] = ACTIONS(2535), + [anon_sym_and2] = ACTIONS(2533), + [anon_sym_xor2] = ACTIONS(2533), + [anon_sym_or2] = ACTIONS(2533), + [anon_sym_not_DASHin2] = ACTIONS(2533), + [anon_sym_has2] = ACTIONS(2533), + [anon_sym_not_DASHhas2] = ACTIONS(2533), + [anon_sym_starts_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), + [anon_sym_ends_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), + [anon_sym_EQ_EQ2] = ACTIONS(2533), + [anon_sym_BANG_EQ2] = ACTIONS(2533), + [anon_sym_LT2] = ACTIONS(2535), + [anon_sym_LT_EQ2] = ACTIONS(2533), + [anon_sym_GT_EQ2] = ACTIONS(2533), + [anon_sym_EQ_TILDE2] = ACTIONS(2533), + [anon_sym_BANG_TILDE2] = ACTIONS(2533), + [anon_sym_like2] = ACTIONS(2533), + [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2533), + [anon_sym_PLUS_PLUS2] = ACTIONS(2533), + [anon_sym_SLASH2] = ACTIONS(2535), + [anon_sym_mod2] = ACTIONS(2533), + [anon_sym_SLASH_SLASH2] = ACTIONS(2533), + [anon_sym_PLUS2] = ACTIONS(2535), + [anon_sym_bit_DASHshl2] = ACTIONS(2533), + [anon_sym_bit_DASHshr2] = ACTIONS(2533), + [anon_sym_bit_DASHand2] = ACTIONS(2533), + [anon_sym_bit_DASHxor2] = ACTIONS(2533), + [anon_sym_bit_DASHor2] = ACTIONS(2533), + [anon_sym_err_GT] = ACTIONS(2535), + [anon_sym_out_GT] = ACTIONS(2535), + [anon_sym_e_GT] = ACTIONS(2535), + [anon_sym_o_GT] = ACTIONS(2535), + [anon_sym_err_PLUSout_GT] = ACTIONS(2535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), + [anon_sym_o_PLUSe_GT] = ACTIONS(2535), + [anon_sym_e_PLUSo_GT] = ACTIONS(2535), + [anon_sym_err_GT_GT] = ACTIONS(2533), + [anon_sym_out_GT_GT] = ACTIONS(2533), + [anon_sym_e_GT_GT] = ACTIONS(2533), + [anon_sym_o_GT_GT] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [sym__unquoted_pattern] = ACTIONS(2021), [anon_sym_POUND] = ACTIONS(3), }, [STATE(993)] = { - [aux_sym__repeat_newline] = STATE(1039), [sym_comment] = STATE(993), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [sym__unquoted_pattern] = ACTIONS(2021), [anon_sym_POUND] = ACTIONS(3), }, [STATE(994)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(994), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [ts_builtin_sym_end] = ACTIONS(2525), + [anon_sym_in] = ACTIONS(2525), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2525), + [anon_sym_xor2] = ACTIONS(2525), + [anon_sym_or2] = ACTIONS(2525), + [anon_sym_not_DASHin2] = ACTIONS(2525), + [anon_sym_has2] = ACTIONS(2525), + [anon_sym_not_DASHhas2] = ACTIONS(2525), + [anon_sym_starts_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), + [anon_sym_ends_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2525), + [anon_sym_like2] = ACTIONS(2525), + [anon_sym_not_DASHlike2] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_STAR_STAR2] = ACTIONS(2525), + [anon_sym_PLUS_PLUS2] = ACTIONS(2525), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2525), + [anon_sym_SLASH_SLASH2] = ACTIONS(2525), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2525), + [anon_sym_bit_DASHshr2] = ACTIONS(2525), + [anon_sym_bit_DASHand2] = ACTIONS(2525), + [anon_sym_bit_DASHxor2] = ACTIONS(2525), + [anon_sym_bit_DASHor2] = ACTIONS(2525), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [sym__unquoted_pattern] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, [STATE(995)] = { - [aux_sym__repeat_newline] = STATE(1040), [sym_comment] = STATE(995), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2583), + [anon_sym_in] = ACTIONS(2583), + [sym__newline] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_err_GT_PIPE] = ACTIONS(2583), + [anon_sym_out_GT_PIPE] = ACTIONS(2583), + [anon_sym_e_GT_PIPE] = ACTIONS(2583), + [anon_sym_o_GT_PIPE] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2583), + [anon_sym_GT2] = ACTIONS(2585), + [anon_sym_DASH2] = ACTIONS(2583), + [anon_sym_STAR2] = ACTIONS(2585), + [anon_sym_and2] = ACTIONS(2583), + [anon_sym_xor2] = ACTIONS(2583), + [anon_sym_or2] = ACTIONS(2583), + [anon_sym_not_DASHin2] = ACTIONS(2583), + [anon_sym_has2] = ACTIONS(2583), + [anon_sym_not_DASHhas2] = ACTIONS(2583), + [anon_sym_starts_DASHwith2] = ACTIONS(2583), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2583), + [anon_sym_ends_DASHwith2] = ACTIONS(2583), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2583), + [anon_sym_EQ_EQ2] = ACTIONS(2583), + [anon_sym_BANG_EQ2] = ACTIONS(2583), + [anon_sym_LT2] = ACTIONS(2585), + [anon_sym_LT_EQ2] = ACTIONS(2583), + [anon_sym_GT_EQ2] = ACTIONS(2583), + [anon_sym_EQ_TILDE2] = ACTIONS(2583), + [anon_sym_BANG_TILDE2] = ACTIONS(2583), + [anon_sym_like2] = ACTIONS(2583), + [anon_sym_not_DASHlike2] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2587), + [anon_sym_STAR_STAR2] = ACTIONS(2583), + [anon_sym_PLUS_PLUS2] = ACTIONS(2583), + [anon_sym_SLASH2] = ACTIONS(2585), + [anon_sym_mod2] = ACTIONS(2583), + [anon_sym_SLASH_SLASH2] = ACTIONS(2583), + [anon_sym_PLUS2] = ACTIONS(2585), + [anon_sym_bit_DASHshl2] = ACTIONS(2583), + [anon_sym_bit_DASHshr2] = ACTIONS(2583), + [anon_sym_bit_DASHand2] = ACTIONS(2583), + [anon_sym_bit_DASHxor2] = ACTIONS(2583), + [anon_sym_bit_DASHor2] = ACTIONS(2583), + [anon_sym_err_GT] = ACTIONS(2585), + [anon_sym_out_GT] = ACTIONS(2585), + [anon_sym_e_GT] = ACTIONS(2585), + [anon_sym_o_GT] = ACTIONS(2585), + [anon_sym_err_PLUSout_GT] = ACTIONS(2585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2585), + [anon_sym_o_PLUSe_GT] = ACTIONS(2585), + [anon_sym_e_PLUSo_GT] = ACTIONS(2585), + [anon_sym_err_GT_GT] = ACTIONS(2583), + [anon_sym_out_GT_GT] = ACTIONS(2583), + [anon_sym_e_GT_GT] = ACTIONS(2583), + [anon_sym_o_GT_GT] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2583), + [sym__unquoted_pattern] = ACTIONS(2589), [anon_sym_POUND] = ACTIONS(3), }, [STATE(996)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(972), [sym_comment] = STATE(996), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(997)] = { - [aux_sym__repeat_newline] = STATE(1041), + [aux_sym__repeat_newline] = STATE(1051), [sym_comment] = STATE(997), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), }, [STATE(998)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(998), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(999)] = { - [aux_sym__repeat_newline] = STATE(1042), + [aux_sym__repeat_newline] = STATE(1356), + [sym__expression_parenthesized] = STATE(4230), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), [sym_comment] = STATE(999), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2704), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2702), - [anon_sym_PLUS_PLUS2] = ACTIONS(2702), - [anon_sym_SLASH2] = ACTIONS(2704), - [anon_sym_mod2] = ACTIONS(2702), - [anon_sym_SLASH_SLASH2] = ACTIONS(2702), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1000)] = { - [aux_sym__repeat_newline] = STATE(1130), - [sym_comment] = STATE(1000), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1001)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1001), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2708), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2706), - [anon_sym_PLUS_PLUS2] = ACTIONS(2706), - [anon_sym_SLASH2] = ACTIONS(2708), - [anon_sym_mod2] = ACTIONS(2706), - [anon_sym_SLASH_SLASH2] = ACTIONS(2706), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1002)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1002), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1003)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym_comment] = STATE(1003), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1004)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1004), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1005)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4361), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1005), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(2660), [aux_sym_cmd_identifier_token3] = ACTIONS(189), [aux_sym_cmd_identifier_token4] = ACTIONS(189), [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), + [sym__newline] = ACTIONS(2569), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -121808,10 +121644,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -121827,4837 +121663,5585 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1006)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym_comment] = STATE(1006), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(1000)] = { + [aux_sym__repeat_newline] = STATE(1129), + [sym_comment] = STATE(1000), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1007)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1007), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [STATE(1001)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1001), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1008)] = { - [aux_sym__repeat_newline] = STATE(1052), - [sym_comment] = STATE(1008), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(1002)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1002), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1009)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1009), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [STATE(1003)] = { + [aux_sym__repeat_newline] = STATE(1053), + [sym_comment] = STATE(1003), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1004)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1004), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1005)] = { + [sym_comment] = STATE(1005), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_alias] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_mut] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [aux_sym_cmd_identifier_token1] = ACTIONS(2148), + [anon_sym_def] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_export_DASHenv] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_in] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [anon_sym_null] = ACTIONS(2146), + [aux_sym_cmd_identifier_token3] = ACTIONS(2146), + [aux_sym_cmd_identifier_token4] = ACTIONS(2146), + [aux_sym_cmd_identifier_token5] = ACTIONS(2146), + [sym__newline] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_DOLLAR] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_DOT_DOT] = ACTIONS(2148), + [anon_sym_where] = ACTIONS(2146), + [aux_sym_expr_unary_token1] = ACTIONS(2146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), + [anon_sym_DOT_DOT_LT] = ACTIONS(2146), + [aux_sym__val_number_decimal_token1] = ACTIONS(2148), + [aux_sym__val_number_decimal_token2] = ACTIONS(2146), + [aux_sym__val_number_decimal_token3] = ACTIONS(2146), + [aux_sym__val_number_decimal_token4] = ACTIONS(2146), + [aux_sym__val_number_token1] = ACTIONS(2146), + [aux_sym__val_number_token2] = ACTIONS(2146), + [aux_sym__val_number_token3] = ACTIONS(2146), + [anon_sym_0b] = ACTIONS(2148), + [anon_sym_0o] = ACTIONS(2148), + [anon_sym_0x] = ACTIONS(2148), + [sym_val_date] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2146), + [anon_sym_BQUOTE] = ACTIONS(2146), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2146), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2146), + [anon_sym_CARET] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2146), + }, + [STATE(1006)] = { + [aux_sym__repeat_newline] = STATE(1054), + [sym_comment] = STATE(1006), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1007)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1007), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1008)] = { + [sym_comment] = STATE(1008), + [anon_sym_in] = ACTIONS(908), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_RPAREN] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(908), + [anon_sym_xor2] = ACTIONS(908), + [anon_sym_or2] = ACTIONS(908), + [anon_sym_not_DASHin2] = ACTIONS(908), + [anon_sym_has2] = ACTIONS(908), + [anon_sym_not_DASHhas2] = ACTIONS(908), + [anon_sym_starts_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(908), + [anon_sym_ends_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(908), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(908), + [anon_sym_like2] = ACTIONS(908), + [anon_sym_not_DASHlike2] = ACTIONS(908), + [anon_sym_STAR_STAR2] = ACTIONS(908), + [anon_sym_PLUS_PLUS2] = ACTIONS(908), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(908), + [anon_sym_SLASH_SLASH2] = ACTIONS(908), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(908), + [anon_sym_bit_DASHshr2] = ACTIONS(908), + [anon_sym_bit_DASHand2] = ACTIONS(908), + [anon_sym_bit_DASHxor2] = ACTIONS(908), + [anon_sym_bit_DASHor2] = ACTIONS(908), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [sym__unquoted_pattern] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1009)] = { + [aux_sym__repeat_newline] = STATE(1055), + [sym_comment] = STATE(1009), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1010)] = { - [aux_sym__repeat_newline] = STATE(1053), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1010), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1011)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(973), [sym_comment] = STATE(1011), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1012)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), [sym_comment] = STATE(1012), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1013)] = { - [aux_sym__repeat_newline] = STATE(1055), + [aux_sym__repeat_newline] = STATE(1059), [sym_comment] = STATE(1013), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1014)] = { - [aux_sym__repeat_newline] = STATE(1057), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1014), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1015)] = { - [aux_sym__repeat_newline] = STATE(1060), [sym_comment] = STATE(1015), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [ts_builtin_sym_end] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1016)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), [sym_comment] = STATE(1016), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(1854), + [anon_sym_in] = ACTIONS(1854), + [sym__newline] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_err_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_GT_PIPE] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), + [anon_sym_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1856), + [anon_sym_out_GT] = ACTIONS(1856), + [anon_sym_e_GT] = ACTIONS(1856), + [anon_sym_o_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT] = ACTIONS(1856), + [anon_sym_err_GT_GT] = ACTIONS(1854), + [anon_sym_out_GT_GT] = ACTIONS(1854), + [anon_sym_e_GT_GT] = ACTIONS(1854), + [anon_sym_o_GT_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [sym__unquoted_pattern] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1017)] = { - [aux_sym__repeat_newline] = STATE(1062), + [aux_sym__repeat_newline] = STATE(1060), [sym_comment] = STATE(1017), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1018)] = { - [aux_sym__repeat_newline] = STATE(1065), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1018), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1019)] = { - [aux_sym__repeat_newline] = STATE(1067), + [aux_sym__repeat_newline] = STATE(1061), [sym_comment] = STATE(1019), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1020)] = { - [aux_sym__repeat_newline] = STATE(1070), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1020), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1021)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), + [aux_sym__repeat_newline] = STATE(1062), [sym_comment] = STATE(1021), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3958), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(1022)] = { - [aux_sym__repeat_newline] = STATE(1073), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1022), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2666), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_STAR2] = ACTIONS(2668), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2666), + [anon_sym_PLUS_PLUS2] = ACTIONS(2666), + [anon_sym_SLASH2] = ACTIONS(2668), + [anon_sym_mod2] = ACTIONS(2666), + [anon_sym_SLASH_SLASH2] = ACTIONS(2666), + [anon_sym_PLUS2] = ACTIONS(2668), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1023)] = { - [aux_sym__repeat_newline] = STATE(1077), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1023), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2714), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2712), - [anon_sym_PLUS_PLUS2] = ACTIONS(2712), - [anon_sym_SLASH2] = ACTIONS(2714), - [anon_sym_mod2] = ACTIONS(2712), - [anon_sym_SLASH_SLASH2] = ACTIONS(2712), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1024)] = { - [aux_sym__repeat_newline] = STATE(1078), + [aux_sym__repeat_newline] = STATE(1063), [sym_comment] = STATE(1024), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1025)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2501), - [anon_sym_in] = ACTIONS(2501), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2501), - [anon_sym_xor2] = ACTIONS(2501), - [anon_sym_or2] = ACTIONS(2501), - [anon_sym_not_DASHin2] = ACTIONS(2501), - [anon_sym_has2] = ACTIONS(2501), - [anon_sym_not_DASHhas2] = ACTIONS(2501), - [anon_sym_starts_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2501), - [anon_sym_ends_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2501), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2501), - [anon_sym_like2] = ACTIONS(2501), - [anon_sym_not_DASHlike2] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_STAR_STAR2] = ACTIONS(2501), - [anon_sym_PLUS_PLUS2] = ACTIONS(2501), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2501), - [anon_sym_SLASH_SLASH2] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2501), - [anon_sym_bit_DASHshr2] = ACTIONS(2501), - [anon_sym_bit_DASHand2] = ACTIONS(2501), - [anon_sym_bit_DASHxor2] = ACTIONS(2501), - [anon_sym_bit_DASHor2] = ACTIONS(2501), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [sym__unquoted_pattern] = ACTIONS(2503), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1026)] = { + [sym_expr_unary] = STATE(2870), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_parenthesized] = STATE(2624), + [sym_val_range] = STATE(2870), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(2870), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(2692), + [sym_val_variable] = STATE(2606), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(2371), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(2679), + [sym__unquoted_with_expr] = STATE(2872), + [sym__unquoted_anonymous_prefix] = STATE(4564), [sym_comment] = STATE(1026), - [ts_builtin_sym_end] = ACTIONS(2635), - [anon_sym_in] = ACTIONS(2635), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2635), - [anon_sym_xor2] = ACTIONS(2635), - [anon_sym_or2] = ACTIONS(2635), - [anon_sym_not_DASHin2] = ACTIONS(2635), - [anon_sym_has2] = ACTIONS(2635), - [anon_sym_not_DASHhas2] = ACTIONS(2635), - [anon_sym_starts_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2635), - [anon_sym_ends_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2635), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2635), - [anon_sym_like2] = ACTIONS(2635), - [anon_sym_not_DASHlike2] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_STAR_STAR2] = ACTIONS(2635), - [anon_sym_PLUS_PLUS2] = ACTIONS(2635), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2635), - [anon_sym_SLASH_SLASH2] = ACTIONS(2635), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2635), - [anon_sym_bit_DASHshr2] = ACTIONS(2635), - [anon_sym_bit_DASHand2] = ACTIONS(2635), - [anon_sym_bit_DASHxor2] = ACTIONS(2635), - [anon_sym_bit_DASHor2] = ACTIONS(2635), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [sym__unquoted_pattern] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2670), + [anon_sym_false] = ACTIONS(2670), + [anon_sym_null] = ACTIONS(2672), + [aux_sym_cmd_identifier_token3] = ACTIONS(2674), + [aux_sym_cmd_identifier_token4] = ACTIONS(2674), + [aux_sym_cmd_identifier_token5] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_DOLLAR] = ACTIONS(2680), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_DOT_DOT] = ACTIONS(2684), + [aux_sym_expr_unary_token1] = ACTIONS(2686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2688), + [anon_sym_DOT_DOT_LT] = ACTIONS(2688), + [aux_sym__val_number_decimal_token1] = ACTIONS(2690), + [aux_sym__val_number_decimal_token2] = ACTIONS(2692), + [aux_sym__val_number_decimal_token3] = ACTIONS(2694), + [aux_sym__val_number_decimal_token4] = ACTIONS(2694), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1027)] = { - [aux_sym__repeat_newline] = STATE(1080), + [sym_expr_unary] = STATE(2918), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_parenthesized] = STATE(2616), + [sym_val_range] = STATE(2918), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(2918), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(2692), + [sym_val_variable] = STATE(2606), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(2371), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(2673), + [sym__unquoted_with_expr] = STATE(2894), + [sym__unquoted_anonymous_prefix] = STATE(4564), [sym_comment] = STATE(1027), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2670), + [anon_sym_false] = ACTIONS(2670), + [anon_sym_null] = ACTIONS(2672), + [aux_sym_cmd_identifier_token3] = ACTIONS(2674), + [aux_sym_cmd_identifier_token4] = ACTIONS(2674), + [aux_sym_cmd_identifier_token5] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_DOLLAR] = ACTIONS(2680), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_DOT_DOT] = ACTIONS(2684), + [aux_sym_expr_unary_token1] = ACTIONS(2686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2688), + [anon_sym_DOT_DOT_LT] = ACTIONS(2688), + [aux_sym__val_number_decimal_token1] = ACTIONS(2690), + [aux_sym__val_number_decimal_token2] = ACTIONS(2692), + [aux_sym__val_number_decimal_token3] = ACTIONS(2694), + [aux_sym__val_number_decimal_token4] = ACTIONS(2694), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1028)] = { + [sym_expr_unary] = STATE(2895), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_parenthesized] = STATE(2586), + [sym_val_range] = STATE(2895), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(2895), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(2692), + [sym_val_variable] = STATE(2606), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(2371), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(2637), + [sym__unquoted_with_expr] = STATE(2896), + [sym__unquoted_anonymous_prefix] = STATE(4564), [sym_comment] = STATE(1028), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(2595), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [sym__unquoted_pattern] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(2670), + [anon_sym_false] = ACTIONS(2670), + [anon_sym_null] = ACTIONS(2672), + [aux_sym_cmd_identifier_token3] = ACTIONS(2674), + [aux_sym_cmd_identifier_token4] = ACTIONS(2674), + [aux_sym_cmd_identifier_token5] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_DOLLAR] = ACTIONS(2680), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_DOT_DOT] = ACTIONS(2684), + [aux_sym_expr_unary_token1] = ACTIONS(2686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2688), + [anon_sym_DOT_DOT_LT] = ACTIONS(2688), + [aux_sym__val_number_decimal_token1] = ACTIONS(2690), + [aux_sym__val_number_decimal_token2] = ACTIONS(2692), + [aux_sym__val_number_decimal_token3] = ACTIONS(2694), + [aux_sym__val_number_decimal_token4] = ACTIONS(2694), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1029)] = { - [aux_sym__repeat_newline] = STATE(1082), + [aux_sym__repeat_newline] = STATE(1064), [sym_comment] = STATE(1029), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1030)] = { - [aux_sym__repeat_newline] = STATE(980), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1030), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1031)] = { - [aux_sym__repeat_newline] = STATE(1085), + [aux_sym__repeat_newline] = STATE(974), [sym_comment] = STATE(1031), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1032)] = { - [aux_sym__repeat_newline] = STATE(1088), + [aux_sym__repeat_newline] = STATE(1065), [sym_comment] = STATE(1032), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1033)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), [sym_comment] = STATE(1033), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2344), + [anon_sym_alias] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [aux_sym_cmd_identifier_token1] = ACTIONS(2344), + [anon_sym_def] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_export_DASHenv] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_module] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_try] = ACTIONS(2346), + [anon_sym_catch] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2346), + [aux_sym_cmd_identifier_token3] = ACTIONS(2346), + [aux_sym_cmd_identifier_token4] = ACTIONS(2346), + [aux_sym_cmd_identifier_token5] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_PIPE] = ACTIONS(2346), + [anon_sym_err_GT_PIPE] = ACTIONS(2346), + [anon_sym_out_GT_PIPE] = ACTIONS(2346), + [anon_sym_e_GT_PIPE] = ACTIONS(2346), + [anon_sym_o_GT_PIPE] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2344), + [anon_sym_DASH2] = ACTIONS(2344), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_DOT_DOT] = ACTIONS(2344), + [anon_sym_where] = ACTIONS(2346), + [aux_sym_expr_unary_token1] = ACTIONS(2346), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2346), + [anon_sym_DOT_DOT_LT] = ACTIONS(2346), + [aux_sym__val_number_decimal_token1] = ACTIONS(2344), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), + [anon_sym_0b] = ACTIONS(2344), + [anon_sym_0o] = ACTIONS(2344), + [anon_sym_0x] = ACTIONS(2344), + [sym_val_date] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_BQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2346), + [anon_sym_CARET] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2346), }, [STATE(1034)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1034), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_export] = ACTIONS(2698), + [anon_sym_alias] = ACTIONS(2700), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_mut] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [aux_sym_cmd_identifier_token1] = ACTIONS(2698), + [anon_sym_def] = ACTIONS(2700), + [anon_sym_use] = ACTIONS(2700), + [anon_sym_export_DASHenv] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym_module] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_loop] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_else] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [anon_sym_catch] = ACTIONS(2700), + [anon_sym_match] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(2698), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_null] = ACTIONS(2700), + [aux_sym_cmd_identifier_token3] = ACTIONS(2700), + [aux_sym_cmd_identifier_token4] = ACTIONS(2700), + [aux_sym_cmd_identifier_token5] = ACTIONS(2700), + [sym__newline] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_DOLLAR] = ACTIONS(2698), + [anon_sym_DASH2] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(2698), + [anon_sym_where] = ACTIONS(2700), + [aux_sym_expr_unary_token1] = ACTIONS(2700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2700), + [anon_sym_DOT_DOT_LT] = ACTIONS(2700), + [aux_sym__val_number_decimal_token1] = ACTIONS(2698), + [aux_sym__val_number_decimal_token2] = ACTIONS(2700), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2700), + [aux_sym__val_number_token2] = ACTIONS(2700), + [aux_sym__val_number_token3] = ACTIONS(2700), + [anon_sym_0b] = ACTIONS(2698), + [anon_sym_0o] = ACTIONS(2698), + [anon_sym_0x] = ACTIONS(2698), + [sym_val_date] = ACTIONS(2700), + [anon_sym_DQUOTE] = ACTIONS(2700), + [anon_sym_SQUOTE] = ACTIONS(2700), + [anon_sym_BQUOTE] = ACTIONS(2700), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2700), + [anon_sym_CARET] = ACTIONS(2700), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2700), }, [STATE(1035)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1035), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1036)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1036), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1037)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1037), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1038)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1038), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1039)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1039), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1040)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1040), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1041)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1041), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1042)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1042), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2722), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2720), - [anon_sym_PLUS_PLUS2] = ACTIONS(2720), - [anon_sym_SLASH2] = ACTIONS(2722), - [anon_sym_mod2] = ACTIONS(2720), - [anon_sym_SLASH_SLASH2] = ACTIONS(2720), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1043)] = { + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1043), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1044)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1044), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1045)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1066), [sym_comment] = STATE(1045), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1046)] = { - [aux_sym__repeat_newline] = STATE(983), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1046), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1047)] = { + [sym__expression] = STATE(4770), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), [sym_comment] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2702), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_COLON2] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1048)] = { - [aux_sym__repeat_newline] = STATE(986), + [sym__expression] = STATE(4787), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), [sym_comment] = STATE(1048), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2702), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_COLON2] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1049)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_like2] = ACTIONS(994), - [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1050)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1018), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_err_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_GT_PIPE] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1018), - [anon_sym_xor2] = ACTIONS(1018), - [anon_sym_or2] = ACTIONS(1018), - [anon_sym_not_DASHin2] = ACTIONS(1018), - [anon_sym_has2] = ACTIONS(1018), - [anon_sym_not_DASHhas2] = ACTIONS(1018), - [anon_sym_starts_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), - [anon_sym_ends_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), - [anon_sym_EQ_EQ2] = ACTIONS(1018), - [anon_sym_BANG_EQ2] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1018), - [anon_sym_GT_EQ2] = ACTIONS(1018), - [anon_sym_EQ_TILDE2] = ACTIONS(1018), - [anon_sym_BANG_TILDE2] = ACTIONS(1018), - [anon_sym_like2] = ACTIONS(1018), - [anon_sym_not_DASHlike2] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(1018), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1018), - [anon_sym_SLASH_SLASH2] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1018), - [anon_sym_bit_DASHshr2] = ACTIONS(1018), - [anon_sym_bit_DASHand2] = ACTIONS(1018), - [anon_sym_bit_DASHxor2] = ACTIONS(1018), - [anon_sym_bit_DASHor2] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1018), - [anon_sym_out_GT_GT] = ACTIONS(1018), - [anon_sym_e_GT_GT] = ACTIONS(1018), - [anon_sym_o_GT_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), - [sym__unquoted_pattern] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1051)] = { - [aux_sym__repeat_newline] = STATE(990), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1051), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1052)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1356), + [sym__expression_parenthesized] = STATE(4398), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), [sym_comment] = STATE(1052), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(2660), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1053)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1053), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1054)] = { - [aux_sym__repeat_newline] = STATE(1091), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1054), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1055)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1055), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1056)] = { - [aux_sym__repeat_newline] = STATE(1092), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1056), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1057)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(4124), + [sym__match_pattern_expression] = STATE(4389), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list_body] = STATE(4642), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_rest] = STATE(5226), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3790), + [sym_val_range] = STATE(4609), + [sym__val_range] = STATE(5020), + [sym_val_nothing] = STATE(4611), + [sym_val_bool] = STATE(4191), + [sym_val_variable] = STATE(3791), + [sym_val_number] = STATE(4611), + [sym__val_number_decimal] = STATE(3574), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4611), + [sym_val_filesize] = STATE(4611), + [sym_val_binary] = STATE(4611), + [sym_val_string] = STATE(4611), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_list] = STATE(5150), + [sym__table_head] = STATE(3675), + [sym_val_table] = STATE(4611), + [sym__unquoted_in_list] = STATE(4389), + [sym__unquoted_anonymous_prefix] = STATE(5020), [sym_comment] = STATE(1057), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [aux_sym__types_body_repeat1] = STATE(1396), + [aux_sym_parameter_repeat2] = STATE(4020), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1412), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1376), + [aux_sym_cmd_identifier_token3] = ACTIONS(1378), + [aux_sym_cmd_identifier_token4] = ACTIONS(1378), + [aux_sym_cmd_identifier_token5] = ACTIONS(1378), + [sym__newline] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_RBRACK] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), + [anon_sym_DOT_DOT_LT] = ACTIONS(1396), + [aux_sym__val_number_decimal_token1] = ACTIONS(1398), + [aux_sym__val_number_decimal_token2] = ACTIONS(1400), + [aux_sym__val_number_decimal_token3] = ACTIONS(1402), + [aux_sym__val_number_decimal_token4] = ACTIONS(1402), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(1058)] = { - [aux_sym__repeat_newline] = STATE(992), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1058), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1059)] = { - [aux_sym__repeat_newline] = STATE(1093), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1059), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1060)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1060), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1061)] = { - [aux_sym__repeat_newline] = STATE(1094), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1061), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1062)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1062), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1063)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1063), - [ts_builtin_sym_end] = ACTIONS(2575), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1064)] = { - [aux_sym__repeat_newline] = STATE(1095), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1064), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1065)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1065), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1066)] = { - [aux_sym__repeat_newline] = STATE(1096), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1066), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1067)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(975), [sym_comment] = STATE(1067), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1068)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1069)] = { - [aux_sym__repeat_newline] = STATE(1097), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1069), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1070)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1070), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [anon_sym_err_GT] = ACTIONS(2064), + [anon_sym_out_GT] = ACTIONS(2064), + [anon_sym_e_GT] = ACTIONS(2064), + [anon_sym_o_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT] = ACTIONS(2064), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1071)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), [sym_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_in] = ACTIONS(2387), + [sym__newline] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_err_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_GT_PIPE] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2385), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_GT2] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_STAR2] = ACTIONS(2387), + [anon_sym_and2] = ACTIONS(2387), + [anon_sym_xor2] = ACTIONS(2387), + [anon_sym_or2] = ACTIONS(2387), + [anon_sym_not_DASHin2] = ACTIONS(2387), + [anon_sym_has2] = ACTIONS(2387), + [anon_sym_not_DASHhas2] = ACTIONS(2387), + [anon_sym_starts_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2387), + [anon_sym_ends_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2387), + [anon_sym_EQ_EQ2] = ACTIONS(2385), + [anon_sym_BANG_EQ2] = ACTIONS(2385), + [anon_sym_LT2] = ACTIONS(2387), + [anon_sym_LT_EQ2] = ACTIONS(2385), + [anon_sym_GT_EQ2] = ACTIONS(2385), + [anon_sym_EQ_TILDE2] = ACTIONS(2385), + [anon_sym_BANG_TILDE2] = ACTIONS(2387), + [anon_sym_like2] = ACTIONS(2387), + [anon_sym_not_DASHlike2] = ACTIONS(2387), + [anon_sym_STAR_STAR2] = ACTIONS(2387), + [anon_sym_PLUS_PLUS2] = ACTIONS(2387), + [anon_sym_SLASH2] = ACTIONS(2387), + [anon_sym_mod2] = ACTIONS(2387), + [anon_sym_SLASH_SLASH2] = ACTIONS(2387), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_bit_DASHshl2] = ACTIONS(2387), + [anon_sym_bit_DASHshr2] = ACTIONS(2387), + [anon_sym_bit_DASHand2] = ACTIONS(2387), + [anon_sym_bit_DASHxor2] = ACTIONS(2387), + [anon_sym_bit_DASHor2] = ACTIONS(2387), + [anon_sym_err_GT] = ACTIONS(2387), + [anon_sym_out_GT] = ACTIONS(2387), + [anon_sym_e_GT] = ACTIONS(2387), + [anon_sym_o_GT] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT] = ACTIONS(2387), + [anon_sym_err_GT_GT] = ACTIONS(2385), + [anon_sym_out_GT_GT] = ACTIONS(2385), + [anon_sym_e_GT_GT] = ACTIONS(2385), + [anon_sym_o_GT_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1072)] = { - [aux_sym__repeat_newline] = STATE(1098), [sym_comment] = STATE(1072), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_in] = ACTIONS(2593), + [sym__newline] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_err_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_GT_PIPE] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), + [anon_sym_RPAREN] = ACTIONS(2591), + [anon_sym_GT2] = ACTIONS(2593), + [anon_sym_DASH2] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_STAR2] = ACTIONS(2593), + [anon_sym_and2] = ACTIONS(2593), + [anon_sym_xor2] = ACTIONS(2593), + [anon_sym_or2] = ACTIONS(2593), + [anon_sym_not_DASHin2] = ACTIONS(2593), + [anon_sym_has2] = ACTIONS(2593), + [anon_sym_not_DASHhas2] = ACTIONS(2593), + [anon_sym_starts_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2593), + [anon_sym_ends_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2593), + [anon_sym_EQ_EQ2] = ACTIONS(2591), + [anon_sym_BANG_EQ2] = ACTIONS(2591), + [anon_sym_LT2] = ACTIONS(2593), + [anon_sym_LT_EQ2] = ACTIONS(2591), + [anon_sym_GT_EQ2] = ACTIONS(2591), + [anon_sym_EQ_TILDE2] = ACTIONS(2591), + [anon_sym_BANG_TILDE2] = ACTIONS(2593), + [anon_sym_like2] = ACTIONS(2593), + [anon_sym_not_DASHlike2] = ACTIONS(2593), + [anon_sym_STAR_STAR2] = ACTIONS(2593), + [anon_sym_PLUS_PLUS2] = ACTIONS(2593), + [anon_sym_SLASH2] = ACTIONS(2593), + [anon_sym_mod2] = ACTIONS(2593), + [anon_sym_SLASH_SLASH2] = ACTIONS(2593), + [anon_sym_PLUS2] = ACTIONS(2593), + [anon_sym_bit_DASHshl2] = ACTIONS(2593), + [anon_sym_bit_DASHshr2] = ACTIONS(2593), + [anon_sym_bit_DASHand2] = ACTIONS(2593), + [anon_sym_bit_DASHxor2] = ACTIONS(2593), + [anon_sym_bit_DASHor2] = ACTIONS(2593), + [anon_sym_err_GT] = ACTIONS(2593), + [anon_sym_out_GT] = ACTIONS(2593), + [anon_sym_e_GT] = ACTIONS(2593), + [anon_sym_o_GT] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT] = ACTIONS(2593), + [anon_sym_err_GT_GT] = ACTIONS(2591), + [anon_sym_out_GT_GT] = ACTIONS(2591), + [anon_sym_e_GT_GT] = ACTIONS(2591), + [anon_sym_o_GT_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1073)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1073), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_in] = ACTIONS(866), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_RPAREN] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1074)] = { - [aux_sym__repeat_newline] = STATE(1099), + [aux_sym__repeat_newline] = STATE(976), [sym_comment] = STATE(1074), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2728), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2730), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2728), - [anon_sym_PLUS_PLUS2] = ACTIONS(2728), - [anon_sym_SLASH2] = ACTIONS(2730), - [anon_sym_mod2] = ACTIONS(2728), - [anon_sym_SLASH_SLASH2] = ACTIONS(2728), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1075)] = { - [aux_sym__repeat_newline] = STATE(994), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1075), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1076)] = { - [aux_sym__repeat_newline] = STATE(1100), + [aux_sym__repeat_newline] = STATE(977), [sym_comment] = STATE(1076), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1077)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1077), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1078)] = { + [aux_sym__repeat_newline] = STATE(978), + [sym_comment] = STATE(1078), + [anon_sym_in] = ACTIONS(2726), + [sym__newline] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2728), + [anon_sym_DASH2] = ACTIONS(2726), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_STAR2] = ACTIONS(2728), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2726), + [anon_sym_has2] = ACTIONS(2726), + [anon_sym_not_DASHhas2] = ACTIONS(2726), + [anon_sym_starts_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), + [anon_sym_ends_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), + [anon_sym_EQ_EQ2] = ACTIONS(2726), + [anon_sym_BANG_EQ2] = ACTIONS(2726), + [anon_sym_LT2] = ACTIONS(2728), + [anon_sym_LT_EQ2] = ACTIONS(2726), + [anon_sym_GT_EQ2] = ACTIONS(2726), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2726), + [anon_sym_PLUS_PLUS2] = ACTIONS(2726), + [anon_sym_SLASH2] = ACTIONS(2728), + [anon_sym_mod2] = ACTIONS(2726), + [anon_sym_SLASH_SLASH2] = ACTIONS(2726), + [anon_sym_PLUS2] = ACTIONS(2728), + [anon_sym_bit_DASHshl2] = ACTIONS(2726), + [anon_sym_bit_DASHshr2] = ACTIONS(2726), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1079)] = { + [sym_comment] = STATE(1079), + [aux_sym_cmd_identifier_token2] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(866), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_COLON2] = ACTIONS(908), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1080)] = { + [aux_sym__repeat_newline] = STATE(979), + [sym_comment] = STATE(1080), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1081)] = { + [sym_comment] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(2730), + [aux_sym__immediate_decimal_token5] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1082)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1082), [anon_sym_in] = ACTIONS(2732), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), @@ -126723,3249 +127307,2909 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1078)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1078), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1079)] = { - [aux_sym__repeat_newline] = STATE(1101), - [sym_comment] = STATE(1079), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1080)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1080), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1081)] = { - [aux_sym__repeat_newline] = STATE(1102), - [sym_comment] = STATE(1081), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1082)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1082), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1083)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(2523), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1084)] = { - [aux_sym__repeat_newline] = STATE(1106), + [aux_sym__repeat_newline] = STATE(980), [sym_comment] = STATE(1084), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1085)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1085), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1086)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(4124), + [sym__match_pattern_expression] = STATE(4389), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list_body] = STATE(4644), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_rest] = STATE(5237), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3790), + [sym_val_range] = STATE(4609), + [sym__val_range] = STATE(5020), + [sym_val_nothing] = STATE(4611), + [sym_val_bool] = STATE(4191), + [sym_val_variable] = STATE(3791), + [sym_val_number] = STATE(4611), + [sym__val_number_decimal] = STATE(3574), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4611), + [sym_val_filesize] = STATE(4611), + [sym_val_binary] = STATE(4611), + [sym_val_string] = STATE(4611), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_list] = STATE(5150), + [sym__table_head] = STATE(3764), + [sym_val_table] = STATE(4611), + [sym__unquoted_in_list] = STATE(4389), + [sym__unquoted_anonymous_prefix] = STATE(5020), [sym_comment] = STATE(1086), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [aux_sym__types_body_repeat1] = STATE(1396), + [aux_sym_parameter_repeat2] = STATE(4020), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1412), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1376), + [aux_sym_cmd_identifier_token3] = ACTIONS(1378), + [aux_sym_cmd_identifier_token4] = ACTIONS(1378), + [aux_sym_cmd_identifier_token5] = ACTIONS(1378), + [sym__newline] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_RBRACK] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_DOT_DOT] = ACTIONS(2738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), + [anon_sym_DOT_DOT_LT] = ACTIONS(1396), + [aux_sym__val_number_decimal_token1] = ACTIONS(1398), + [aux_sym__val_number_decimal_token2] = ACTIONS(1400), + [aux_sym__val_number_decimal_token3] = ACTIONS(1402), + [aux_sym__val_number_decimal_token4] = ACTIONS(1402), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(1087)] = { - [aux_sym__repeat_newline] = STATE(1107), + [aux_sym__repeat_newline] = STATE(981), [sym_comment] = STATE(1087), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1088)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1088), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1089)] = { - [aux_sym__repeat_newline] = STATE(996), + [aux_sym__repeat_newline] = STATE(982), [sym_comment] = STATE(1089), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1090)] = { + [aux_sym__repeat_newline] = STATE(983), [sym_comment] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(2567), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), - [sym__unquoted_pattern] = ACTIONS(2633), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1091)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1091), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1092)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1092), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2740), + [anon_sym_alias] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_mut] = ACTIONS(2742), + [anon_sym_const] = ACTIONS(2742), + [aux_sym_cmd_identifier_token1] = ACTIONS(2740), + [anon_sym_def] = ACTIONS(2742), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_export_DASHenv] = ACTIONS(2742), + [anon_sym_extern] = ACTIONS(2742), + [anon_sym_module] = ACTIONS(2742), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_loop] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_else] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_catch] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_true] = ACTIONS(2742), + [anon_sym_false] = ACTIONS(2742), + [anon_sym_null] = ACTIONS(2742), + [aux_sym_cmd_identifier_token3] = ACTIONS(2742), + [aux_sym_cmd_identifier_token4] = ACTIONS(2742), + [aux_sym_cmd_identifier_token5] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_DOT_DOT] = ACTIONS(2740), + [anon_sym_where] = ACTIONS(2742), + [aux_sym_expr_unary_token1] = ACTIONS(2742), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2742), + [anon_sym_DOT_DOT_LT] = ACTIONS(2742), + [aux_sym__val_number_decimal_token1] = ACTIONS(2740), + [aux_sym__val_number_decimal_token2] = ACTIONS(2742), + [aux_sym__val_number_decimal_token3] = ACTIONS(2742), + [aux_sym__val_number_decimal_token4] = ACTIONS(2742), + [aux_sym__val_number_token1] = ACTIONS(2742), + [aux_sym__val_number_token2] = ACTIONS(2742), + [aux_sym__val_number_token3] = ACTIONS(2742), + [anon_sym_0b] = ACTIONS(2740), + [anon_sym_0o] = ACTIONS(2740), + [anon_sym_0x] = ACTIONS(2740), + [sym_val_date] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_BQUOTE] = ACTIONS(2742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2742), + [anon_sym_CARET] = ACTIONS(2742), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2742), }, [STATE(1093)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(988), [sym_comment] = STATE(1093), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1094)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(2767), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_parenthesized] = STATE(2518), + [sym_val_range] = STATE(2767), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(2767), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(2568), + [sym_val_variable] = STATE(2530), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(2349), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(2577), + [sym__unquoted_with_expr] = STATE(2769), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(1094), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2746), + [aux_sym_cmd_identifier_token3] = ACTIONS(2748), + [aux_sym_cmd_identifier_token4] = ACTIONS(2748), + [aux_sym_cmd_identifier_token5] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2754), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_DOT_DOT] = ACTIONS(2758), + [aux_sym_expr_unary_token1] = ACTIONS(2760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2762), + [anon_sym_DOT_DOT_LT] = ACTIONS(2762), + [aux_sym__val_number_decimal_token1] = ACTIONS(2764), + [aux_sym__val_number_decimal_token2] = ACTIONS(2766), + [aux_sym__val_number_decimal_token3] = ACTIONS(2768), + [aux_sym__val_number_decimal_token4] = ACTIONS(2768), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(1095)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(2771), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_parenthesized] = STATE(2525), + [sym_val_range] = STATE(2771), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(2771), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(2568), + [sym_val_variable] = STATE(2530), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(2349), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(2594), + [sym__unquoted_with_expr] = STATE(2775), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(1095), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2746), + [aux_sym_cmd_identifier_token3] = ACTIONS(2748), + [aux_sym_cmd_identifier_token4] = ACTIONS(2748), + [aux_sym_cmd_identifier_token5] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2754), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_DOT_DOT] = ACTIONS(2758), + [aux_sym_expr_unary_token1] = ACTIONS(2760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2762), + [anon_sym_DOT_DOT_LT] = ACTIONS(2762), + [aux_sym__val_number_decimal_token1] = ACTIONS(2764), + [aux_sym__val_number_decimal_token2] = ACTIONS(2766), + [aux_sym__val_number_decimal_token3] = ACTIONS(2768), + [aux_sym__val_number_decimal_token4] = ACTIONS(2768), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(1096)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(2776), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_parenthesized] = STATE(2526), + [sym_val_range] = STATE(2776), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(2776), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(2568), + [sym_val_variable] = STATE(2530), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(2349), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(2604), + [sym__unquoted_with_expr] = STATE(2780), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(1096), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2746), + [aux_sym_cmd_identifier_token3] = ACTIONS(2748), + [aux_sym_cmd_identifier_token4] = ACTIONS(2748), + [aux_sym_cmd_identifier_token5] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2754), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_DOT_DOT] = ACTIONS(2758), + [aux_sym_expr_unary_token1] = ACTIONS(2760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2762), + [anon_sym_DOT_DOT_LT] = ACTIONS(2762), + [aux_sym__val_number_decimal_token1] = ACTIONS(2764), + [aux_sym__val_number_decimal_token2] = ACTIONS(2766), + [aux_sym__val_number_decimal_token3] = ACTIONS(2768), + [aux_sym__val_number_decimal_token4] = ACTIONS(2768), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(1097)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(998), [sym_comment] = STATE(1097), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1098)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1001), [sym_comment] = STATE(1098), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1099)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1004), [sym_comment] = STATE(1099), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2742), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2740), - [anon_sym_PLUS_PLUS2] = ACTIONS(2740), - [anon_sym_SLASH2] = ACTIONS(2742), - [anon_sym_mod2] = ACTIONS(2740), - [anon_sym_SLASH_SLASH2] = ACTIONS(2740), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1100)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1007), [sym_comment] = STATE(1100), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1101)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1010), [sym_comment] = STATE(1101), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1102)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1014), [sym_comment] = STATE(1102), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1103)] = { - [aux_sym__repeat_newline] = STATE(998), + [aux_sym__repeat_newline] = STATE(1018), [sym_comment] = STATE(1103), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1104)] = { - [aux_sym__repeat_newline] = STATE(1001), + [aux_sym__repeat_newline] = STATE(1022), [sym_comment] = STATE(1104), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2746), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2744), - [anon_sym_PLUS_PLUS2] = ACTIONS(2744), - [anon_sym_SLASH2] = ACTIONS(2746), - [anon_sym_mod2] = ACTIONS(2744), - [anon_sym_SLASH_SLASH2] = ACTIONS(2744), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_STAR2] = ACTIONS(2774), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2772), + [anon_sym_PLUS_PLUS2] = ACTIONS(2772), + [anon_sym_SLASH2] = ACTIONS(2774), + [anon_sym_mod2] = ACTIONS(2772), + [anon_sym_SLASH_SLASH2] = ACTIONS(2772), + [anon_sym_PLUS2] = ACTIONS(2774), + [anon_sym_bit_DASHshl2] = ACTIONS(2772), + [anon_sym_bit_DASHshr2] = ACTIONS(2772), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1105)] = { - [aux_sym__repeat_newline] = STATE(1002), + [aux_sym__repeat_newline] = STATE(1023), [sym_comment] = STATE(1105), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1106)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1116), [sym_comment] = STATE(1106), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1107)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1025), [sym_comment] = STATE(1107), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [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), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1108)] = { - [aux_sym__repeat_newline] = STATE(1004), + [aux_sym__repeat_newline] = STATE(967), [sym_comment] = STATE(1108), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1109)] = { - [sym_expr_unary] = STATE(2841), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2562), - [sym_val_range] = STATE(2841), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2841), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2613), - [sym__unquoted_with_expr] = STATE(2844), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(1002), [sym_comment] = STATE(1109), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1110)] = { - [sym_expr_unary] = STATE(2845), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2574), - [sym_val_range] = STATE(2845), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2845), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2632), - [sym__unquoted_with_expr] = STATE(2850), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(1030), [sym_comment] = STATE(1110), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1111)] = { - [sym_expr_unary] = STATE(2851), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2520), - [sym_val_range] = STATE(2851), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2851), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2593), - [sym__unquoted_with_expr] = STATE(2853), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(1020), [sym_comment] = STATE(1111), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1112)] = { + [aux_sym__repeat_newline] = STATE(968), [sym_comment] = STATE(1112), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1113)] = { + [aux_sym__repeat_newline] = STATE(1049), [sym_comment] = STATE(1113), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1114)] = { + [aux_sym__repeat_newline] = STATE(1035), [sym_comment] = STATE(1114), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1115)] = { - [aux_sym__repeat_newline] = STATE(1007), + [aux_sym__repeat_newline] = STATE(1068), [sym_comment] = STATE(1115), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1116)] = { - [aux_sym__repeat_newline] = STATE(1009), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1116), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1117)] = { + [aux_sym__repeat_newline] = STATE(1075), [sym_comment] = STATE(1117), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [sym__newline] = ACTIONS(2493), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_err_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_GT_PIPE] = ACTIONS(2493), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_where] = ACTIONS(2493), - [aux_sym_expr_unary_token1] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2491), - [anon_sym_0x] = ACTIONS(2491), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_BQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1118)] = { + [aux_sym__repeat_newline] = STATE(969), [sym_comment] = STATE(1118), - [anon_sym_export] = ACTIONS(2776), - [anon_sym_alias] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2778), - [anon_sym_mut] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [aux_sym_cmd_identifier_token1] = ACTIONS(2776), - [anon_sym_def] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2778), - [anon_sym_export_DASHenv] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym_module] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_loop] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_catch] = ACTIONS(2778), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_in] = ACTIONS(2776), - [anon_sym_true] = ACTIONS(2778), - [anon_sym_false] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2778), - [aux_sym_cmd_identifier_token3] = ACTIONS(2778), - [aux_sym_cmd_identifier_token4] = ACTIONS(2778), - [aux_sym_cmd_identifier_token5] = ACTIONS(2778), - [sym__newline] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(2776), - [anon_sym_where] = ACTIONS(2778), - [aux_sym_expr_unary_token1] = ACTIONS(2778), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2778), - [anon_sym_DOT_DOT_LT] = ACTIONS(2778), - [aux_sym__val_number_decimal_token1] = ACTIONS(2776), - [aux_sym__val_number_decimal_token2] = ACTIONS(2778), - [aux_sym__val_number_decimal_token3] = ACTIONS(2778), - [aux_sym__val_number_decimal_token4] = ACTIONS(2778), - [aux_sym__val_number_token1] = ACTIONS(2778), - [aux_sym__val_number_token2] = ACTIONS(2778), - [aux_sym__val_number_token3] = ACTIONS(2778), - [anon_sym_0b] = ACTIONS(2776), - [anon_sym_0o] = ACTIONS(2776), - [anon_sym_0x] = ACTIONS(2776), - [sym_val_date] = ACTIONS(2778), - [anon_sym_DQUOTE] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_BQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2778), - [anon_sym_CARET] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2778), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1119)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [aux_sym__repeat_newline] = STATE(1077), [sym_comment] = STATE(1119), - [ts_builtin_sym_end] = ACTIONS(2144), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1120)] = { - [aux_sym__repeat_newline] = STATE(1011), + [aux_sym__repeat_newline] = STATE(1046), [sym_comment] = STATE(1120), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1121)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1082), [sym_comment] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2776), + [anon_sym_STAR2] = ACTIONS(2778), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2776), + [anon_sym_PLUS_PLUS2] = ACTIONS(2776), + [anon_sym_SLASH2] = ACTIONS(2778), + [anon_sym_mod2] = ACTIONS(2776), + [anon_sym_SLASH_SLASH2] = ACTIONS(2776), + [anon_sym_PLUS2] = ACTIONS(2778), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = 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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1122)] = { + [aux_sym__repeat_newline] = STATE(1083), [sym_comment] = STATE(1122), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2780), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1123)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1085), [sym_comment] = STATE(1123), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1124)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [aux_sym__repeat_newline] = STATE(1088), [sym_comment] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(2148), - [anon_sym_in] = ACTIONS(2148), - [sym__newline] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_err_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_GT_PIPE] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), - [anon_sym_GT2] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_STAR2] = ACTIONS(2150), - [anon_sym_and2] = ACTIONS(2148), - [anon_sym_xor2] = ACTIONS(2148), - [anon_sym_or2] = ACTIONS(2148), - [anon_sym_not_DASHin2] = ACTIONS(2148), - [anon_sym_has2] = ACTIONS(2148), - [anon_sym_not_DASHhas2] = ACTIONS(2148), - [anon_sym_starts_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2148), - [anon_sym_ends_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2148), - [anon_sym_EQ_EQ2] = ACTIONS(2148), - [anon_sym_BANG_EQ2] = ACTIONS(2148), - [anon_sym_LT2] = ACTIONS(2150), - [anon_sym_LT_EQ2] = ACTIONS(2148), - [anon_sym_GT_EQ2] = ACTIONS(2148), - [anon_sym_EQ_TILDE2] = ACTIONS(2148), - [anon_sym_BANG_TILDE2] = ACTIONS(2148), - [anon_sym_like2] = ACTIONS(2148), - [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_err_GT] = ACTIONS(2150), - [anon_sym_out_GT] = ACTIONS(2150), - [anon_sym_e_GT] = ACTIONS(2150), - [anon_sym_o_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT] = ACTIONS(2150), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1125)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), + [aux_sym__repeat_newline] = STATE(4124), + [sym__match_pattern_expression] = STATE(4389), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list_body] = STATE(4642), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_rest] = STATE(5226), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3790), + [sym_val_range] = STATE(4609), + [sym__val_range] = STATE(5020), + [sym_val_nothing] = STATE(4611), + [sym_val_bool] = STATE(4191), + [sym_val_variable] = STATE(3791), + [sym_val_number] = STATE(4611), + [sym__val_number_decimal] = STATE(3574), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4611), + [sym_val_filesize] = STATE(4611), + [sym_val_binary] = STATE(4611), + [sym_val_string] = STATE(4611), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_list] = STATE(5150), + [sym__table_head] = STATE(3734), + [sym_val_table] = STATE(4611), + [sym__unquoted_in_list] = STATE(4389), + [sym__unquoted_anonymous_prefix] = STATE(5020), [sym_comment] = STATE(1125), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3958), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), + [aux_sym__types_body_repeat1] = STATE(1396), + [aux_sym_parameter_repeat2] = STATE(4020), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1412), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), [aux_sym_cmd_identifier_token3] = ACTIONS(1378), [aux_sym_cmd_identifier_token4] = ACTIONS(1378), [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_RBRACK] = ACTIONS(2714), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_DOLLAR] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), [anon_sym_DOT_DOT] = ACTIONS(1394), [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), [anon_sym_DOT_DOT_LT] = ACTIONS(1396), @@ -129979,7 +130223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), + [sym_val_date] = ACTIONS(2720), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -129988,249 +130232,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(1126)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(964), [sym_comment] = STATE(1126), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1127)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1091), [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1128)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1356), + [sym__expression_parenthesized] = STATE(4394), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), [sym_comment] = STATE(1128), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1129)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4355), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1129), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(2660), [aux_sym_cmd_identifier_token3] = ACTIONS(189), [aux_sym_cmd_identifier_token4] = ACTIONS(189), [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), + [sym__newline] = ACTIONS(2569), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -130240,10 +130416,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -130259,1083 +130435,1083 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(1129)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1129), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1130)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1147), [sym_comment] = STATE(1130), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1131)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1172), [sym_comment] = STATE(1131), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1132)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1132), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1133)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1133), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2652), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2654), + [anon_sym_DASH2] = ACTIONS(2652), + [anon_sym_STAR2] = ACTIONS(2654), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2652), + [anon_sym_has2] = ACTIONS(2652), + [anon_sym_not_DASHhas2] = ACTIONS(2652), + [anon_sym_starts_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2652), + [anon_sym_ends_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2652), + [anon_sym_EQ_EQ2] = ACTIONS(2652), + [anon_sym_BANG_EQ2] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2654), + [anon_sym_LT_EQ2] = ACTIONS(2652), + [anon_sym_GT_EQ2] = ACTIONS(2652), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2654), + [anon_sym_mod2] = ACTIONS(2652), + [anon_sym_SLASH_SLASH2] = ACTIONS(2652), + [anon_sym_PLUS2] = ACTIONS(2654), + [anon_sym_bit_DASHshl2] = ACTIONS(2652), + [anon_sym_bit_DASHshr2] = ACTIONS(2652), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1134)] = { - [aux_sym__repeat_newline] = STATE(1198), + [aux_sym__repeat_newline] = STATE(1173), [sym_comment] = STATE(1134), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1135)] = { - [aux_sym__repeat_newline] = STATE(1190), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1135), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1136)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1136), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2864), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1137)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1179), [sym_comment] = STATE(1137), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2726), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2728), + [anon_sym_DASH2] = ACTIONS(2726), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2726), + [anon_sym_has2] = ACTIONS(2726), + [anon_sym_not_DASHhas2] = ACTIONS(2726), + [anon_sym_starts_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), + [anon_sym_ends_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), + [anon_sym_EQ_EQ2] = ACTIONS(2726), + [anon_sym_BANG_EQ2] = ACTIONS(2726), + [anon_sym_LT2] = ACTIONS(2728), + [anon_sym_LT_EQ2] = ACTIONS(2726), + [anon_sym_GT_EQ2] = ACTIONS(2726), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2728), + [anon_sym_bit_DASHshl2] = ACTIONS(2726), + [anon_sym_bit_DASHshr2] = ACTIONS(2726), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1138)] = { + [aux_sym__repeat_newline] = STATE(1174), [sym_comment] = STATE(1138), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2864), - [anon_sym_xor2] = ACTIONS(2866), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1139)] = { - [aux_sym__repeat_newline] = STATE(1200), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1139), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1140)] = { [sym_comment] = STATE(1140), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [ts_builtin_sym_end] = ACTIONS(908), + [anon_sym_in] = ACTIONS(908), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(908), + [anon_sym_xor2] = ACTIONS(908), + [anon_sym_or2] = ACTIONS(908), + [anon_sym_not_DASHin2] = ACTIONS(908), + [anon_sym_has2] = ACTIONS(908), + [anon_sym_not_DASHhas2] = ACTIONS(908), + [anon_sym_starts_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(908), + [anon_sym_ends_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(908), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(908), + [anon_sym_like2] = ACTIONS(908), + [anon_sym_not_DASHlike2] = ACTIONS(908), + [anon_sym_STAR_STAR2] = ACTIONS(908), + [anon_sym_PLUS_PLUS2] = ACTIONS(908), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(908), + [anon_sym_SLASH_SLASH2] = ACTIONS(908), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(908), + [anon_sym_bit_DASHshr2] = ACTIONS(908), + [anon_sym_bit_DASHand2] = ACTIONS(908), + [anon_sym_bit_DASHxor2] = ACTIONS(908), + [anon_sym_bit_DASHor2] = ACTIONS(908), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [sym__unquoted_pattern] = ACTIONS(1810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1141)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expression] = STATE(4770), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), [sym_comment] = STATE(1141), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1142)] = { + [sym__expression] = STATE(4787), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), [sym_comment] = STATE(1142), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1143)] = { - [aux_sym__repeat_newline] = STATE(1131), [sym_comment] = STATE(1143), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2591), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_in] = ACTIONS(2593), + [sym__newline] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_err_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_GT_PIPE] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), + [anon_sym_GT2] = ACTIONS(2593), + [anon_sym_DASH2] = ACTIONS(2593), + [anon_sym_STAR2] = ACTIONS(2593), + [anon_sym_and2] = ACTIONS(2593), + [anon_sym_xor2] = ACTIONS(2593), + [anon_sym_or2] = ACTIONS(2593), + [anon_sym_not_DASHin2] = ACTIONS(2593), + [anon_sym_has2] = ACTIONS(2593), + [anon_sym_not_DASHhas2] = ACTIONS(2593), + [anon_sym_starts_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2593), + [anon_sym_ends_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2593), + [anon_sym_EQ_EQ2] = ACTIONS(2591), + [anon_sym_BANG_EQ2] = ACTIONS(2591), + [anon_sym_LT2] = ACTIONS(2593), + [anon_sym_LT_EQ2] = ACTIONS(2591), + [anon_sym_GT_EQ2] = ACTIONS(2591), + [anon_sym_EQ_TILDE2] = ACTIONS(2591), + [anon_sym_BANG_TILDE2] = ACTIONS(2593), + [anon_sym_like2] = ACTIONS(2593), + [anon_sym_not_DASHlike2] = ACTIONS(2593), + [anon_sym_STAR_STAR2] = ACTIONS(2593), + [anon_sym_PLUS_PLUS2] = ACTIONS(2593), + [anon_sym_SLASH2] = ACTIONS(2593), + [anon_sym_mod2] = ACTIONS(2593), + [anon_sym_SLASH_SLASH2] = ACTIONS(2593), + [anon_sym_PLUS2] = ACTIONS(2593), + [anon_sym_bit_DASHshl2] = ACTIONS(2593), + [anon_sym_bit_DASHshr2] = ACTIONS(2593), + [anon_sym_bit_DASHand2] = ACTIONS(2593), + [anon_sym_bit_DASHxor2] = ACTIONS(2593), + [anon_sym_bit_DASHor2] = ACTIONS(2593), + [anon_sym_err_GT] = ACTIONS(2593), + [anon_sym_out_GT] = ACTIONS(2593), + [anon_sym_e_GT] = ACTIONS(2593), + [anon_sym_o_GT] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT] = ACTIONS(2593), + [anon_sym_err_GT_GT] = ACTIONS(2591), + [anon_sym_out_GT_GT] = ACTIONS(2591), + [anon_sym_e_GT_GT] = ACTIONS(2591), + [anon_sym_o_GT_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1144)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1144), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1145)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1145), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1146)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1146), - [anon_sym_in] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2810), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -131348,39 +131524,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2734), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), [anon_sym_err_GT] = ACTIONS(2734), [anon_sym_out_GT] = ACTIONS(2734), [anon_sym_e_GT] = ACTIONS(2734), @@ -131399,210 +131575,1684 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1146)] = { + [sym_comment] = STATE(1146), + [ts_builtin_sym_end] = ACTIONS(908), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_in] = ACTIONS(866), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(1147)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1147), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1148)] = { - [aux_sym__repeat_newline] = STATE(1204), + [aux_sym__repeat_newline] = STATE(1154), [sym_comment] = STATE(1148), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2730), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2730), - [anon_sym_mod2] = ACTIONS(2728), - [anon_sym_SLASH_SLASH2] = ACTIONS(2728), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1149)] = { + [sym_comment] = STATE(1149), + [anon_sym_export] = ACTIONS(2843), + [anon_sym_alias] = ACTIONS(2847), + [anon_sym_let] = ACTIONS(2847), + [anon_sym_mut] = ACTIONS(2847), + [anon_sym_const] = ACTIONS(2847), + [aux_sym_cmd_identifier_token1] = ACTIONS(2843), + [anon_sym_def] = ACTIONS(2847), + [anon_sym_use] = ACTIONS(2847), + [anon_sym_export_DASHenv] = ACTIONS(2847), + [anon_sym_extern] = ACTIONS(2847), + [anon_sym_module] = ACTIONS(2847), + [anon_sym_for] = ACTIONS(2847), + [anon_sym_loop] = ACTIONS(2847), + [anon_sym_while] = ACTIONS(2847), + [anon_sym_if] = ACTIONS(2847), + [anon_sym_else] = ACTIONS(2847), + [anon_sym_try] = ACTIONS(2847), + [anon_sym_catch] = ACTIONS(2847), + [anon_sym_match] = ACTIONS(2847), + [anon_sym_in] = ACTIONS(2843), + [anon_sym_true] = ACTIONS(2847), + [anon_sym_false] = ACTIONS(2847), + [anon_sym_null] = ACTIONS(2847), + [aux_sym_cmd_identifier_token3] = ACTIONS(2847), + [aux_sym_cmd_identifier_token4] = ACTIONS(2847), + [aux_sym_cmd_identifier_token5] = ACTIONS(2847), + [sym__newline] = ACTIONS(2847), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_AT] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_LPAREN] = ACTIONS(2847), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_DASH2] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_DOT_DOT] = ACTIONS(2854), + [anon_sym_where] = ACTIONS(2851), + [aux_sym_expr_unary_token1] = ACTIONS(2851), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2859), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2851), + [anon_sym_DOT_DOT_LT] = ACTIONS(2851), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2859), + [aux_sym__val_number_decimal_token1] = ACTIONS(2843), + [aux_sym__val_number_decimal_token2] = ACTIONS(2847), + [aux_sym__val_number_decimal_token3] = ACTIONS(2847), + [aux_sym__val_number_decimal_token4] = ACTIONS(2847), + [aux_sym__val_number_token1] = ACTIONS(2847), + [aux_sym__val_number_token2] = ACTIONS(2847), + [aux_sym__val_number_token3] = ACTIONS(2847), + [anon_sym_0b] = ACTIONS(2854), + [anon_sym_0o] = ACTIONS(2854), + [anon_sym_0x] = ACTIONS(2854), + [sym_val_date] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_BQUOTE] = ACTIONS(2847), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2847), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2847), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2859), + [anon_sym_CARET] = ACTIONS(2851), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2847), + }, + [STATE(1150)] = { + [sym__ctrl_match_body] = STATE(5005), + [sym_match_arm] = STATE(4491), + [sym_default_arm] = STATE(4491), + [sym_match_pattern] = STATE(5060), + [sym__match_pattern] = STATE(3839), + [sym__match_pattern_expression] = STATE(4159), + [sym__match_pattern_value] = STATE(4160), + [sym__match_pattern_list] = STATE(4161), + [sym__match_pattern_record] = STATE(4166), + [sym_expr_parenthesized] = STATE(3704), + [sym_val_range] = STATE(4160), + [sym__val_range] = STATE(5001), + [sym_val_nothing] = STATE(4166), + [sym_val_bool] = STATE(3970), + [sym_val_variable] = STATE(3705), + [sym_val_number] = STATE(4166), + [sym__val_number_decimal] = STATE(3469), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(4166), + [sym_val_filesize] = STATE(4166), + [sym_val_binary] = STATE(4166), + [sym_val_string] = STATE(4166), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_table] = STATE(4166), + [sym_unquoted] = STATE(4170), + [sym__unquoted_anonymous_prefix] = STATE(5001), + [sym_comment] = STATE(1150), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1359), + [anon_sym_true] = ACTIONS(2861), + [anon_sym_false] = ACTIONS(2861), + [anon_sym_null] = ACTIONS(2863), + [aux_sym_cmd_identifier_token3] = ACTIONS(2865), + [aux_sym_cmd_identifier_token4] = ACTIONS(2865), + [aux_sym_cmd_identifier_token5] = ACTIONS(2865), + [sym__newline] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym__] = ACTIONS(2877), + [anon_sym_DOT_DOT] = ACTIONS(2879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2881), + [anon_sym_DOT_DOT_LT] = ACTIONS(2881), + [aux_sym__val_number_decimal_token1] = ACTIONS(2883), + [aux_sym__val_number_decimal_token2] = ACTIONS(2885), + [aux_sym__val_number_decimal_token3] = ACTIONS(2887), + [aux_sym__val_number_decimal_token4] = ACTIONS(2887), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [STATE(1151)] = { + [sym__ctrl_match_body] = STATE(5007), + [sym_match_arm] = STATE(4491), + [sym_default_arm] = STATE(4491), + [sym_match_pattern] = STATE(5060), + [sym__match_pattern] = STATE(3839), + [sym__match_pattern_expression] = STATE(4159), + [sym__match_pattern_value] = STATE(4160), + [sym__match_pattern_list] = STATE(4161), + [sym__match_pattern_record] = STATE(4166), + [sym_expr_parenthesized] = STATE(3704), + [sym_val_range] = STATE(4160), + [sym__val_range] = STATE(5001), + [sym_val_nothing] = STATE(4166), + [sym_val_bool] = STATE(3970), + [sym_val_variable] = STATE(3705), + [sym_val_number] = STATE(4166), + [sym__val_number_decimal] = STATE(3469), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(4166), + [sym_val_filesize] = STATE(4166), + [sym_val_binary] = STATE(4166), + [sym_val_string] = STATE(4166), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_table] = STATE(4166), + [sym_unquoted] = STATE(4170), + [sym__unquoted_anonymous_prefix] = STATE(5001), + [sym_comment] = STATE(1151), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1359), + [anon_sym_true] = ACTIONS(2861), + [anon_sym_false] = ACTIONS(2861), + [anon_sym_null] = ACTIONS(2863), + [aux_sym_cmd_identifier_token3] = ACTIONS(2865), + [aux_sym_cmd_identifier_token4] = ACTIONS(2865), + [aux_sym_cmd_identifier_token5] = ACTIONS(2865), + [sym__newline] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2891), + [anon_sym__] = ACTIONS(2877), + [anon_sym_DOT_DOT] = ACTIONS(2879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2881), + [anon_sym_DOT_DOT_LT] = ACTIONS(2881), + [aux_sym__val_number_decimal_token1] = ACTIONS(2883), + [aux_sym__val_number_decimal_token2] = ACTIONS(2885), + [aux_sym__val_number_decimal_token3] = ACTIONS(2887), + [aux_sym__val_number_decimal_token4] = ACTIONS(2887), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [STATE(1152)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1152), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1153)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1153), + [anon_sym_in] = ACTIONS(2652), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2652), + [anon_sym_has2] = ACTIONS(2652), + [anon_sym_not_DASHhas2] = ACTIONS(2652), + [anon_sym_starts_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2652), + [anon_sym_ends_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2652), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1154)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1154), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1155)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1155), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1156)] = { + [sym_comment] = STATE(1156), + [ts_builtin_sym_end] = ACTIONS(2130), + [anon_sym_in] = ACTIONS(2130), + [sym__newline] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_err_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_GT_PIPE] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2130), + [anon_sym_GT2] = ACTIONS(2132), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_STAR2] = ACTIONS(2132), + [anon_sym_and2] = ACTIONS(2130), + [anon_sym_xor2] = ACTIONS(2130), + [anon_sym_or2] = ACTIONS(2130), + [anon_sym_not_DASHin2] = ACTIONS(2130), + [anon_sym_has2] = ACTIONS(2130), + [anon_sym_not_DASHhas2] = ACTIONS(2130), + [anon_sym_starts_DASHwith2] = ACTIONS(2130), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2130), + [anon_sym_ends_DASHwith2] = ACTIONS(2130), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2130), + [anon_sym_EQ_EQ2] = ACTIONS(2130), + [anon_sym_BANG_EQ2] = ACTIONS(2130), + [anon_sym_LT2] = ACTIONS(2132), + [anon_sym_LT_EQ2] = ACTIONS(2130), + [anon_sym_GT_EQ2] = ACTIONS(2130), + [anon_sym_EQ_TILDE2] = ACTIONS(2130), + [anon_sym_BANG_TILDE2] = ACTIONS(2130), + [anon_sym_like2] = ACTIONS(2130), + [anon_sym_not_DASHlike2] = ACTIONS(2130), + [anon_sym_LPAREN2] = ACTIONS(2130), + [anon_sym_STAR_STAR2] = ACTIONS(2130), + [anon_sym_PLUS_PLUS2] = ACTIONS(2130), + [anon_sym_SLASH2] = ACTIONS(2132), + [anon_sym_mod2] = ACTIONS(2130), + [anon_sym_SLASH_SLASH2] = ACTIONS(2130), + [anon_sym_PLUS2] = ACTIONS(2132), + [anon_sym_bit_DASHshl2] = ACTIONS(2130), + [anon_sym_bit_DASHshr2] = ACTIONS(2130), + [anon_sym_bit_DASHand2] = ACTIONS(2130), + [anon_sym_bit_DASHxor2] = ACTIONS(2130), + [anon_sym_bit_DASHor2] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(2132), + [anon_sym_out_GT] = ACTIONS(2132), + [anon_sym_e_GT] = ACTIONS(2132), + [anon_sym_o_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT] = ACTIONS(2132), + [anon_sym_err_GT_GT] = ACTIONS(2130), + [anon_sym_out_GT_GT] = ACTIONS(2130), + [anon_sym_e_GT_GT] = ACTIONS(2130), + [anon_sym_o_GT_GT] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2130), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1157)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1157), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1158)] = { + [sym__ctrl_match_body] = STATE(4862), + [sym_match_arm] = STATE(4491), + [sym_default_arm] = STATE(4491), + [sym_match_pattern] = STATE(5060), + [sym__match_pattern] = STATE(3839), + [sym__match_pattern_expression] = STATE(4159), + [sym__match_pattern_value] = STATE(4160), + [sym__match_pattern_list] = STATE(4161), + [sym__match_pattern_record] = STATE(4166), + [sym_expr_parenthesized] = STATE(3704), + [sym_val_range] = STATE(4160), + [sym__val_range] = STATE(5001), + [sym_val_nothing] = STATE(4166), + [sym_val_bool] = STATE(3970), + [sym_val_variable] = STATE(3705), + [sym_val_number] = STATE(4166), + [sym__val_number_decimal] = STATE(3469), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(4166), + [sym_val_filesize] = STATE(4166), + [sym_val_binary] = STATE(4166), + [sym_val_string] = STATE(4166), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_table] = STATE(4166), + [sym_unquoted] = STATE(4170), + [sym__unquoted_anonymous_prefix] = STATE(5001), + [sym_comment] = STATE(1158), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1359), + [anon_sym_true] = ACTIONS(2861), + [anon_sym_false] = ACTIONS(2861), + [anon_sym_null] = ACTIONS(2863), + [aux_sym_cmd_identifier_token3] = ACTIONS(2865), + [aux_sym_cmd_identifier_token4] = ACTIONS(2865), + [aux_sym_cmd_identifier_token5] = ACTIONS(2865), + [sym__newline] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym__] = ACTIONS(2877), + [anon_sym_DOT_DOT] = ACTIONS(2879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2881), + [anon_sym_DOT_DOT_LT] = ACTIONS(2881), + [aux_sym__val_number_decimal_token1] = ACTIONS(2883), + [aux_sym__val_number_decimal_token2] = ACTIONS(2885), + [aux_sym__val_number_decimal_token3] = ACTIONS(2887), + [aux_sym__val_number_decimal_token4] = ACTIONS(2887), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [STATE(1159)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1159), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1160)] = { + [sym_comment] = STATE(1160), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1149)] = { - [sym__ctrl_match_body] = STATE(4904), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), - [sym_comment] = STATE(1149), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), + [STATE(1161)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1161), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1162)] = { + [sym__ctrl_match_body] = STATE(4989), + [sym_match_arm] = STATE(4491), + [sym_default_arm] = STATE(4491), + [sym_match_pattern] = STATE(5060), + [sym__match_pattern] = STATE(3839), + [sym__match_pattern_expression] = STATE(4159), + [sym__match_pattern_value] = STATE(4160), + [sym__match_pattern_list] = STATE(4161), + [sym__match_pattern_record] = STATE(4166), + [sym_expr_parenthesized] = STATE(3704), + [sym_val_range] = STATE(4160), + [sym__val_range] = STATE(5001), + [sym_val_nothing] = STATE(4166), + [sym_val_bool] = STATE(3970), + [sym_val_variable] = STATE(3705), + [sym_val_number] = STATE(4166), + [sym__val_number_decimal] = STATE(3469), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(4166), + [sym_val_filesize] = STATE(4166), + [sym_val_binary] = STATE(4166), + [sym_val_string] = STATE(4166), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_table] = STATE(4166), + [sym_unquoted] = STATE(4170), + [sym__unquoted_anonymous_prefix] = STATE(5001), + [sym_comment] = STATE(1162), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1359), + [anon_sym_true] = ACTIONS(2861), + [anon_sym_false] = ACTIONS(2861), + [anon_sym_null] = ACTIONS(2863), + [aux_sym_cmd_identifier_token3] = ACTIONS(2865), + [aux_sym_cmd_identifier_token4] = ACTIONS(2865), + [aux_sym_cmd_identifier_token5] = ACTIONS(2865), + [sym__newline] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2895), + [anon_sym__] = ACTIONS(2877), + [anon_sym_DOT_DOT] = ACTIONS(2879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2881), + [anon_sym_DOT_DOT_LT] = ACTIONS(2881), + [aux_sym__val_number_decimal_token1] = ACTIONS(2883), + [aux_sym__val_number_decimal_token2] = ACTIONS(2885), + [aux_sym__val_number_decimal_token3] = ACTIONS(2887), + [aux_sym__val_number_decimal_token4] = ACTIONS(2887), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(1150)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1150), + [STATE(1163)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1163), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2897), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1164)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1164), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2897), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1165)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1165), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1166)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1166), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1167)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1167), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1168)] = { + [aux_sym__repeat_newline] = STATE(1155), + [sym_comment] = STATE(1168), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1169)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1169), + [anon_sym_in] = ACTIONS(2652), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2654), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2652), + [anon_sym_has2] = ACTIONS(2652), + [anon_sym_not_DASHhas2] = ACTIONS(2652), + [anon_sym_starts_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2652), + [anon_sym_ends_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2652), + [anon_sym_EQ_EQ2] = ACTIONS(2652), + [anon_sym_BANG_EQ2] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2654), + [anon_sym_LT_EQ2] = ACTIONS(2652), + [anon_sym_GT_EQ2] = ACTIONS(2652), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1170)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1170), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1171)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1171), [anon_sym_in] = ACTIONS(2732), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), @@ -131618,7 +133268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2732), [anon_sym_GT2] = ACTIONS(2734), [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2816), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), @@ -131638,11 +133288,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2732), [anon_sym_like2] = ACTIONS(2732), [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2734), - [anon_sym_mod2] = ACTIONS(2732), - [anon_sym_SLASH_SLASH2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), [anon_sym_PLUS2] = ACTIONS(2734), [anon_sym_bit_DASHshl2] = ACTIONS(2732), [anon_sym_bit_DASHshr2] = ACTIONS(2732), @@ -131667,142 +133317,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1151)] = { - [sym__ctrl_match_body] = STATE(4907), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), - [sym_comment] = STATE(1151), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [STATE(1172)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1172), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(1152)] = { - [aux_sym__repeat_newline] = STATE(1206), - [sym_comment] = STATE(1152), - [anon_sym_in] = ACTIONS(2851), + [STATE(1173)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1173), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1174)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1174), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1175)] = { + [aux_sym__repeat_newline] = STATE(1144), + [sym_comment] = STATE(1175), + [anon_sym_in] = ACTIONS(2780), [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1153)] = { - [sym_comment] = STATE(1153), + [STATE(1176)] = { + [sym_comment] = STATE(1176), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -131815,10 +133599,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), + [anon_sym_GT2] = ACTIONS(1604), [anon_sym_DASH2] = ACTIONS(1706), [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_STAR2] = ACTIONS(1604), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -131831,7 +133615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1604), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -131840,24 +133624,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_SLASH2] = ACTIONS(1604), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1604), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -131868,77 +133652,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1154)] = { - [aux_sym__repeat_newline] = STATE(1150), - [sym_comment] = STATE(1154), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2714), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2714), - [anon_sym_mod2] = ACTIONS(2712), - [anon_sym_SLASH_SLASH2] = ACTIONS(2712), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1177)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1177), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2666), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2668), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1155)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1155), - [anon_sym_in] = ACTIONS(2788), + [STATE(1178)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1178), + [anon_sym_in] = ACTIONS(2810), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -131951,39 +133735,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), [anon_sym_err_GT] = ACTIONS(2734), [anon_sym_out_GT] = ACTIONS(2734), [anon_sym_e_GT] = ACTIONS(2734), @@ -132002,278 +133786,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1156)] = { - [aux_sym__repeat_newline] = STATE(1213), - [sym_comment] = STATE(1156), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1179)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1179), + [anon_sym_in] = ACTIONS(2652), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2654), + [anon_sym_DASH2] = ACTIONS(2652), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2652), + [anon_sym_has2] = ACTIONS(2652), + [anon_sym_not_DASHhas2] = ACTIONS(2652), + [anon_sym_starts_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2652), + [anon_sym_ends_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2652), + [anon_sym_EQ_EQ2] = ACTIONS(2652), + [anon_sym_BANG_EQ2] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2654), + [anon_sym_LT_EQ2] = ACTIONS(2652), + [anon_sym_GT_EQ2] = ACTIONS(2652), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2654), + [anon_sym_bit_DASHshl2] = ACTIONS(2652), + [anon_sym_bit_DASHshr2] = ACTIONS(2652), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1157)] = { - [aux_sym__repeat_newline] = STATE(1208), - [sym_comment] = STATE(1157), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [STATE(1180)] = { + [aux_sym__repeat_newline] = STATE(1157), + [sym_comment] = STATE(1180), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1158)] = { - [aux_sym__repeat_newline] = STATE(1214), - [sym_comment] = STATE(1158), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [STATE(1181)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1181), + [anon_sym_in] = ACTIONS(2652), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2654), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2652), + [anon_sym_has2] = ACTIONS(2652), + [anon_sym_not_DASHhas2] = ACTIONS(2652), + [anon_sym_starts_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2652), + [anon_sym_ends_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2652), + [anon_sym_EQ_EQ2] = ACTIONS(2652), + [anon_sym_BANG_EQ2] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2654), + [anon_sym_LT_EQ2] = ACTIONS(2652), + [anon_sym_GT_EQ2] = ACTIONS(2652), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2652), + [anon_sym_bit_DASHshr2] = ACTIONS(2652), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1159)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1159), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [STATE(1182)] = { + [aux_sym__repeat_newline] = STATE(1164), + [sym_comment] = STATE(1182), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2905), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1160)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1160), - [anon_sym_in] = ACTIONS(2788), + [STATE(1183)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1183), + [anon_sym_in] = ACTIONS(2732), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -132286,39 +134070,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), + [anon_sym_GT2] = ACTIONS(2734), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_not_DASHin2] = ACTIONS(2732), + [anon_sym_has2] = ACTIONS(2732), + [anon_sym_not_DASHhas2] = ACTIONS(2732), + [anon_sym_starts_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), + [anon_sym_ends_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), + [anon_sym_EQ_EQ2] = ACTIONS(2732), + [anon_sym_BANG_EQ2] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2734), + [anon_sym_LT_EQ2] = ACTIONS(2732), + [anon_sym_GT_EQ2] = ACTIONS(2732), + [anon_sym_EQ_TILDE2] = ACTIONS(2732), + [anon_sym_BANG_TILDE2] = ACTIONS(2732), + [anon_sym_like2] = ACTIONS(2732), + [anon_sym_not_DASHlike2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), [anon_sym_err_GT] = ACTIONS(2734), [anon_sym_out_GT] = ACTIONS(2734), [anon_sym_e_GT] = ACTIONS(2734), @@ -132337,278 +134121,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1161)] = { - [aux_sym__repeat_newline] = STATE(1155), - [sym_comment] = STATE(1161), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1184)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1184), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2666), + [anon_sym_STAR2] = ACTIONS(2668), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2668), + [anon_sym_mod2] = ACTIONS(2666), + [anon_sym_SLASH_SLASH2] = ACTIONS(2666), + [anon_sym_PLUS2] = ACTIONS(2668), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1162)] = { - [aux_sym__repeat_newline] = STATE(1210), - [sym_comment] = STATE(1162), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [STATE(1185)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1185), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1163)] = { - [sym_comment] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1164)] = { - [aux_sym__repeat_newline] = STATE(1160), - [sym_comment] = STATE(1164), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1186)] = { + [aux_sym__repeat_newline] = STATE(1159), + [sym_comment] = STATE(1186), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1165)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1165), - [anon_sym_in] = ACTIONS(2788), + [STATE(1187)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1187), + [anon_sym_in] = ACTIONS(2810), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -132621,39 +134338,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2897), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), [anon_sym_err_GT] = ACTIONS(2734), [anon_sym_out_GT] = ACTIONS(2734), [anon_sym_e_GT] = ACTIONS(2734), @@ -132672,278 +134389,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1166)] = { - [sym_comment] = STATE(1166), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_err_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_GT_PIPE] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_err_GT] = ACTIONS(2278), - [anon_sym_out_GT] = ACTIONS(2278), - [anon_sym_e_GT] = ACTIONS(2278), - [anon_sym_o_GT] = ACTIONS(2278), - [anon_sym_err_PLUSout_GT] = ACTIONS(2278), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), - [anon_sym_o_PLUSe_GT] = ACTIONS(2278), - [anon_sym_e_PLUSo_GT] = ACTIONS(2278), - [anon_sym_err_GT_GT] = ACTIONS(2276), - [anon_sym_out_GT_GT] = ACTIONS(2276), - [anon_sym_e_GT_GT] = ACTIONS(2276), - [anon_sym_o_GT_GT] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1167)] = { - [aux_sym__repeat_newline] = STATE(1212), - [sym_comment] = STATE(1167), - [anon_sym_in] = ACTIONS(2851), + [STATE(1188)] = { + [aux_sym__repeat_newline] = STATE(1167), + [sym_comment] = STATE(1188), + [anon_sym_in] = ACTIONS(2780), [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1168)] = { - [aux_sym__repeat_newline] = STATE(1219), - [sym_comment] = STATE(1168), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2704), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2704), - [anon_sym_mod2] = ACTIONS(2702), - [anon_sym_SLASH_SLASH2] = ACTIONS(2702), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1169)] = { - [sym_comment] = STATE(1169), - [ts_builtin_sym_end] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(2128), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_GT2] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_STAR2] = ACTIONS(2130), - [anon_sym_and2] = ACTIONS(2128), - [anon_sym_xor2] = ACTIONS(2128), - [anon_sym_or2] = ACTIONS(2128), - [anon_sym_not_DASHin2] = ACTIONS(2128), - [anon_sym_has2] = ACTIONS(2128), - [anon_sym_not_DASHhas2] = ACTIONS(2128), - [anon_sym_starts_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2128), - [anon_sym_ends_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2128), - [anon_sym_EQ_EQ2] = ACTIONS(2128), - [anon_sym_BANG_EQ2] = ACTIONS(2128), - [anon_sym_LT2] = ACTIONS(2130), - [anon_sym_LT_EQ2] = ACTIONS(2128), - [anon_sym_GT_EQ2] = ACTIONS(2128), - [anon_sym_EQ_TILDE2] = ACTIONS(2128), - [anon_sym_BANG_TILDE2] = ACTIONS(2128), - [anon_sym_like2] = ACTIONS(2128), - [anon_sym_not_DASHlike2] = ACTIONS(2128), - [anon_sym_STAR_STAR2] = ACTIONS(2128), - [anon_sym_PLUS_PLUS2] = ACTIONS(2128), - [anon_sym_SLASH2] = ACTIONS(2130), - [anon_sym_mod2] = ACTIONS(2128), - [anon_sym_SLASH_SLASH2] = ACTIONS(2128), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_bit_DASHshl2] = ACTIONS(2128), - [anon_sym_bit_DASHshr2] = ACTIONS(2128), - [anon_sym_bit_DASHand2] = ACTIONS(2128), - [anon_sym_bit_DASHxor2] = ACTIONS(2128), - [anon_sym_bit_DASHor2] = ACTIONS(2128), - [anon_sym_LBRACK2] = ACTIONS(2920), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), + [STATE(1189)] = { + [aux_sym__repeat_newline] = STATE(1133), + [sym_comment] = STATE(1189), + [anon_sym_in] = ACTIONS(2726), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2728), + [anon_sym_DASH2] = ACTIONS(2726), + [anon_sym_STAR2] = ACTIONS(2728), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2726), + [anon_sym_has2] = ACTIONS(2726), + [anon_sym_not_DASHhas2] = ACTIONS(2726), + [anon_sym_starts_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), + [anon_sym_ends_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), + [anon_sym_EQ_EQ2] = ACTIONS(2726), + [anon_sym_BANG_EQ2] = ACTIONS(2726), + [anon_sym_LT2] = ACTIONS(2728), + [anon_sym_LT_EQ2] = ACTIONS(2726), + [anon_sym_GT_EQ2] = ACTIONS(2726), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2728), + [anon_sym_mod2] = ACTIONS(2726), + [anon_sym_SLASH_SLASH2] = ACTIONS(2726), + [anon_sym_PLUS2] = ACTIONS(2728), + [anon_sym_bit_DASHshl2] = ACTIONS(2726), + [anon_sym_bit_DASHshr2] = ACTIONS(2726), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1170)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1170), - [anon_sym_in] = ACTIONS(2788), + [STATE(1190)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1190), + [anon_sym_in] = ACTIONS(2810), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -132956,36 +134539,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), [anon_sym_EQ_TILDE2] = ACTIONS(2732), [anon_sym_BANG_TILDE2] = ACTIONS(2732), [anon_sym_like2] = ACTIONS(2732), [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), [anon_sym_bit_DASHand2] = ACTIONS(2732), [anon_sym_bit_DASHxor2] = ACTIONS(2732), [anon_sym_bit_DASHor2] = ACTIONS(2732), @@ -133007,545 +134590,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1171)] = { - [aux_sym__repeat_newline] = STATE(1165), - [sym_comment] = STATE(1171), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1191)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1191), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1172)] = { - [sym_comment] = STATE(1172), - [ts_builtin_sym_end] = ACTIONS(2635), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1173)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1173), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2708), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2708), - [anon_sym_mod2] = ACTIONS(2706), - [anon_sym_SLASH_SLASH2] = ACTIONS(2706), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [STATE(1192)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1192), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1174)] = { - [aux_sym__repeat_newline] = STATE(1170), - [sym_comment] = STATE(1174), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), + [STATE(1193)] = { + [sym_comment] = STATE(1193), + [aux_sym_cmd_identifier_token2] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2387), + [sym__newline] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_err_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_GT_PIPE] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2385), + [anon_sym_GT2] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_STAR2] = ACTIONS(2387), + [anon_sym_and2] = ACTIONS(2387), + [anon_sym_xor2] = ACTIONS(2387), + [anon_sym_or2] = ACTIONS(2387), + [anon_sym_not_DASHin2] = ACTIONS(2387), + [anon_sym_has2] = ACTIONS(2387), + [anon_sym_not_DASHhas2] = ACTIONS(2387), + [anon_sym_starts_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2387), + [anon_sym_ends_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2387), + [anon_sym_EQ_EQ2] = ACTIONS(2385), + [anon_sym_BANG_EQ2] = ACTIONS(2385), + [anon_sym_LT2] = ACTIONS(2387), + [anon_sym_LT_EQ2] = ACTIONS(2385), + [anon_sym_GT_EQ2] = ACTIONS(2385), + [anon_sym_EQ_TILDE2] = ACTIONS(2385), + [anon_sym_BANG_TILDE2] = ACTIONS(2387), + [anon_sym_like2] = ACTIONS(2387), + [anon_sym_not_DASHlike2] = ACTIONS(2387), + [anon_sym_STAR_STAR2] = ACTIONS(2387), + [anon_sym_PLUS_PLUS2] = ACTIONS(2387), + [anon_sym_SLASH2] = ACTIONS(2387), + [anon_sym_mod2] = ACTIONS(2387), + [anon_sym_SLASH_SLASH2] = ACTIONS(2387), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_bit_DASHshl2] = ACTIONS(2387), + [anon_sym_bit_DASHshr2] = ACTIONS(2387), + [anon_sym_bit_DASHand2] = ACTIONS(2387), + [anon_sym_bit_DASHxor2] = ACTIONS(2387), + [anon_sym_bit_DASHor2] = ACTIONS(2387), + [anon_sym_err_GT] = ACTIONS(2387), + [anon_sym_out_GT] = ACTIONS(2387), + [anon_sym_e_GT] = ACTIONS(2387), + [anon_sym_o_GT] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT] = ACTIONS(2387), + [anon_sym_err_GT_GT] = ACTIONS(2385), + [anon_sym_out_GT_GT] = ACTIONS(2385), + [anon_sym_e_GT_GT] = ACTIONS(2385), + [anon_sym_o_GT_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(1175)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1175), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), + [STATE(1194)] = { + [sym_comment] = STATE(1194), + [aux_sym_cmd_identifier_token2] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2593), + [sym__newline] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_err_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_GT_PIPE] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), + [anon_sym_GT2] = ACTIONS(2593), + [anon_sym_DASH2] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_STAR2] = ACTIONS(2593), + [anon_sym_and2] = ACTIONS(2593), + [anon_sym_xor2] = ACTIONS(2593), + [anon_sym_or2] = ACTIONS(2593), + [anon_sym_not_DASHin2] = ACTIONS(2593), + [anon_sym_has2] = ACTIONS(2593), + [anon_sym_not_DASHhas2] = ACTIONS(2593), + [anon_sym_starts_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2593), + [anon_sym_ends_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2593), + [anon_sym_EQ_EQ2] = ACTIONS(2591), + [anon_sym_BANG_EQ2] = ACTIONS(2591), + [anon_sym_LT2] = ACTIONS(2593), + [anon_sym_LT_EQ2] = ACTIONS(2591), + [anon_sym_GT_EQ2] = ACTIONS(2591), + [anon_sym_EQ_TILDE2] = ACTIONS(2591), + [anon_sym_BANG_TILDE2] = ACTIONS(2593), + [anon_sym_like2] = ACTIONS(2593), + [anon_sym_not_DASHlike2] = ACTIONS(2593), + [anon_sym_STAR_STAR2] = ACTIONS(2593), + [anon_sym_PLUS_PLUS2] = ACTIONS(2593), + [anon_sym_SLASH2] = ACTIONS(2593), + [anon_sym_mod2] = ACTIONS(2593), + [anon_sym_SLASH_SLASH2] = ACTIONS(2593), + [anon_sym_PLUS2] = ACTIONS(2593), + [anon_sym_bit_DASHshl2] = ACTIONS(2593), + [anon_sym_bit_DASHshr2] = ACTIONS(2593), + [anon_sym_bit_DASHand2] = ACTIONS(2593), + [anon_sym_bit_DASHxor2] = ACTIONS(2593), + [anon_sym_bit_DASHor2] = ACTIONS(2593), + [anon_sym_err_GT] = ACTIONS(2593), + [anon_sym_out_GT] = ACTIONS(2593), + [anon_sym_e_GT] = ACTIONS(2593), + [anon_sym_o_GT] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT] = ACTIONS(2593), + [anon_sym_err_GT_GT] = ACTIONS(2591), + [anon_sym_out_GT_GT] = ACTIONS(2591), + [anon_sym_e_GT_GT] = ACTIONS(2591), + [anon_sym_o_GT_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(1176)] = { - [aux_sym__repeat_newline] = STATE(1243), - [sym_comment] = STATE(1176), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [STATE(1195)] = { + [aux_sym__repeat_newline] = STATE(1161), + [sym_comment] = STATE(1195), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1177)] = { - [aux_sym__repeat_newline] = STATE(1216), - [sym_comment] = STATE(1177), - [anon_sym_in] = ACTIONS(2728), + [STATE(1196)] = { + [aux_sym__repeat_newline] = STATE(1181), + [sym_comment] = STATE(1196), + [anon_sym_in] = ACTIONS(2726), [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2728), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2726), + [anon_sym_has2] = ACTIONS(2726), + [anon_sym_not_DASHhas2] = ACTIONS(2726), + [anon_sym_starts_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), + [anon_sym_ends_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), + [anon_sym_EQ_EQ2] = ACTIONS(2726), + [anon_sym_BANG_EQ2] = ACTIONS(2726), + [anon_sym_LT2] = ACTIONS(2728), + [anon_sym_LT_EQ2] = ACTIONS(2726), + [anon_sym_GT_EQ2] = ACTIONS(2726), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2726), + [anon_sym_bit_DASHshr2] = ACTIONS(2726), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1178)] = { - [aux_sym__repeat_newline] = STATE(1238), - [sym_comment] = STATE(1178), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1197)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1197), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1179)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1179), + [STATE(1198)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1198), [anon_sym_in] = ACTIONS(2732), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), @@ -133560,8 +135076,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), @@ -133581,12 +135097,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2732), [anon_sym_like2] = ACTIONS(2732), [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), [anon_sym_bit_DASHshl2] = ACTIONS(2732), [anon_sym_bit_DASHshr2] = ACTIONS(2732), [anon_sym_bit_DASHand2] = ACTIONS(2732), @@ -133610,278 +135126,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1180)] = { - [aux_sym__repeat_newline] = STATE(1224), - [sym_comment] = STATE(1180), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1181)] = { - [aux_sym__repeat_newline] = STATE(1218), - [sym_comment] = STATE(1181), - [anon_sym_in] = ACTIONS(2851), + [STATE(1199)] = { + [aux_sym__repeat_newline] = STATE(1185), + [sym_comment] = STATE(1199), + [anon_sym_in] = ACTIONS(2780), [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1182)] = { - [aux_sym__repeat_newline] = STATE(1244), - [sym_comment] = STATE(1182), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1183)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1183), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [STATE(1200)] = { + [aux_sym__repeat_newline] = STATE(1163), + [sym_comment] = STATE(1200), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2905), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1184)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1184), - [anon_sym_in] = ACTIONS(2788), + [STATE(1201)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1201), + [anon_sym_in] = ACTIONS(2810), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -133894,36 +135276,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), [anon_sym_bit_DASHand2] = ACTIONS(2732), [anon_sym_bit_DASHxor2] = ACTIONS(2732), [anon_sym_bit_DASHor2] = ACTIONS(2732), @@ -133945,278 +135327,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1185)] = { - [aux_sym__repeat_newline] = STATE(1179), - [sym_comment] = STATE(1185), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1186)] = { - [aux_sym__repeat_newline] = STATE(1227), - [sym_comment] = STATE(1186), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1187)] = { - [aux_sym__repeat_newline] = STATE(1209), - [sym_comment] = STATE(1187), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1188)] = { - [aux_sym__repeat_newline] = STATE(1246), - [sym_comment] = STATE(1188), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), + [STATE(1202)] = { + [sym__expression] = STATE(4794), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1202), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1189)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1189), - [anon_sym_in] = ACTIONS(2788), + [STATE(1203)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1203), + [anon_sym_in] = ACTIONS(2810), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -134229,37 +135410,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), [anon_sym_bit_DASHxor2] = ACTIONS(2732), [anon_sym_bit_DASHor2] = ACTIONS(2732), [anon_sym_err_GT] = ACTIONS(2734), @@ -134280,278 +135461,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1190)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1190), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [STATE(1204)] = { + [sym_comment] = STATE(1204), + [anon_sym_in] = ACTIONS(2374), + [sym__newline] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_err_GT_PIPE] = ACTIONS(2379), + [anon_sym_out_GT_PIPE] = ACTIONS(2379), + [anon_sym_e_GT_PIPE] = ACTIONS(2379), + [anon_sym_o_GT_PIPE] = ACTIONS(2379), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2379), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2379), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2379), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_GT2] = ACTIONS(2381), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_STAR2] = ACTIONS(2381), + [anon_sym_and2] = ACTIONS(2374), + [anon_sym_xor2] = ACTIONS(2374), + [anon_sym_or2] = ACTIONS(2374), + [anon_sym_not_DASHin2] = ACTIONS(2374), + [anon_sym_has2] = ACTIONS(2374), + [anon_sym_not_DASHhas2] = ACTIONS(2374), + [anon_sym_starts_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2374), + [anon_sym_ends_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2374), + [anon_sym_EQ_EQ2] = ACTIONS(2374), + [anon_sym_BANG_EQ2] = ACTIONS(2374), + [anon_sym_LT2] = ACTIONS(2381), + [anon_sym_LT_EQ2] = ACTIONS(2374), + [anon_sym_GT_EQ2] = ACTIONS(2374), + [anon_sym_EQ_TILDE2] = ACTIONS(2374), + [anon_sym_BANG_TILDE2] = ACTIONS(2374), + [anon_sym_like2] = ACTIONS(2374), + [anon_sym_not_DASHlike2] = ACTIONS(2374), + [anon_sym_STAR_STAR2] = ACTIONS(2374), + [anon_sym_PLUS_PLUS2] = ACTIONS(2374), + [anon_sym_SLASH2] = ACTIONS(2381), + [anon_sym_mod2] = ACTIONS(2374), + [anon_sym_SLASH_SLASH2] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2381), + [anon_sym_bit_DASHshl2] = ACTIONS(2374), + [anon_sym_bit_DASHshr2] = ACTIONS(2374), + [anon_sym_bit_DASHand2] = ACTIONS(2374), + [anon_sym_bit_DASHxor2] = ACTIONS(2374), + [anon_sym_bit_DASHor2] = ACTIONS(2374), + [anon_sym_err_GT] = ACTIONS(2383), + [anon_sym_out_GT] = ACTIONS(2383), + [anon_sym_e_GT] = ACTIONS(2383), + [anon_sym_o_GT] = ACTIONS(2383), + [anon_sym_err_PLUSout_GT] = ACTIONS(2383), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2383), + [anon_sym_o_PLUSe_GT] = ACTIONS(2383), + [anon_sym_e_PLUSo_GT] = ACTIONS(2383), + [anon_sym_err_GT_GT] = ACTIONS(2379), + [anon_sym_out_GT_GT] = ACTIONS(2379), + [anon_sym_e_GT_GT] = ACTIONS(2379), + [anon_sym_o_GT_GT] = ACTIONS(2379), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2379), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2379), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2379), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2379), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1191)] = { - [aux_sym__repeat_newline] = STATE(1229), - [sym_comment] = STATE(1191), - [anon_sym_in] = ACTIONS(2851), + [STATE(1205)] = { + [aux_sym__repeat_newline] = STATE(1206), + [sym_comment] = STATE(1205), + [anon_sym_in] = ACTIONS(2780), [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1192)] = { - [aux_sym__repeat_newline] = STATE(1184), - [sym_comment] = STATE(1192), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1206)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1206), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1193)] = { - [aux_sym__repeat_newline] = STATE(1215), - [sym_comment] = STATE(1193), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), + [STATE(1207)] = { + [sym__expression] = STATE(4767), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1207), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1194)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1194), - [anon_sym_in] = ACTIONS(2788), + [STATE(1208)] = { + [sym_comment] = STATE(1208), + [ts_builtin_sym_end] = ACTIONS(2385), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_in] = ACTIONS(2387), + [sym__newline] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_err_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_GT_PIPE] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2385), + [anon_sym_GT2] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2387), + [anon_sym_STAR2] = ACTIONS(2387), + [anon_sym_and2] = ACTIONS(2387), + [anon_sym_xor2] = ACTIONS(2387), + [anon_sym_or2] = ACTIONS(2387), + [anon_sym_not_DASHin2] = ACTIONS(2387), + [anon_sym_has2] = ACTIONS(2387), + [anon_sym_not_DASHhas2] = ACTIONS(2387), + [anon_sym_starts_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2387), + [anon_sym_ends_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2387), + [anon_sym_EQ_EQ2] = ACTIONS(2385), + [anon_sym_BANG_EQ2] = ACTIONS(2385), + [anon_sym_LT2] = ACTIONS(2387), + [anon_sym_LT_EQ2] = ACTIONS(2385), + [anon_sym_GT_EQ2] = ACTIONS(2385), + [anon_sym_EQ_TILDE2] = ACTIONS(2385), + [anon_sym_BANG_TILDE2] = ACTIONS(2387), + [anon_sym_like2] = ACTIONS(2387), + [anon_sym_not_DASHlike2] = ACTIONS(2387), + [anon_sym_STAR_STAR2] = ACTIONS(2387), + [anon_sym_PLUS_PLUS2] = ACTIONS(2387), + [anon_sym_SLASH2] = ACTIONS(2387), + [anon_sym_mod2] = ACTIONS(2387), + [anon_sym_SLASH_SLASH2] = ACTIONS(2387), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_bit_DASHshl2] = ACTIONS(2387), + [anon_sym_bit_DASHshr2] = ACTIONS(2387), + [anon_sym_bit_DASHand2] = ACTIONS(2387), + [anon_sym_bit_DASHxor2] = ACTIONS(2387), + [anon_sym_bit_DASHor2] = ACTIONS(2387), + [anon_sym_err_GT] = ACTIONS(2387), + [anon_sym_out_GT] = ACTIONS(2387), + [anon_sym_e_GT] = ACTIONS(2387), + [anon_sym_o_GT] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT] = ACTIONS(2387), + [anon_sym_err_GT_GT] = ACTIONS(2385), + [anon_sym_out_GT_GT] = ACTIONS(2385), + [anon_sym_e_GT_GT] = ACTIONS(2385), + [anon_sym_o_GT_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1209)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1209), + [anon_sym_in] = ACTIONS(2810), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -134564,38 +135812,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), [anon_sym_bit_DASHor2] = ACTIONS(2732), [anon_sym_err_GT] = ACTIONS(2734), [anon_sym_out_GT] = ACTIONS(2734), @@ -134615,2524 +135863,1452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1195)] = { - [aux_sym__repeat_newline] = STATE(1189), - [sym_comment] = STATE(1195), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1196)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1196), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1197)] = { - [aux_sym__repeat_newline] = STATE(1228), - [sym_comment] = STATE(1197), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1198)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1198), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1199)] = { - [aux_sym__repeat_newline] = STATE(1194), - [sym_comment] = STATE(1199), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1200)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1200), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1201)] = { - [aux_sym__repeat_newline] = STATE(1248), - [sym_comment] = STATE(1201), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1202)] = { - [sym_comment] = STATE(1202), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_err_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_GT_PIPE] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_err_GT] = ACTIONS(2289), - [anon_sym_out_GT] = ACTIONS(2289), - [anon_sym_e_GT] = ACTIONS(2289), - [anon_sym_o_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT] = ACTIONS(2289), - [anon_sym_err_GT_GT] = ACTIONS(2287), - [anon_sym_out_GT_GT] = ACTIONS(2287), - [anon_sym_e_GT_GT] = ACTIONS(2287), - [anon_sym_o_GT_GT] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1203)] = { - [sym_comment] = STATE(1203), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2535), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2535), - [anon_sym_mod2] = ACTIONS(2533), - [anon_sym_SLASH_SLASH2] = ACTIONS(2533), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1204)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1204), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2742), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2742), - [anon_sym_mod2] = ACTIONS(2740), - [anon_sym_SLASH_SLASH2] = ACTIONS(2740), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1205)] = { - [sym_comment] = STATE(1205), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1206)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1206), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1207)] = { - [sym_comment] = STATE(1207), - [ts_builtin_sym_end] = ACTIONS(968), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1208)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1208), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1209)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1209), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1210)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1135), [sym_comment] = STATE(1210), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1211)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1211), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1212)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1212), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [ts_builtin_sym_end] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2166), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2168), + [anon_sym_DASH2] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2168), + [anon_sym_and2] = ACTIONS(2166), + [anon_sym_xor2] = ACTIONS(2166), + [anon_sym_or2] = ACTIONS(2166), + [anon_sym_not_DASHin2] = ACTIONS(2166), + [anon_sym_has2] = ACTIONS(2166), + [anon_sym_not_DASHhas2] = ACTIONS(2166), + [anon_sym_starts_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), + [anon_sym_ends_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), + [anon_sym_EQ_EQ2] = ACTIONS(2166), + [anon_sym_BANG_EQ2] = ACTIONS(2166), + [anon_sym_LT2] = ACTIONS(2168), + [anon_sym_LT_EQ2] = ACTIONS(2166), + [anon_sym_GT_EQ2] = ACTIONS(2166), + [anon_sym_EQ_TILDE2] = ACTIONS(2166), + [anon_sym_BANG_TILDE2] = ACTIONS(2166), + [anon_sym_like2] = ACTIONS(2166), + [anon_sym_not_DASHlike2] = ACTIONS(2166), + [anon_sym_STAR_STAR2] = ACTIONS(2166), + [anon_sym_PLUS_PLUS2] = ACTIONS(2166), + [anon_sym_SLASH2] = ACTIONS(2168), + [anon_sym_mod2] = ACTIONS(2166), + [anon_sym_SLASH_SLASH2] = ACTIONS(2166), + [anon_sym_PLUS2] = ACTIONS(2168), + [anon_sym_bit_DASHshl2] = ACTIONS(2166), + [anon_sym_bit_DASHshr2] = ACTIONS(2166), + [anon_sym_bit_DASHand2] = ACTIONS(2166), + [anon_sym_bit_DASHxor2] = ACTIONS(2166), + [anon_sym_bit_DASHor2] = ACTIONS(2166), + [anon_sym_LBRACK2] = ACTIONS(2923), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1213)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1165), [sym_comment] = STATE(1213), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1214)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1214), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2897), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1215)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1215), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1216)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1166), [sym_comment] = STATE(1216), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1217)] = { - [aux_sym__repeat_newline] = STATE(1132), [sym_comment] = STATE(1217), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2511), + [anon_sym_bit_DASHshl2] = ACTIONS(2509), + [anon_sym_bit_DASHshr2] = ACTIONS(2509), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1218)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1177), [sym_comment] = STATE(1218), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2772), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2774), + [anon_sym_bit_DASHshl2] = ACTIONS(2772), + [anon_sym_bit_DASHshr2] = ACTIONS(2772), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1219)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1219), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2722), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2722), - [anon_sym_mod2] = ACTIONS(2720), - [anon_sym_SLASH_SLASH2] = ACTIONS(2720), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2732), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2734), + [anon_sym_DASH2] = ACTIONS(2732), + [anon_sym_STAR2] = ACTIONS(2734), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2732), + [anon_sym_has2] = ACTIONS(2732), + [anon_sym_not_DASHhas2] = ACTIONS(2732), + [anon_sym_starts_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), + [anon_sym_ends_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), + [anon_sym_EQ_EQ2] = ACTIONS(2732), + [anon_sym_BANG_EQ2] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2734), + [anon_sym_LT_EQ2] = ACTIONS(2732), + [anon_sym_GT_EQ2] = ACTIONS(2732), + [anon_sym_EQ_TILDE2] = ACTIONS(2732), + [anon_sym_BANG_TILDE2] = ACTIONS(2732), + [anon_sym_like2] = ACTIONS(2732), + [anon_sym_not_DASHlike2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2734), + [anon_sym_mod2] = ACTIONS(2732), + [anon_sym_SLASH_SLASH2] = ACTIONS(2732), + [anon_sym_PLUS2] = ACTIONS(2734), + [anon_sym_bit_DASHshl2] = ACTIONS(2732), + [anon_sym_bit_DASHshr2] = ACTIONS(2732), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1220)] = { + [aux_sym__repeat_newline] = STATE(1184), [sym_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(2092), - [anon_sym_in] = ACTIONS(2092), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_GT2] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2092), - [anon_sym_STAR2] = ACTIONS(2094), - [anon_sym_and2] = ACTIONS(2092), - [anon_sym_xor2] = ACTIONS(2092), - [anon_sym_or2] = ACTIONS(2092), - [anon_sym_not_DASHin2] = ACTIONS(2092), - [anon_sym_has2] = ACTIONS(2092), - [anon_sym_not_DASHhas2] = ACTIONS(2092), - [anon_sym_starts_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2092), - [anon_sym_ends_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2092), - [anon_sym_EQ_EQ2] = ACTIONS(2092), - [anon_sym_BANG_EQ2] = ACTIONS(2092), - [anon_sym_LT2] = ACTIONS(2094), - [anon_sym_LT_EQ2] = ACTIONS(2092), - [anon_sym_GT_EQ2] = ACTIONS(2092), - [anon_sym_EQ_TILDE2] = ACTIONS(2092), - [anon_sym_BANG_TILDE2] = ACTIONS(2092), - [anon_sym_like2] = ACTIONS(2092), - [anon_sym_not_DASHlike2] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2772), + [anon_sym_STAR2] = ACTIONS(2774), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2774), + [anon_sym_mod2] = ACTIONS(2772), + [anon_sym_SLASH_SLASH2] = ACTIONS(2772), + [anon_sym_PLUS2] = ACTIONS(2774), + [anon_sym_bit_DASHshl2] = ACTIONS(2772), + [anon_sym_bit_DASHshr2] = ACTIONS(2772), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1221)] = { - [aux_sym__repeat_newline] = STATE(1159), [sym_comment] = STATE(1221), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1222)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1222), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1223)] = { - [sym_comment] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(2084), - [anon_sym_in] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_has2] = ACTIONS(2084), - [anon_sym_not_DASHhas2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_like2] = ACTIONS(2084), - [anon_sym_not_DASHlike2] = ACTIONS(2084), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1224)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1224), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2511), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2511), + [anon_sym_mod2] = ACTIONS(2509), + [anon_sym_SLASH_SLASH2] = ACTIONS(2509), + [anon_sym_PLUS2] = ACTIONS(2511), + [anon_sym_bit_DASHshl2] = ACTIONS(2509), + [anon_sym_bit_DASHshr2] = ACTIONS(2509), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1225)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1225), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [STATE(1222)] = { + [aux_sym__repeat_newline] = STATE(1192), + [sym_comment] = STATE(1222), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1223)] = { + [sym_comment] = STATE(1223), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2927), + [anon_sym_BANG_TILDE2] = ACTIONS(2927), + [anon_sym_like2] = ACTIONS(2927), + [anon_sym_not_DASHlike2] = ACTIONS(2927), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2929), + [anon_sym_bit_DASHxor2] = ACTIONS(2931), + [anon_sym_bit_DASHor2] = ACTIONS(2933), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1224)] = { + [aux_sym__repeat_newline] = STATE(1197), + [sym_comment] = STATE(1224), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1225)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1225), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1226)] = { - [aux_sym__repeat_newline] = STATE(1183), + [aux_sym__repeat_newline] = STATE(1214), [sym_comment] = STATE(1226), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2905), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1227)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1225), [sym_comment] = STATE(1227), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1228)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1228), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2935), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2927), + [anon_sym_BANG_TILDE2] = ACTIONS(2927), + [anon_sym_like2] = ACTIONS(2927), + [anon_sym_not_DASHlike2] = ACTIONS(2927), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2929), + [anon_sym_bit_DASHxor2] = ACTIONS(2931), + [anon_sym_bit_DASHor2] = ACTIONS(2933), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1229)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1229), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2374), + [sym__newline] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_err_GT_PIPE] = ACTIONS(2374), + [anon_sym_out_GT_PIPE] = ACTIONS(2374), + [anon_sym_e_GT_PIPE] = ACTIONS(2374), + [anon_sym_o_GT_PIPE] = ACTIONS(2374), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2374), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2374), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2374), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2374), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_GT2] = ACTIONS(2381), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_STAR2] = ACTIONS(2381), + [anon_sym_and2] = ACTIONS(2374), + [anon_sym_xor2] = ACTIONS(2374), + [anon_sym_or2] = ACTIONS(2374), + [anon_sym_not_DASHin2] = ACTIONS(2374), + [anon_sym_has2] = ACTIONS(2374), + [anon_sym_not_DASHhas2] = ACTIONS(2374), + [anon_sym_starts_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2374), + [anon_sym_ends_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2374), + [anon_sym_EQ_EQ2] = ACTIONS(2374), + [anon_sym_BANG_EQ2] = ACTIONS(2374), + [anon_sym_LT2] = ACTIONS(2381), + [anon_sym_LT_EQ2] = ACTIONS(2374), + [anon_sym_GT_EQ2] = ACTIONS(2374), + [anon_sym_EQ_TILDE2] = ACTIONS(2374), + [anon_sym_BANG_TILDE2] = ACTIONS(2374), + [anon_sym_like2] = ACTIONS(2374), + [anon_sym_not_DASHlike2] = ACTIONS(2374), + [anon_sym_STAR_STAR2] = ACTIONS(2374), + [anon_sym_PLUS_PLUS2] = ACTIONS(2374), + [anon_sym_SLASH2] = ACTIONS(2381), + [anon_sym_mod2] = ACTIONS(2374), + [anon_sym_SLASH_SLASH2] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2381), + [anon_sym_bit_DASHshl2] = ACTIONS(2374), + [anon_sym_bit_DASHshr2] = ACTIONS(2374), + [anon_sym_bit_DASHand2] = ACTIONS(2374), + [anon_sym_bit_DASHxor2] = ACTIONS(2374), + [anon_sym_bit_DASHor2] = ACTIONS(2374), + [anon_sym_err_GT] = ACTIONS(2381), + [anon_sym_out_GT] = ACTIONS(2381), + [anon_sym_e_GT] = ACTIONS(2381), + [anon_sym_o_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT] = ACTIONS(2381), + [anon_sym_err_GT_GT] = ACTIONS(2374), + [anon_sym_out_GT_GT] = ACTIONS(2374), + [anon_sym_e_GT_GT] = ACTIONS(2374), + [anon_sym_o_GT_GT] = ACTIONS(2374), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2374), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2374), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2374), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2374), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1230)] = { - [sym__expression] = STATE(4724), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(1243), [sym_comment] = STATE(1230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = 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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1231)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expression] = STATE(4761), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), [sym_comment] = STATE(1231), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1232)] = { - [sym__expression] = STATE(4726), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1232), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -137142,17 +137318,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2573), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -137161,1720 +137337,1854 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(1232)] = { + [aux_sym__repeat_newline] = STATE(1253), + [sym_comment] = STATE(1232), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2772), + [anon_sym_bit_DASHshr2] = ACTIONS(2772), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1233)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1233), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2935), + [anon_sym_xor2] = ACTIONS(2940), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2927), + [anon_sym_BANG_TILDE2] = ACTIONS(2927), + [anon_sym_like2] = ACTIONS(2927), + [anon_sym_not_DASHlike2] = ACTIONS(2927), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2929), + [anon_sym_bit_DASHxor2] = ACTIONS(2931), + [anon_sym_bit_DASHor2] = ACTIONS(2933), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1234)] = { - [aux_sym__repeat_newline] = STATE(1231), + [aux_sym__repeat_newline] = STATE(1183), [sym_comment] = STATE(1234), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = 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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1235)] = { - [aux_sym__repeat_newline] = STATE(1196), [sym_comment] = STATE(1235), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1236)] = { - [aux_sym__repeat_newline] = STATE(1137), [sym_comment] = STATE(1236), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2509), + [anon_sym_bit_DASHshr2] = ACTIONS(2509), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1237)] = { - [sym__ctrl_match_body] = STATE(5168), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), + [aux_sym__repeat_newline] = STATE(1153), [sym_comment] = STATE(1237), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2726), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2726), + [anon_sym_has2] = ACTIONS(2726), + [anon_sym_not_DASHhas2] = ACTIONS(2726), + [anon_sym_starts_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), + [anon_sym_ends_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1238)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1171), [sym_comment] = STATE(1238), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2776), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2778), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = 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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1239)] = { + [aux_sym__repeat_newline] = STATE(1132), [sym_comment] = STATE(1239), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1240)] = { - [sym__expression] = STATE(4737), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(1219), [sym_comment] = STATE(1240), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2776), + [anon_sym_STAR2] = ACTIONS(2778), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2778), + [anon_sym_mod2] = ACTIONS(2776), + [anon_sym_SLASH_SLASH2] = ACTIONS(2776), + [anon_sym_PLUS2] = ACTIONS(2778), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = 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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1241)] = { - [aux_sym__repeat_newline] = STATE(1211), + [aux_sym__repeat_newline] = STATE(1145), [sym_comment] = STATE(1241), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1242)] = { + [aux_sym__repeat_newline] = STATE(1136), [sym_comment] = STATE(1242), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1243)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1243), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2732), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2732), + [anon_sym_has2] = ACTIONS(2732), + [anon_sym_not_DASHhas2] = ACTIONS(2732), + [anon_sym_starts_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), + [anon_sym_ends_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2732), + [anon_sym_BANG_TILDE2] = ACTIONS(2732), + [anon_sym_like2] = ACTIONS(2732), + [anon_sym_not_DASHlike2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1244)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1178), [sym_comment] = STATE(1244), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1245)] = { - [aux_sym__repeat_newline] = STATE(1225), [sym_comment] = STATE(1245), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2927), + [anon_sym_BANG_TILDE2] = ACTIONS(2927), + [anon_sym_like2] = ACTIONS(2927), + [anon_sym_not_DASHlike2] = ACTIONS(2927), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1246)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1187), [sym_comment] = STATE(1246), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2905), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1247)] = { [sym_comment] = STATE(1247), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2927), + [anon_sym_BANG_TILDE2] = ACTIONS(2927), + [anon_sym_like2] = ACTIONS(2927), + [anon_sym_not_DASHlike2] = ACTIONS(2927), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2929), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1248)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1190), [sym_comment] = STATE(1248), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = 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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1249)] = { - [aux_sym__repeat_newline] = STATE(1141), + [aux_sym__repeat_newline] = STATE(1169), [sym_comment] = STATE(1249), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2726), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2728), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2726), + [anon_sym_has2] = ACTIONS(2726), + [anon_sym_not_DASHhas2] = ACTIONS(2726), + [anon_sym_starts_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), + [anon_sym_ends_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), + [anon_sym_EQ_EQ2] = ACTIONS(2726), + [anon_sym_BANG_EQ2] = ACTIONS(2726), + [anon_sym_LT2] = ACTIONS(2728), + [anon_sym_LT_EQ2] = ACTIONS(2726), + [anon_sym_GT_EQ2] = ACTIONS(2726), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1250)] = { - [aux_sym__repeat_newline] = STATE(1222), + [aux_sym__repeat_newline] = STATE(1170), [sym_comment] = STATE(1250), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1251)] = { + [aux_sym__repeat_newline] = STATE(1139), [sym_comment] = STATE(1251), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1252)] = { [sym_comment] = STATE(1252), - [anon_sym_export] = ACTIONS(2924), - [anon_sym_alias] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_mut] = ACTIONS(2928), - [anon_sym_const] = ACTIONS(2928), - [aux_sym_cmd_identifier_token1] = ACTIONS(2924), - [anon_sym_def] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_export_DASHenv] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2928), - [anon_sym_module] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_loop] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_else] = ACTIONS(2928), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_catch] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_in] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2928), - [anon_sym_false] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2928), - [aux_sym_cmd_identifier_token3] = ACTIONS(2928), - [aux_sym_cmd_identifier_token4] = ACTIONS(2928), - [aux_sym_cmd_identifier_token5] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_AT] = ACTIONS(2932), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_DASH2] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_DOT_DOT] = ACTIONS(2935), - [anon_sym_where] = ACTIONS(2932), - [aux_sym_expr_unary_token1] = ACTIONS(2932), - [anon_sym_PLUS2] = ACTIONS(2938), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2932), - [anon_sym_DOT_DOT_LT] = ACTIONS(2932), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2940), - [aux_sym__val_number_decimal_token1] = ACTIONS(2924), - [aux_sym__val_number_decimal_token2] = ACTIONS(2928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2928), - [aux_sym__val_number_decimal_token4] = ACTIONS(2928), - [aux_sym__val_number_token1] = ACTIONS(2928), - [aux_sym__val_number_token2] = ACTIONS(2928), - [aux_sym__val_number_token3] = ACTIONS(2928), - [anon_sym_0b] = ACTIONS(2935), - [anon_sym_0o] = ACTIONS(2935), - [anon_sym_0x] = ACTIONS(2935), - [sym_val_date] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2940), - [anon_sym_CARET] = ACTIONS(2932), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2928), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2927), + [anon_sym_BANG_TILDE2] = ACTIONS(2927), + [anon_sym_like2] = ACTIONS(2927), + [anon_sym_not_DASHlike2] = ACTIONS(2927), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2929), + [anon_sym_bit_DASHxor2] = ACTIONS(2931), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1253)] = { - [aux_sym__repeat_newline] = STATE(1146), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1253), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1254)] = { + [aux_sym__repeat_newline] = STATE(1198), [sym_comment] = STATE(1254), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = 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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1255)] = { - [aux_sym__repeat_newline] = STATE(1173), + [aux_sym__repeat_newline] = STATE(1201), [sym_comment] = STATE(1255), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2746), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2746), - [anon_sym_mod2] = ACTIONS(2744), - [anon_sym_SLASH_SLASH2] = ACTIONS(2744), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = 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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1256)] = { - [sym__expression] = STATE(4756), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(1203), [sym_comment] = STATE(1256), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = 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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1257)] = { - [sym__expression] = STATE(4763), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(1152), [sym_comment] = STATE(1257), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1258)] = { - [sym__expression] = STATE(4776), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(1209), [sym_comment] = STATE(1258), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = 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), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1259)] = { + [sym__expression] = STATE(4753), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1259), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -138884,17 +139194,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2573), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138903,45 +139213,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1259)] = { - [sym__expression] = STATE(4779), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1259), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [STATE(1260)] = { + [sym__expression] = STATE(4788), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1260), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -138951,17 +139261,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2573), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138970,216 +139280,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1260)] = { - [sym__ctrl_match_body] = STATE(5167), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), - [sym_comment] = STATE(1260), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, [STATE(1261)] = { - [aux_sym__repeat_newline] = STATE(1233), + [aux_sym__repeat_newline] = STATE(1191), [sym_comment] = STATE(1261), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1262)] = { - [aux_sym__repeat_newline] = STATE(1175), - [sym_comment] = STATE(1262), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_err_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_GT_PIPE] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [anon_sym_err_GT_GT] = ACTIONS(2726), + [anon_sym_out_GT_GT] = ACTIONS(2726), + [anon_sym_e_GT_GT] = ACTIONS(2726), + [anon_sym_o_GT_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), [anon_sym_POUND] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 4, + [0] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2944), 1, + anon_sym_null, + ACTIONS(2948), 1, + sym__newline, + ACTIONS(2950), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(2954), 1, + anon_sym_DOLLAR, + ACTIONS(2956), 1, + anon_sym_LBRACE, + ACTIONS(2958), 1, + anon_sym_DOT_DOT, + ACTIONS(2962), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2964), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2970), 1, + anon_sym_0b, + ACTIONS(2974), 1, + sym_val_date, + ACTIONS(2976), 1, + anon_sym_DQUOTE, + ACTIONS(2978), 1, + anon_sym_SQUOTE, + ACTIONS(2980), 1, + anon_sym_BQUOTE, + ACTIONS(2982), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2984), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2986), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2988), 1, + sym_raw_string_begin, + STATE(1262), 1, + sym_comment, + STATE(2230), 1, + aux_sym__repeat_newline, + STATE(2494), 1, + sym__val_number_decimal, + STATE(2908), 1, + sym_expr_parenthesized, + STATE(2955), 1, + sym_val_variable, + STATE(2999), 1, + sym_val_bool, + STATE(3003), 1, + sym__inter_single_quotes, + STATE(3005), 1, + sym__inter_double_quotes, + STATE(3008), 1, + sym__val_number, + STATE(3115), 1, + sym__unquoted_in_record, + ACTIONS(2942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2960), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2966), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2972), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4623), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2946), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(2968), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3406), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2590), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3006), 12, + sym_val_nothing, + sym_val_cellpath, + 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, + [143] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1263), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(2585), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139193,7 +139473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2272), 49, + ACTIONS(2583), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139243,12 +139523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73] = 4, + [216] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1264), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139262,7 +139542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2152), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139312,12 +139592,510 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [146] = 4, + [289] = 9, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, STATE(1265), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(2992), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2511), 10, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2509), 44, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [372] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1266), 1, + sym_comment, + ACTIONS(1874), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1872), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [445] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1267), 1, + sym_comment, + ACTIONS(2064), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2062), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [518] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + STATE(1268), 1, + sym_comment, + ACTIONS(2992), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3006), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2511), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3000), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 26, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [611] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1269), 1, + sym_comment, + ACTIONS(2064), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2062), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [684] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1270), 1, + sym_comment, + ACTIONS(2419), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2417), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [757] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1271), 1, + sym_comment, + ACTIONS(2178), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2176), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [830] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1272), 1, + sym_comment, + ACTIONS(2182), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139331,7 +140109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2218), 49, + ACTIONS(2180), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139381,17 +140159,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [219] = 4, + [903] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1266), 1, + STATE(1273), 1, sym_comment, - ACTIONS(1966), 13, + ACTIONS(2122), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(2124), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139400,9 +140179,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1964), 49, + ACTIONS(2120), 20, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139414,6 +140192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2118), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -139442,55 +140230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [292] = 17, + [980] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, - STATE(1267), 1, + STATE(1274), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2559), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139499,17 +140249,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 23, + ACTIONS(2557), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139521,9 +140263,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -139532,18 +140299,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [391] = 6, + [1053] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1268), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + ACTIONS(3010), 1, + anon_sym_bit_DASHand2, + STATE(1275), 1, sym_comment, - ACTIONS(2138), 5, - anon_sym_GT2, + ACTIONS(2992), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2140), 8, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3006), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2511), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139552,7 +140344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2136), 20, + ACTIONS(3000), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -139565,6 +140366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -139573,42 +140379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(2134), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [468] = 4, + [1148] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1269), 1, + STATE(1276), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139622,7 +140398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139672,17 +140448,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [541] = 4, + [1221] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1270), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + ACTIONS(3010), 1, + anon_sym_bit_DASHand2, + ACTIONS(3012), 1, + anon_sym_bit_DASHxor2, + STATE(1277), 1, sym_comment, - ACTIONS(2517), 13, - anon_sym_GT2, + ACTIONS(2992), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3006), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2511), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139691,9 +140495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2515), 49, - ts_builtin_sym_end, + ACTIONS(3000), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 24, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139705,33 +140517,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -139741,12 +140529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [614] = 4, + [1318] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1271), 1, + STATE(1278), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(2122), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139760,7 +140548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2076), 49, + ACTIONS(2118), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139810,17 +140598,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [687] = 4, + [1391] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1272), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + STATE(1279), 1, sym_comment, - ACTIONS(2593), 13, - anon_sym_GT2, + ACTIONS(2992), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2511), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139829,7 +140636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2591), 49, + ACTIONS(2509), 38, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139843,7 +140650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -139854,20 +140660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -139879,12 +140675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [760] = 4, + [1480] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1273), 1, + STATE(1280), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139898,7 +140694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2202), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139948,12 +140744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [833] = 4, + [1553] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1274), 1, + STATE(1281), 1, sym_comment, - ACTIONS(2521), 13, + ACTIONS(2642), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139967,7 +140763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2519), 49, + ACTIONS(2640), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140017,127 +140813,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [906] = 37, + [1626] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(195), 1, - sym_val_date, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(287), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(2406), 1, - aux_sym_expr_unary_token1, - ACTIONS(2410), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2412), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, - anon_sym_null, - ACTIONS(2970), 1, - anon_sym_DOT_DOT, - STATE(694), 1, - sym__val_number, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(945), 1, - sym__expr_unary_minus, - STATE(1275), 1, - sym_comment, - STATE(1875), 1, - sym__val_number_decimal, - STATE(1955), 1, - sym_expr_parenthesized, - STATE(1959), 1, - sym_val_variable, - STATE(2216), 1, - sym__expr_binary_expression, - STATE(5030), 1, - sym__expression, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2398), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2414), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(2972), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(944), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(943), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - 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, - [1045] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(2990), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(2998), 1, anon_sym_PLUS2, - STATE(1276), 1, + STATE(1282), 1, sym_comment, - ACTIONS(2950), 2, + ACTIONS(2992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(2994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(2996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 10, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2511), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -140148,7 +140845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 44, + ACTIONS(2509), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140180,8 +140877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -140193,12 +140888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1128] = 4, + [1711] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1277), 1, + STATE(1283), 1, sym_comment, - ACTIONS(2507), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140212,7 +140907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2505), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140262,99 +140957,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1201] = 18, + [1784] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, - ACTIONS(2974), 1, - anon_sym_and2, - STATE(1278), 1, + STATE(1284), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(2992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(2994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(2996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 22, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1302] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1279), 1, - sym_comment, - ACTIONS(2224), 13, + ACTIONS(2511), 11, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -140364,7 +140983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2222), 49, + ACTIONS(2509), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140397,10 +141016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -140414,12 +141029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1375] = 4, + [1863] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1280), 1, + STATE(1285), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140433,7 +141048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140483,12 +141098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1448] = 4, + [1936] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1281), 1, + STATE(1286), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2443), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140502,7 +141117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2441), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140552,12 +141167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1521] = 4, + [2009] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1282), 1, + STATE(1287), 1, sym_comment, - ACTIONS(2535), 13, + ACTIONS(2068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140571,7 +141186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 49, + ACTIONS(2066), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140621,90 +141236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1594] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1283), 1, - sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2535), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 30, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1685] = 4, + [2082] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1284), 1, + STATE(1288), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2076), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140718,7 +141255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2074), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140768,12 +141305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1758] = 4, + [2155] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1285), 1, + STATE(1289), 1, sym_comment, - ACTIONS(2605), 13, + ACTIONS(2535), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140787,7 +141324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2603), 49, + ACTIONS(2533), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140837,43 +141374,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1831] = 15, + [2228] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - STATE(1286), 1, + STATE(1290), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2064), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140882,17 +141393,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 25, + ACTIONS(2062), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140904,9 +141407,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -140917,119 +141443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1926] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1287), 1, - sym_comment, - STATE(1329), 1, - aux_sym__repeat_newline, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2871), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2980), 1, - sym_val_bool, - STATE(3024), 1, - sym__unquoted_in_record, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3260), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - 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, - [2069] = 5, + [2301] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1288), 1, + STATE(1291), 1, sym_comment, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141043,7 +141462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 47, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141076,6 +141495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -141091,12 +141512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2144] = 4, + [2374] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1289), 1, + STATE(1292), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(2013), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141110,7 +141531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(968), 49, + ACTIONS(2011), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141160,12 +141581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2217] = 4, + [2447] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1290), 1, + STATE(1293), 1, sym_comment, - ACTIONS(2577), 13, + ACTIONS(2391), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141179,7 +141600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 49, + ACTIONS(2389), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141229,116 +141650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2290] = 39, + [2520] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1291), 1, + STATE(1294), 1, sym_comment, - STATE(2226), 1, - aux_sym__repeat_newline, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2821), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2961), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3234), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - 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, - [2433] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1292), 1, - sym_comment, - ACTIONS(1868), 13, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2511), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141352,7 +141672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1866), 49, + ACTIONS(2509), 47, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141385,8 +141705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -141402,12 +141720,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2506] = 4, + [2595] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1293), 1, + STATE(1295), 1, sym_comment, - ACTIONS(2565), 13, + ACTIONS(2451), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141421,7 +141739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2563), 49, + ACTIONS(2449), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141471,12 +141789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2579] = 4, + [2668] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1294), 1, + STATE(1296), 1, sym_comment, - ACTIONS(2601), 13, + ACTIONS(2531), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141490,7 +141808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2599), 49, + ACTIONS(2529), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141540,12 +141858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2652] = 4, + [2741] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1295), 1, + STATE(1297), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(2455), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141559,7 +141877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2571), 49, + ACTIONS(2453), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141609,12 +141927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2725] = 4, + [2814] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1296), 1, + STATE(1298), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141628,7 +141946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141678,12 +141996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2798] = 4, + [2887] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1297), 1, + STATE(1299), 1, sym_comment, - ACTIONS(2609), 13, + ACTIONS(2136), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141697,7 +142015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2607), 49, + ACTIONS(2134), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141747,12 +142065,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2871] = 4, + [2960] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1298), 1, + STATE(1300), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(2459), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141766,7 +142084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2206), 49, + ACTIONS(2457), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141816,86 +142134,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2944] = 4, + [3033] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1299), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + ACTIONS(3010), 1, + anon_sym_bit_DASHand2, + ACTIONS(3012), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3014), 1, + anon_sym_bit_DASHor2, + STATE(1301), 1, sym_comment, - ACTIONS(2513), 13, - anon_sym_GT2, + ACTIONS(2992), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2511), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3006), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3017] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1300), 1, - sym_comment, - ACTIONS(2212), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2511), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141904,9 +142183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2210), 49, - ts_builtin_sym_end, + ACTIONS(3000), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141918,34 +142205,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -141954,12 +142216,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3090] = 4, + [3132] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1301), 1, + STATE(1302), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2527), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141973,7 +142235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2525), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142023,12 +142285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3163] = 4, + [3205] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1302), 1, + STATE(1303), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2463), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142042,7 +142304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2461), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142092,12 +142354,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3236] = 4, + [3278] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1303), 1, + STATE(1304), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(2003), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142111,7 +142373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1706), 49, + ACTIONS(2001), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142161,12 +142423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3309] = 4, + [3351] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1304), 1, + STATE(1305), 1, sym_comment, - ACTIONS(2114), 13, + ACTIONS(2128), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142180,7 +142442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2112), 49, + ACTIONS(2126), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142230,12 +142492,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3382] = 4, + [3424] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1305), 1, + STATE(1306), 1, sym_comment, - ACTIONS(2621), 13, + ACTIONS(2503), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142249,7 +142511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2619), 49, + ACTIONS(2501), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142299,12 +142561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3455] = 4, + [3497] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1306), 1, + STATE(1307), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(2507), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142318,7 +142580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2214), 49, + ACTIONS(2505), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142368,12 +142630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3528] = 4, + [3570] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1307), 1, + STATE(1308), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2499), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142387,7 +142649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2497), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142437,96 +142699,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3601] = 19, + [3643] = 39, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2944), 1, + anon_sym_null, ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, + sym__newline, + ACTIONS(2950), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(2954), 1, + anon_sym_DOLLAR, + ACTIONS(2956), 1, + anon_sym_LBRACE, + ACTIONS(2958), 1, + anon_sym_DOT_DOT, + ACTIONS(2962), 1, + aux_sym__val_number_decimal_token1, ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, + aux_sym__val_number_decimal_token2, + ACTIONS(2970), 1, + anon_sym_0b, ACTIONS(2974), 1, - anon_sym_and2, - ACTIONS(3024), 1, - anon_sym_xor2, - STATE(1308), 1, + sym_val_date, + ACTIONS(2976), 1, + anon_sym_DQUOTE, + ACTIONS(2978), 1, + anon_sym_SQUOTE, + ACTIONS(2980), 1, + anon_sym_BQUOTE, + ACTIONS(2982), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2984), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2986), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2988), 1, + sym_raw_string_begin, + STATE(1262), 1, + aux_sym__repeat_newline, + STATE(1309), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 21, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3704] = 4, + STATE(2494), 1, + sym__val_number_decimal, + STATE(2907), 1, + sym_expr_parenthesized, + STATE(2955), 1, + sym_val_variable, + STATE(2973), 1, + sym__unquoted_in_record, + STATE(2999), 1, + sym_val_bool, + STATE(3003), 1, + sym__inter_single_quotes, + STATE(3005), 1, + sym__inter_double_quotes, + STATE(3008), 1, + sym__val_number, + ACTIONS(2942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2960), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2966), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2972), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4623), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2946), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(2968), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3348), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2590), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3006), 12, + sym_val_nothing, + sym_val_cellpath, + 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, + [3786] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1309), 1, + STATE(1310), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(2638), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142540,7 +142822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2258), 49, + ACTIONS(2636), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142590,12 +142872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3777] = 4, + [3859] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1310), 1, + STATE(1311), 1, sym_comment, - ACTIONS(2264), 13, + ACTIONS(1604), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142609,7 +142891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2262), 49, + ACTIONS(1706), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142659,12 +142941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3850] = 4, + [3932] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1311), 1, + STATE(1312), 1, sym_comment, - ACTIONS(2122), 13, + ACTIONS(2447), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142678,7 +142960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2120), 49, + ACTIONS(2445), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142728,12 +143010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3923] = 4, + [4005] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1312), 1, + STATE(1313), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2614), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142747,7 +143029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2612), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142797,12 +143079,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3996] = 4, + [4078] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1313), 1, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(2429), 1, + aux_sym_expr_unary_token1, + ACTIONS(2433), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2435), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2660), 1, + anon_sym_null, + ACTIONS(3016), 1, + anon_sym_DOT_DOT, + STATE(693), 1, + sym__val_number, + STATE(876), 1, + sym__inter_single_quotes, + STATE(878), 1, + sym__inter_double_quotes, + STATE(916), 1, + sym__expr_unary_minus, + STATE(1314), 1, + sym_comment, + STATE(1859), 1, + sym__val_number_decimal, + STATE(1956), 1, + sym_expr_parenthesized, + STATE(1960), 1, + sym_val_variable, + STATE(2215), 1, + sym__expr_binary_expression, + STATE(5033), 1, + sym__expression, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2421), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2437), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3018), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(958), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(954), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + 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, + [4217] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1315), 1, sym_comment, - ACTIONS(2525), 13, + ACTIONS(2467), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142816,7 +143200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2523), 49, + ACTIONS(2465), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142866,45 +143250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4069] = 16, + [4290] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - STATE(1314), 1, + STATE(1316), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2523), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142913,17 +143269,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 24, + ACTIONS(2521), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142935,86 +143283,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4166] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1315), 1, - sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2535), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 26, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -143026,12 +143319,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4259] = 4, + [4363] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, + STATE(1317), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(2499), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143045,7 +143338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2194), 49, + ACTIONS(2497), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143095,12 +143388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4332] = 4, + [4436] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1317), 1, + STATE(1318), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143114,7 +143407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143164,12 +143457,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4405] = 4, + [4509] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(1318), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + ACTIONS(3010), 1, + anon_sym_bit_DASHand2, + ACTIONS(3012), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3014), 1, + anon_sym_bit_DASHor2, + ACTIONS(3020), 1, + anon_sym_and2, + STATE(1319), 1, + sym_comment, + ACTIONS(2992), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3006), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2511), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3000), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 22, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4610] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1320), 1, sym_comment, - ACTIONS(1976), 13, + ACTIONS(2519), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143183,7 +143559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1974), 49, + ACTIONS(2517), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143233,12 +143609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4478] = 4, + [4683] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1319), 1, + STATE(1321), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143252,7 +143628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2268), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143302,12 +143678,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4551] = 4, + [4756] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(1320), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + ACTIONS(3010), 1, + anon_sym_bit_DASHand2, + ACTIONS(3012), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3014), 1, + anon_sym_bit_DASHor2, + ACTIONS(3020), 1, + anon_sym_and2, + ACTIONS(3022), 1, + anon_sym_xor2, + STATE(1322), 1, + sym_comment, + ACTIONS(2992), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3006), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2511), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3000), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 21, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4859] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1323), 1, sym_comment, - ACTIONS(1860), 13, + ACTIONS(2618), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143321,7 +143781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1858), 49, + ACTIONS(2616), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143371,12 +143831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4624] = 4, + [4932] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1321), 1, + STATE(1324), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(1846), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143390,7 +143850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(1844), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143440,12 +143900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4697] = 4, + [5005] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1322), 1, + STATE(1325), 1, sym_comment, - ACTIONS(2138), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143459,7 +143919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2134), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143509,36 +143969,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4770] = 12, + [5078] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(2990), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(2998), 1, anon_sym_PLUS2, - STATE(1323), 1, + STATE(1326), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(2992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(2994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(2996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(3004), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2535), 8, + ACTIONS(2511), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143547,9 +144007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 38, - ts_builtin_sym_end, + ACTIONS(3000), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 30, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -143564,13 +144032,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -143586,12 +144047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4859] = 4, + [5169] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1324), 1, + STATE(1327), 1, sym_comment, - ACTIONS(2200), 13, + ACTIONS(2626), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143605,7 +144066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2198), 49, + ACTIONS(2624), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143655,12 +144116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4932] = 4, + [5242] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1325), 1, + STATE(1328), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143674,7 +144135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2254), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143724,12 +144185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5005] = 4, + [5315] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1326), 1, + STATE(1329), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2511), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143743,7 +144204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2254), 49, + ACTIONS(2509), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143793,12 +144254,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5078] = 4, + [5388] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1327), 1, + STATE(1330), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2630), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143812,7 +144273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2628), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143862,97 +144323,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5151] = 37, + [5461] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(157), 1, + ACTIONS(2944), 1, + anon_sym_null, + ACTIONS(2948), 1, + sym__newline, + ACTIONS(2950), 1, anon_sym_LBRACK, - ACTIONS(159), 1, + ACTIONS(2952), 1, anon_sym_LPAREN, - ACTIONS(165), 1, + ACTIONS(2954), 1, + anon_sym_DOLLAR, + ACTIONS(2956), 1, anon_sym_LBRACE, - ACTIONS(169), 1, + ACTIONS(2958), 1, anon_sym_DOT_DOT, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(191), 1, + ACTIONS(2962), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2964), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2970), 1, anon_sym_0b, - ACTIONS(195), 1, + ACTIONS(2974), 1, sym_val_date, - ACTIONS(197), 1, + ACTIONS(2976), 1, anon_sym_DQUOTE, - ACTIONS(199), 1, + ACTIONS(2978), 1, anon_sym_SQUOTE, - ACTIONS(201), 1, + ACTIONS(2980), 1, anon_sym_BQUOTE, - ACTIONS(203), 1, + ACTIONS(2982), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(2984), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, + ACTIONS(2986), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2988), 1, sym_raw_string_begin, - ACTIONS(287), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(1926), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1928), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, - anon_sym_null, - STATE(694), 1, - sym__val_number, - STATE(697), 1, - sym_val_variable, - STATE(700), 1, + STATE(1331), 1, + sym_comment, + STATE(2230), 1, + aux_sym__repeat_newline, + STATE(2494), 1, + sym__val_number_decimal, + STATE(2893), 1, sym_expr_parenthesized, - STATE(743), 1, + STATE(2955), 1, + sym_val_variable, + STATE(2999), 1, + sym_val_bool, + STATE(3003), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(3005), 1, sym__inter_double_quotes, - STATE(945), 1, - sym__expr_unary_minus, - STATE(1328), 1, - sym_comment, - STATE(1830), 1, - sym__val_number_decimal, - STATE(2215), 1, - sym__expr_binary_expression, - STATE(4707), 1, - sym__expression, - ACTIONS(179), 2, + STATE(3008), 1, + sym__val_number, + STATE(3077), 1, + sym__unquoted_in_record, + ACTIONS(2942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2960), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1930), 2, + ACTIONS(2966), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(944), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, + ACTIONS(2972), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4623), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2946), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + ACTIONS(2968), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(943), 13, + STATE(3384), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2590), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3006), 12, sym_val_nothing, - sym_val_bool, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -143964,98 +144427,98 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5290] = 39, + [5604] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, + ACTIONS(2944), 1, anon_sym_null, - ACTIONS(2982), 1, + ACTIONS(2948), 1, sym__newline, - ACTIONS(2984), 1, + ACTIONS(2950), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2952), 1, anon_sym_LPAREN, - ACTIONS(2988), 1, + ACTIONS(2954), 1, anon_sym_DOLLAR, - ACTIONS(2990), 1, + ACTIONS(2956), 1, anon_sym_LBRACE, - ACTIONS(2992), 1, + ACTIONS(2958), 1, anon_sym_DOT_DOT, - ACTIONS(2996), 1, + ACTIONS(2962), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, + ACTIONS(2964), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, + ACTIONS(2970), 1, anon_sym_0b, - ACTIONS(3008), 1, + ACTIONS(2974), 1, sym_val_date, - ACTIONS(3010), 1, + ACTIONS(2976), 1, anon_sym_DQUOTE, - ACTIONS(3012), 1, + ACTIONS(2978), 1, anon_sym_SQUOTE, - ACTIONS(3014), 1, + ACTIONS(2980), 1, anon_sym_BQUOTE, - ACTIONS(3016), 1, + ACTIONS(2982), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, + ACTIONS(2984), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, + ACTIONS(2986), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, + ACTIONS(2988), 1, sym_raw_string_begin, - STATE(1329), 1, - sym_comment, - STATE(2226), 1, + STATE(1331), 1, aux_sym__repeat_newline, - STATE(2444), 1, + STATE(1332), 1, + sym_comment, + STATE(2494), 1, sym__val_number_decimal, - STATE(2866), 1, + STATE(2908), 1, sym_expr_parenthesized, - STATE(2884), 1, + STATE(2955), 1, sym_val_variable, - STATE(2924), 1, + STATE(2999), 1, + sym_val_bool, + STATE(3003), 1, sym__inter_single_quotes, - STATE(2925), 1, + STATE(3005), 1, sym__inter_double_quotes, - STATE(2969), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, + STATE(3008), 1, sym__val_number, - ACTIONS(2976), 2, + STATE(3115), 1, + sym__unquoted_in_record, + ACTIONS(2942), 2, anon_sym_true, anon_sym_false, - ACTIONS(2994), 2, + ACTIONS(2960), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, + ACTIONS(2966), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, + ACTIONS(2972), 2, anon_sym_0o, anon_sym_0x, - STATE(4601), 2, + STATE(4623), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, + ACTIONS(2946), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, + ACTIONS(2968), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3231), 3, + STATE(3406), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(2548), 4, + STATE(2590), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3061), 12, + STATE(3006), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -144068,174 +144531,97 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5433] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1330), 1, - sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2535), 10, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2533), 42, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5518] = 39, + [5747] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, + ACTIONS(157), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(159), 1, anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, + ACTIONS(165), 1, anon_sym_LBRACE, - ACTIONS(2992), 1, + ACTIONS(169), 1, anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, + ACTIONS(191), 1, anon_sym_0b, - ACTIONS(3008), 1, + ACTIONS(195), 1, sym_val_date, - ACTIONS(3010), 1, + ACTIONS(197), 1, anon_sym_DQUOTE, - ACTIONS(3012), 1, + ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(3014), 1, + ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(3016), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, + ACTIONS(211), 1, sym_raw_string_begin, - STATE(1291), 1, - aux_sym__repeat_newline, - STATE(1331), 1, - sym_comment, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2866), 1, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(2036), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2038), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2660), 1, + anon_sym_null, + STATE(692), 1, sym_expr_parenthesized, - STATE(2884), 1, + STATE(693), 1, + sym__val_number, + STATE(705), 1, sym_val_variable, - STATE(2924), 1, + STATE(876), 1, sym__inter_single_quotes, - STATE(2925), 1, + STATE(878), 1, sym__inter_double_quotes, - STATE(2969), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, + STATE(916), 1, + sym__expr_unary_minus, + STATE(1333), 1, + sym_comment, + STATE(1831), 1, + sym__val_number_decimal, + STATE(2225), 1, + sym__expr_binary_expression, + STATE(4673), 1, + sym__expression, + ACTIONS(179), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2040), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(958), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3231), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, + STATE(954), 13, sym_val_nothing, + sym_val_bool, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -144247,150 +144633,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5661] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1332), 1, - sym_comment, - ACTIONS(2539), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2537), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5734] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1333), 1, - sym_comment, - ACTIONS(2617), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2615), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5807] = 4, + [5886] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1334), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2547), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144404,7 +144652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2545), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144454,84 +144702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5880] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1335), 1, - sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2533), 45, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, [5959] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1336), 1, + STATE(1335), 1, sym_comment, - ACTIONS(2228), 13, + ACTIONS(2515), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144545,7 +144721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2226), 49, + ACTIONS(2513), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144598,9 +144774,9 @@ static const uint16_t ts_small_parse_table[] = { [6032] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1337), 1, + STATE(1336), 1, sym_comment, - ACTIONS(2232), 13, + ACTIONS(2471), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144614,7 +144790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2230), 49, + ACTIONS(2469), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144664,114 +144840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6105] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_DOT_DOT, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(195), 1, - sym_val_date, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(287), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(1926), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1928), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, - anon_sym_null, - STATE(694), 1, - sym__val_number, - STATE(697), 1, - sym_val_variable, - STATE(700), 1, - sym_expr_parenthesized, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(945), 1, - sym__expr_unary_minus, - STATE(1338), 1, - sym_comment, - STATE(1830), 1, - sym__val_number_decimal, - STATE(2215), 1, - sym__expr_binary_expression, - STATE(4718), 1, - sym__expression, - ACTIONS(179), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1930), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(944), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(943), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - 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, - [6244] = 4, + [6105] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1339), 1, + STATE(1337), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(2475), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144785,7 +144859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2234), 49, + ACTIONS(2473), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144835,12 +144909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6317] = 4, + [6178] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1340), 1, + STATE(1338), 1, sym_comment, - ACTIONS(2240), 13, + ACTIONS(2479), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144854,7 +144928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2238), 49, + ACTIONS(2477), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144904,12 +144978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6390] = 4, + [6251] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1341), 1, + STATE(1339), 1, sym_comment, - ACTIONS(2244), 13, + ACTIONS(2483), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144923,7 +144997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2242), 49, + ACTIONS(2481), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144973,12 +145047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6463] = 4, + [6324] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1342), 1, + STATE(1340), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(2487), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144992,7 +145066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2246), 49, + ACTIONS(2485), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145042,12 +145116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6536] = 4, + [6397] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1343), 1, + STATE(1341), 1, sym_comment, - ACTIONS(2252), 13, + ACTIONS(2491), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145061,7 +145135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2250), 49, + ACTIONS(2489), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145111,12 +145185,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, + [6470] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(169), 1, + anon_sym_DOT_DOT, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(2036), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2038), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2660), 1, + anon_sym_null, + STATE(692), 1, + sym_expr_parenthesized, + STATE(693), 1, + sym__val_number, + STATE(705), 1, + sym_val_variable, + STATE(876), 1, + sym__inter_single_quotes, + STATE(878), 1, + sym__inter_double_quotes, + STATE(916), 1, + sym__expr_unary_minus, + STATE(1342), 1, + sym_comment, + STATE(1831), 1, + sym__val_number_decimal, + STATE(2225), 1, + sym__expr_binary_expression, + STATE(4808), 1, + sym__expression, + ACTIONS(179), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2040), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(958), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(954), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + 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, [6609] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1344), 1, + STATE(1343), 1, sym_comment, - ACTIONS(2569), 13, + ACTIONS(2495), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145130,7 +145306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2567), 49, + ACTIONS(2493), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145183,9 +145359,9 @@ static const uint16_t ts_small_parse_table[] = { [6682] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1345), 1, + STATE(1344), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(866), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145199,7 +145375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(908), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145258,87 +145434,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2664), 1, + ACTIONS(2702), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2704), 1, anon_sym_COLON2, - ACTIONS(2680), 1, + ACTIONS(2750), 1, anon_sym_LBRACK, - ACTIONS(2682), 1, + ACTIONS(2752), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2754), 1, anon_sym_DOLLAR, - ACTIONS(2686), 1, + ACTIONS(2756), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3026), 1, anon_sym_null, - ACTIONS(3032), 1, + ACTIONS(3030), 1, anon_sym_DOT_DOT, - ACTIONS(3040), 1, + ACTIONS(3038), 1, sym_val_date, - STATE(694), 1, + STATE(693), 1, sym__val_number, - STATE(743), 1, + STATE(876), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(878), 1, sym__inter_double_quotes, - STATE(1346), 1, + STATE(1345), 1, sym_comment, - STATE(3710), 1, + STATE(3706), 1, sym__val_number_decimal, - STATE(4207), 1, + STATE(4271), 1, sym_val_variable, - STATE(4255), 1, + STATE(4323), 1, sym_expr_parenthesized, - STATE(4677), 1, + STATE(4781), 1, sym_val_bool, - STATE(4932), 1, + STATE(4985), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3026), 2, + ACTIONS(3024), 2, anon_sym_true, anon_sym_false, - ACTIONS(3034), 2, + ACTIONS(3032), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, + ACTIONS(3034), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, + ACTIONS(3036), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - STATE(4931), 2, + STATE(4984), 2, sym_val_range, sym__value, - ACTIONS(2555), 3, + STATE(5001), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2567), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3030), 3, + ACTIONS(3028), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(943), 12, + STATE(954), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145356,99 +145532,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2752), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2863), 1, anon_sym_null, - ACTIONS(2874), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(2876), 1, + ACTIONS(2869), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2873), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, + ACTIONS(2877), 1, anon_sym__, - ACTIONS(2886), 1, + ACTIONS(2879), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(2883), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(2885), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(2889), 1, sym_val_date, - STATE(694), 1, + STATE(693), 1, sym__val_number, - STATE(1347), 1, + STATE(1346), 1, sym_comment, - STATE(1360), 1, + STATE(1363), 1, aux_sym__ctrl_match_body_repeat1, - STATE(2241), 1, + STATE(2239), 1, aux_sym__types_body_repeat1, - STATE(3487), 1, + STATE(3469), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(3704), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(3705), 1, sym_val_variable, - STATE(3762), 1, + STATE(3839), 1, sym__match_pattern, - STATE(4016), 1, + STATE(3970), 1, sym_val_bool, - STATE(4285), 1, + STATE(4159), 1, sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4161), 1, sym__match_pattern_list, - STATE(5173), 1, + STATE(4170), 1, + sym_unquoted, + STATE(5060), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(2861), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(2881), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(2887), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4160), 2, sym__match_pattern_value, sym_val_range, - STATE(4549), 2, + STATE(4602), 2, sym_match_arm, sym_default_arm, - STATE(4884), 2, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2872), 3, + ACTIONS(2865), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4166), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -145457,7 +145633,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [7043] = 37, + [7043] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1347), 1, + sym_comment, + STATE(1349), 1, + aux_sym__block_body_repeat1, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3044), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3040), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3042), 45, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [7120] = 37, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -145466,85 +145712,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2680), 1, + ACTIONS(2750), 1, anon_sym_LBRACK, - ACTIONS(2682), 1, + ACTIONS(2752), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2754), 1, anon_sym_DOLLAR, - ACTIONS(2686), 1, + ACTIONS(2756), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3028), 1, + ACTIONS(3026), 1, anon_sym_null, - ACTIONS(3032), 1, + ACTIONS(3030), 1, anon_sym_DOT_DOT, - ACTIONS(3040), 1, + ACTIONS(3038), 1, sym_val_date, - STATE(694), 1, + STATE(693), 1, sym__val_number, - STATE(743), 1, + STATE(876), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(878), 1, sym__inter_double_quotes, STATE(1348), 1, sym_comment, - STATE(3710), 1, + STATE(3706), 1, sym__val_number_decimal, - STATE(4207), 1, + STATE(4271), 1, sym_val_variable, - STATE(4232), 1, + STATE(4316), 1, sym_expr_parenthesized, - STATE(4677), 1, + STATE(4781), 1, sym_val_bool, - STATE(4986), 1, + STATE(5126), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3026), 2, + ACTIONS(3024), 2, anon_sym_true, anon_sym_false, - ACTIONS(3034), 2, + ACTIONS(3032), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, + ACTIONS(3034), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, + ACTIONS(3036), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4879), 2, + STATE(4980), 2, sym_val_range, sym__value, - STATE(4884), 2, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2555), 3, + ACTIONS(2567), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3030), 3, + ACTIONS(3028), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(943), 12, + STATE(954), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145557,120 +145803,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7180] = 37, - ACTIONS(103), 1, + [7257] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2680), 1, - anon_sym_LBRACK, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(3050), 2, + sym__newline, + anon_sym_SEMI, + STATE(1349), 2, + sym_comment, + aux_sym__block_body_repeat1, + ACTIONS(3046), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(2686), 1, - anon_sym_LBRACE, - ACTIONS(3028), 1, - anon_sym_null, - ACTIONS(3032), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3040), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(1349), 1, - sym_comment, - STATE(3710), 1, - sym__val_number_decimal, - STATE(4207), 1, - sym_val_variable, - STATE(4255), 1, - sym_expr_parenthesized, - STATE(4677), 1, - sym_val_bool, - STATE(4932), 1, - sym_unquoted, - ACTIONS(193), 2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3026), 2, + ACTIONS(3048), 47, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3034), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - STATE(4931), 2, - sym_val_range, - sym__value, - ACTIONS(2555), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3030), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(943), 12, - sym_val_nothing, - sym_val_cellpath, - 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, - [7317] = 7, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [7330] = 7, ACTIONS(3), 1, anon_sym_POUND, + STATE(1349), 1, + aux_sym__block_body_repeat1, STATE(1350), 1, sym_comment, - STATE(1357), 1, - aux_sym__block_body_repeat1, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3046), 2, + ACTIONS(3053), 2, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3042), 10, + ACTIONS(3040), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -145681,7 +145895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3042), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -145727,7 +145941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7394] = 37, + [7407] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -145748,73 +145962,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(1496), 1, + ACTIONS(1476), 1, anon_sym_LBRACE, ACTIONS(1578), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(3057), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3061), 1, anon_sym_DOT_DOT, - ACTIONS(3058), 1, + ACTIONS(3065), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, + ACTIONS(3067), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3071), 1, sym_val_date, - ACTIONS(3066), 1, + ACTIONS(3073), 1, aux_sym__unquoted_in_record_token1, STATE(1351), 1, sym_comment, - STATE(3418), 1, + STATE(3481), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3828), 1, sym_val_variable, - STATE(3965), 1, + STATE(3966), 1, sym_expr_parenthesized, - STATE(4130), 1, + STATE(4216), 1, sym_val_bool, - STATE(4165), 1, + STATE(4358), 1, sym__val_number, - STATE(4173), 1, + STATE(4365), 1, sym__unquoted_in_record, - STATE(4452), 1, + STATE(4592), 1, sym__inter_single_quotes, - STATE(4453), 1, + STATE(4596), 1, sym__inter_double_quotes, ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3055), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3063), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3069), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, + STATE(4457), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, + ACTIONS(3059), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4636), 3, + STATE(4734), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4536), 12, + STATE(4601), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145827,94 +146041,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7531] = 37, - ACTIONS(3), 1, + [7544] = 37, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1390), 1, - anon_sym_DOLLAR, - ACTIONS(1406), 1, + ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1418), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(1496), 1, - anon_sym_LBRACE, - ACTIONS(1578), 1, + ACTIONS(1912), 1, + aux_sym_unquoted_token1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2750), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(2752), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_DOLLAR, + ACTIONS(2756), 1, + anon_sym_LBRACE, + ACTIONS(3026), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3030), 1, anon_sym_DOT_DOT, - ACTIONS(3058), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3038), 1, sym_val_date, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, + STATE(693), 1, + sym__val_number, + STATE(876), 1, + sym__inter_single_quotes, + STATE(878), 1, + sym__inter_double_quotes, STATE(1352), 1, sym_comment, - STATE(3418), 1, + STATE(3706), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(4271), 1, sym_val_variable, - STATE(4005), 1, + STATE(4323), 1, sym_expr_parenthesized, - STATE(4130), 1, + STATE(4781), 1, sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4256), 1, - sym__unquoted_in_record, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - ACTIONS(1408), 2, + STATE(4985), 1, + sym_unquoted, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3024), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3032), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3034), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, + STATE(4984), 2, + sym_val_range, + sym__value, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, + ACTIONS(2567), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, + ACTIONS(3028), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4717), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4536), 12, + STATE(954), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145927,7 +146141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7668] = 37, + [7681] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -145948,164 +146162,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(1496), 1, + ACTIONS(1476), 1, anon_sym_LBRACE, ACTIONS(1578), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(3057), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3061), 1, anon_sym_DOT_DOT, - ACTIONS(3058), 1, + ACTIONS(3065), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, + ACTIONS(3067), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3071), 1, sym_val_date, - ACTIONS(3066), 1, + ACTIONS(3073), 1, aux_sym__unquoted_in_record_token1, STATE(1353), 1, sym_comment, - STATE(3418), 1, + STATE(3481), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3828), 1, sym_val_variable, - STATE(3976), 1, + STATE(4003), 1, sym_expr_parenthesized, - STATE(4130), 1, + STATE(4152), 1, + sym__unquoted_in_record, + STATE(4216), 1, sym_val_bool, - STATE(4165), 1, + STATE(4358), 1, sym__val_number, - STATE(4184), 1, - sym__unquoted_in_record, - STATE(4452), 1, + STATE(4592), 1, sym__inter_single_quotes, - STATE(4453), 1, + STATE(4596), 1, sym__inter_double_quotes, ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3055), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3063), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3069), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, + STATE(4457), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, + ACTIONS(3059), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4656), 3, + STATE(4696), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4536), 12, - sym_val_nothing, - sym_val_cellpath, - 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, - [7805] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1354), 1, - sym_comment, - STATE(1357), 1, - aux_sym__block_body_repeat1, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3068), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3042), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3044), 45, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [7882] = 5, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4601), 12, + sym_val_nothing, + sym_val_cellpath, + 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, + [7818] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 1, - sym__newline, - STATE(1355), 2, - aux_sym__repeat_newline, + STATE(1349), 1, + aux_sym__block_body_repeat1, + STATE(1354), 1, sym_comment, - ACTIONS(1960), 10, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3075), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3040), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146116,7 +146265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1955), 48, + ACTIONS(3042), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146141,13 +146290,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146165,86 +146311,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7955] = 7, + [7895] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1356), 1, - sym_comment, - STATE(1357), 1, - aux_sym__block_body_repeat1, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3073), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3042), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1386), 1, + anon_sym_LPAREN, + ACTIONS(1390), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(1406), 1, + anon_sym_0b, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1418), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1420), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(1476), 1, + anon_sym_LBRACE, + ACTIONS(1578), 1, + anon_sym_LBRACK, + ACTIONS(3057), 1, + anon_sym_null, + ACTIONS(3061), 1, anon_sym_DOT_DOT, + ACTIONS(3065), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(3067), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3071), 1, + sym_val_date, + ACTIONS(3073), 1, + aux_sym__unquoted_in_record_token1, + STATE(1355), 1, + sym_comment, + STATE(3481), 1, + sym__val_number_decimal, + STATE(3828), 1, + sym_val_variable, + STATE(3938), 1, + sym_expr_parenthesized, + STATE(4189), 1, + sym__unquoted_in_record, + STATE(4216), 1, + sym_val_bool, + STATE(4358), 1, + sym__val_number, + STATE(4592), 1, + sym__inter_single_quotes, + STATE(4596), 1, + sym__inter_double_quotes, + ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(3055), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3063), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3069), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(4457), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, + ACTIONS(3059), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(4711), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4601), 12, + sym_val_nothing, + sym_val_cellpath, + 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, [8032] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3079), 2, + ACTIONS(3077), 1, sym__newline, - anon_sym_SEMI, - STATE(1357), 2, + STATE(1356), 2, + aux_sym__repeat_newline, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3075), 10, + ACTIONS(1921), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146255,7 +146430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3077), 47, + ACTIONS(1916), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146280,10 +146455,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, @@ -146303,16 +146479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8105] = 6, - ACTIONS(103), 1, + [8105] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - anon_sym_POUND_BANG, - ACTIONS(2932), 1, - sym__newline, - STATE(1358), 1, + ACTIONS(2146), 1, + anon_sym_PIPE, + STATE(1357), 1, sym_comment, - ACTIONS(3084), 10, + ACTIONS(2854), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146323,9 +146497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 47, + ACTIONS(2851), 48, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -146349,11 +146522,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146371,12 +146546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8179] = 4, + [8177] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1359), 1, + ACTIONS(2569), 1, + sym__newline, + ACTIONS(3084), 1, + anon_sym_SEMI, + STATE(1358), 1, sym_comment, - ACTIONS(2098), 10, + STATE(1365), 1, + aux_sym__parenthesized_body_repeat1, + STATE(1377), 1, + aux_sym__repeat_newline, + ACTIONS(3080), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146387,7 +146570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 49, + ACTIONS(3082), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146412,14 +146595,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146437,100 +146616,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8249] = 40, + [8255] = 40, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2752), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2863), 1, anon_sym_null, - ACTIONS(2876), 1, + ACTIONS(2869), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2873), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, + ACTIONS(2877), 1, anon_sym__, - ACTIONS(2886), 1, + ACTIONS(2879), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(2883), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(2885), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(2889), 1, sym_val_date, - STATE(694), 1, + STATE(693), 1, sym__val_number, - STATE(1360), 1, + STATE(1359), 1, sym_comment, STATE(1361), 1, aux_sym__ctrl_match_body_repeat1, - STATE(3487), 1, + STATE(3469), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(3704), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(3705), 1, sym_val_variable, - STATE(3762), 1, + STATE(3839), 1, sym__match_pattern, - STATE(4016), 1, + STATE(3970), 1, sym_val_bool, - STATE(4285), 1, + STATE(4159), 1, sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4161), 1, sym__match_pattern_list, - STATE(5173), 1, + STATE(4170), 1, + sym_unquoted, + STATE(5060), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(2861), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(2881), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(2887), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4160), 2, sym__match_pattern_value, sym_val_range, - STATE(4608), 2, + STATE(4602), 2, sym_match_arm, sym_default_arm, - STATE(4884), 2, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2872), 3, + ACTIONS(2865), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4166), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -146539,99 +146718,166 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [8391] = 39, + [8397] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3086), 2, + sym__newline, + anon_sym_SEMI, + STATE(1360), 2, + sym_comment, + aux_sym__block_body_repeat1, + ACTIONS(3046), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3048), 46, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3095), 1, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(3098), 1, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [8469] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3092), 1, + anon_sym_null, + ACTIONS(3098), 1, + anon_sym_LBRACK, ACTIONS(3101), 1, - anon_sym_DOLLAR, + anon_sym_LPAREN, ACTIONS(3104), 1, - anon_sym_LBRACE, + anon_sym_DOLLAR, ACTIONS(3107), 1, - anon_sym__, + anon_sym_LBRACE, ACTIONS(3110), 1, + anon_sym__, + ACTIONS(3113), 1, anon_sym_DOT_DOT, - ACTIONS(3116), 1, - aux_sym__val_number_decimal_token1, ACTIONS(3119), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3122), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3128), 1, + ACTIONS(3131), 1, anon_sym_0b, - ACTIONS(3134), 1, - sym_val_date, ACTIONS(3137), 1, - anon_sym_DQUOTE, + sym_val_date, ACTIONS(3140), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(3143), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(3146), 1, - aux_sym_unquoted_token1, + anon_sym_BQUOTE, ACTIONS(3149), 1, + aux_sym_unquoted_token1, + ACTIONS(3152), 1, sym_raw_string_begin, - STATE(694), 1, + STATE(693), 1, sym__val_number, - STATE(3487), 1, + STATE(3469), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(3704), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(3705), 1, sym_val_variable, - STATE(3762), 1, + STATE(3839), 1, sym__match_pattern, - STATE(4016), 1, + STATE(3970), 1, sym_val_bool, - STATE(4285), 1, + STATE(4159), 1, sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4161), 1, sym__match_pattern_list, - STATE(5173), 1, + STATE(4170), 1, + sym_unquoted, + STATE(5060), 1, sym_match_pattern, - ACTIONS(3086), 2, + ACTIONS(3089), 2, anon_sym_true, anon_sym_false, - ACTIONS(3113), 2, + ACTIONS(3116), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3122), 2, + ACTIONS(3125), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3131), 2, + ACTIONS(3134), 2, anon_sym_0o, anon_sym_0x, STATE(1361), 2, sym_comment, aux_sym__ctrl_match_body_repeat1, - STATE(4299), 2, + STATE(4160), 2, sym__match_pattern_value, sym_val_range, - STATE(4785), 2, + STATE(4731), 2, sym_match_arm, sym_default_arm, - STATE(4884), 2, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3092), 3, + ACTIONS(3095), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3125), 3, + ACTIONS(3128), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4166), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -146640,91 +146886,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [8531] = 36, + [8609] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3004), 1, + ACTIONS(934), 1, + anon_sym_DOLLAR, + ACTIONS(950), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(956), 1, anon_sym_0b, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3154), 1, + ACTIONS(976), 1, + aux_sym_unquoted_token1, + ACTIONS(978), 1, + sym_raw_string_begin, + ACTIONS(3157), 1, anon_sym_null, - ACTIONS(3158), 1, + ACTIONS(3161), 1, anon_sym_LBRACK, - ACTIONS(3160), 1, + ACTIONS(3163), 1, anon_sym_LPAREN, - ACTIONS(3162), 1, - anon_sym_DOLLAR, - ACTIONS(3164), 1, + ACTIONS(3165), 1, anon_sym_LBRACE, - ACTIONS(3166), 1, + ACTIONS(3167), 1, anon_sym_DOT_DOT, - ACTIONS(3168), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, - ACTIONS(3172), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3174), 1, + ACTIONS(3173), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3178), 1, + ACTIONS(3179), 1, sym_val_date, - ACTIONS(3180), 1, - aux_sym_unquoted_token1, + ACTIONS(3181), 1, + anon_sym_DQUOTE, + ACTIONS(3183), 1, + anon_sym_SQUOTE, + ACTIONS(3185), 1, + anon_sym_BQUOTE, + ACTIONS(3187), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3189), 1, + anon_sym_DOLLAR_DQUOTE, STATE(1362), 1, sym_comment, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(3062), 1, - sym__val_number, - STATE(3544), 1, + STATE(2528), 1, sym__val_number_decimal, - STATE(4301), 1, + STATE(2940), 1, sym_val_bool, - STATE(4466), 1, + STATE(3201), 1, sym_unquoted, - ACTIONS(3006), 2, + STATE(3231), 1, + sym__val_number, + STATE(3250), 1, + sym__inter_single_quotes, + STATE(3253), 1, + sym__inter_double_quotes, + ACTIONS(958), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3152), 2, + ACTIONS(3155), 2, anon_sym_true, anon_sym_false, - ACTIONS(3170), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3176), 2, + ACTIONS(3175), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4463), 2, + STATE(3219), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(4946), 2, + STATE(5077), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3156), 3, + ACTIONS(3159), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + ACTIONS(3177), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2536), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3061), 13, + STATE(3215), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -146738,230 +146984,193 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8665] = 7, + [8743] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3186), 1, - sym__newline, - ACTIONS(3189), 1, - anon_sym_SEMI, - STATE(4404), 1, - aux_sym__repeat_newline, - STATE(1363), 2, - sym_comment, - aux_sym__parenthesized_body_repeat1, - ACTIONS(3182), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, + ACTIONS(191), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3184), 45, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(1912), 1, + aux_sym_unquoted_token1, + ACTIONS(2752), 1, + anon_sym_LPAREN, + ACTIONS(2863), 1, anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, + ACTIONS(2869), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + ACTIONS(2873), 1, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(2877), 1, + anon_sym__, + ACTIONS(2879), 1, + anon_sym_DOT_DOT, + ACTIONS(2883), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2885), 1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(2889), 1, sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8741] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2557), 1, - sym__newline, - ACTIONS(3196), 1, - anon_sym_SEMI, + STATE(693), 1, + sym__val_number, + STATE(1361), 1, + aux_sym__ctrl_match_body_repeat1, STATE(1363), 1, - aux_sym__parenthesized_body_repeat1, - STATE(1364), 1, sym_comment, - STATE(1383), 1, - aux_sym__repeat_newline, - ACTIONS(3192), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + STATE(3469), 1, + sym__val_number_decimal, + STATE(3704), 1, + sym_expr_parenthesized, + STATE(3705), 1, + sym_val_variable, + STATE(3839), 1, + sym__match_pattern, + STATE(3970), 1, + sym_val_bool, + STATE(4159), 1, + sym__match_pattern_expression, + STATE(4161), 1, + sym__match_pattern_list, + STATE(4170), 1, + sym_unquoted, + STATE(5060), 1, + sym_match_pattern, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3194), 45, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(2861), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(2881), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(2887), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(4160), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4478), 2, + sym_match_arm, + sym_default_arm, + STATE(5001), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8819] = 36, + ACTIONS(2865), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4166), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [8885] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(799), 1, + ACTIONS(818), 1, anon_sym_DOLLAR, - ACTIONS(815), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(821), 1, + ACTIONS(840), 1, anon_sym_0b, - ACTIONS(841), 1, + ACTIONS(862), 1, aux_sym_unquoted_token1, - ACTIONS(843), 1, + ACTIONS(864), 1, sym_raw_string_begin, - ACTIONS(3200), 1, + ACTIONS(1240), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3193), 1, anon_sym_null, - ACTIONS(3204), 1, + ACTIONS(3197), 1, anon_sym_LBRACK, - ACTIONS(3206), 1, + ACTIONS(3199), 1, anon_sym_LPAREN, - ACTIONS(3208), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(3210), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3212), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3216), 1, + ACTIONS(3209), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3222), 1, + ACTIONS(3215), 1, sym_val_date, - ACTIONS(3224), 1, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(3219), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(3221), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, + ACTIONS(3225), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1365), 1, + STATE(1364), 1, sym_comment, - STATE(2448), 1, - sym__val_number_decimal, - STATE(2695), 1, - sym_val_bool, - STATE(2956), 1, + STATE(3007), 1, sym_unquoted, - STATE(3023), 1, - sym__val_number, - STATE(3063), 1, + STATE(3009), 1, sym__inter_single_quotes, - STATE(3066), 1, + STATE(3012), 1, sym__inter_double_quotes, - ACTIONS(823), 2, + STATE(3106), 1, + sym__val_number, + STATE(3598), 1, + sym__val_number_decimal, + STATE(3965), 1, + sym_val_bool, + ACTIONS(842), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3198), 2, + ACTIONS(3191), 2, anon_sym_true, anon_sym_false, - ACTIONS(3214), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3218), 2, + ACTIONS(3211), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3060), 2, + STATE(2984), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(4992), 2, + STATE(5140), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3202), 3, + ACTIONS(3195), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3220), 3, + ACTIONS(3213), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2454), 4, + STATE(2499), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3021), 13, + STATE(3105), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -146975,12 +147184,19 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8953] = 4, + [9019] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1366), 1, + ACTIONS(3231), 1, + sym__newline, + ACTIONS(3234), 1, + anon_sym_SEMI, + STATE(4467), 1, + aux_sym__repeat_newline, + STATE(1365), 2, sym_comment, - ACTIONS(3084), 10, + aux_sym__parenthesized_body_repeat1, + ACTIONS(3227), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146991,7 +147207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 49, + ACTIONS(3229), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147016,14 +147232,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147041,19 +147253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9023] = 7, + [9095] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - ts_builtin_sym_end, - STATE(1367), 1, + STATE(1366), 1, sym_comment, - STATE(1370), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3042), 10, + ACTIONS(3237), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147064,7 +147269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3239), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147089,10 +147294,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147110,19 +147319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9099] = 7, + [9165] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3073), 1, + ACTIONS(3075), 1, ts_builtin_sym_end, - STATE(1368), 1, - sym_comment, - STATE(1370), 1, + STATE(1360), 1, aux_sym__block_body_repeat1, + STATE(1367), 1, + sym_comment, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3042), 10, + ACTIONS(3040), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147133,7 +147342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3042), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147179,83 +147388,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9175] = 5, + [9241] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - anon_sym_PIPE, - STATE(1369), 1, - sym_comment, - ACTIONS(2935), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(818), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(834), 1, aux_sym__val_number_decimal_token1, + ACTIONS(840), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2932), 48, + ACTIONS(862), 1, + aux_sym_unquoted_token1, + ACTIONS(864), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_AT, + ACTIONS(3197), 1, anon_sym_LBRACK, + ACTIONS(3199), 1, anon_sym_LPAREN, + ACTIONS(3201), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3203), 1, + anon_sym_DOT_DOT, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3217), 1, + anon_sym_DQUOTE, + ACTIONS(3219), 1, + anon_sym_SQUOTE, + ACTIONS(3221), 1, + anon_sym_BQUOTE, + ACTIONS(3223), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3225), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3243), 1, + anon_sym_null, + ACTIONS(3247), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3251), 1, + sym_val_date, + STATE(1368), 1, + sym_comment, + STATE(2490), 1, + sym__val_number_decimal, + STATE(2745), 1, + sym_val_bool, + STATE(3007), 1, + sym_unquoted, + STATE(3009), 1, + sym__inter_single_quotes, + STATE(3012), 1, + sym__inter_double_quotes, + STATE(3106), 1, + sym__val_number, + ACTIONS(842), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3207), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3241), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3249), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(2984), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5140), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3213), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [9247] = 5, + ACTIONS(3245), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2499), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3105), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + 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, + [9375] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3234), 2, + ACTIONS(3053), 1, + ts_builtin_sym_end, + STATE(1360), 1, + aux_sym__block_body_repeat1, + STATE(1369), 1, + sym_comment, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - STATE(1370), 2, - sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3075), 10, + ACTIONS(3040), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147266,9 +147509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3077), 46, + ACTIONS(3042), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147313,19 +147555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9319] = 7, - ACTIONS(3), 1, + [9451] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3046), 1, - ts_builtin_sym_end, + ACTIONS(2146), 1, + anon_sym_POUND_BANG, + ACTIONS(2851), 1, + sym__newline, STATE(1370), 1, - aux_sym__block_body_repeat1, - STATE(1371), 1, sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3042), 10, + ACTIONS(3237), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147336,8 +147575,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3239), 47, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147361,6 +147601,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -147382,193 +147623,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9395] = 40, + [9525] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(3255), 1, anon_sym_null, - ACTIONS(2876), 1, + ACTIONS(3259), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(3261), 1, + anon_sym_LPAREN, + ACTIONS(3263), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(3265), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, - anon_sym__, - ACTIONS(2886), 1, + ACTIONS(3267), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(3269), 1, + anon_sym_LPAREN2, + ACTIONS(3273), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(3275), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(1361), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(1372), 1, - sym_comment, - STATE(3487), 1, - sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, - sym_val_variable, - STATE(3762), 1, - sym__match_pattern, - STATE(4016), 1, - sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(5173), 1, - sym_match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2868), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4299), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4549), 2, - sym_match_arm, - sym_default_arm, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(2872), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [9537] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(914), 1, - anon_sym_DOLLAR, - ACTIONS(930), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(936), 1, + ACTIONS(3281), 1, anon_sym_0b, - ACTIONS(956), 1, - aux_sym_unquoted_token1, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(3239), 1, - anon_sym_null, - ACTIONS(3243), 1, - anon_sym_LBRACK, - ACTIONS(3245), 1, - anon_sym_LPAREN, - ACTIONS(3247), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, - anon_sym_DOT_DOT, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3261), 1, + ACTIONS(3285), 1, sym_val_date, - ACTIONS(3263), 1, + ACTIONS(3287), 1, anon_sym_DQUOTE, - ACTIONS(3265), 1, + ACTIONS(3289), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, + ACTIONS(3291), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, + ACTIONS(3293), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, + ACTIONS(3295), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1373), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + ACTIONS(3299), 1, + sym_raw_string_begin, + STATE(1371), 1, sym_comment, - STATE(2469), 1, + STATE(1828), 1, sym__val_number_decimal, - STATE(2876), 1, + STATE(2119), 1, sym_val_bool, - STATE(3091), 1, - sym__inter_single_quotes, - STATE(3098), 1, - sym__inter_double_quotes, - STATE(3152), 1, + STATE(2141), 1, sym_unquoted, - STATE(3203), 1, + STATE(2181), 1, sym__val_number, - ACTIONS(938), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3237), 2, + STATE(2204), 1, + sym__inter_single_quotes, + STATE(2206), 1, + sym__inter_double_quotes, + ACTIONS(3253), 2, anon_sym_true, anon_sym_false, - ACTIONS(3253), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3257), 2, + ACTIONS(3277), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3147), 2, + ACTIONS(3283), 2, + anon_sym_0o, + anon_sym_0x, + STATE(2140), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(4851), 2, + STATE(4859), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3241), 3, + ACTIONS(3257), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3259), 3, + ACTIONS(3279), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2472), 4, + STATE(2163), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3180), 13, + STATE(2178), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147582,189 +147721,226 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9671] = 36, + [9659] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(799), 1, + ACTIONS(3044), 1, + ts_builtin_sym_end, + STATE(1360), 1, + aux_sym__block_body_repeat1, + STATE(1372), 1, + sym_comment, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3040), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(821), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, - ACTIONS(841), 1, - aux_sym_unquoted_token1, - ACTIONS(843), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3042), 45, sym_raw_string_begin, - ACTIONS(1240), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3204), 1, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(3206), 1, anon_sym_LPAREN, - ACTIONS(3208), 1, anon_sym_LBRACE, - ACTIONS(3210), 1, - anon_sym_DOT_DOT, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3224), 1, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3226), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3275), 1, - anon_sym_null, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - sym_val_date, - STATE(1374), 1, + anon_sym_CARET, + [9735] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1373), 1, sym_comment, - STATE(2956), 1, - sym_unquoted, - STATE(3023), 1, - sym__val_number, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(3526), 1, - sym__val_number_decimal, - STATE(3941), 1, - sym_val_bool, - ACTIONS(823), 2, + ACTIONS(2148), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3214), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3273), 2, + ACTIONS(2146), 49, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3281), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3060), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(4992), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3220), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3277), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3021), 13, - sym_val_nothing, - sym_val_variable, - sym_val_cellpath, - 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, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, [9805] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3287), 1, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(2970), 1, + anon_sym_0b, + ACTIONS(2982), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2984), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3303), 1, anon_sym_null, - ACTIONS(3291), 1, + ACTIONS(3307), 1, anon_sym_LBRACK, - ACTIONS(3293), 1, + ACTIONS(3309), 1, anon_sym_LPAREN, - ACTIONS(3295), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR, - ACTIONS(3297), 1, + ACTIONS(3313), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, + ACTIONS(3315), 1, anon_sym_DOT_DOT, - ACTIONS(3301), 1, - anon_sym_LPAREN2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3313), 1, - anon_sym_0b, ACTIONS(3317), 1, - sym_val_date, - ACTIONS(3319), 1, - anon_sym_DQUOTE, + anon_sym_LPAREN2, ACTIONS(3321), 1, - anon_sym_SQUOTE, + aux_sym__val_number_decimal_token1, ACTIONS(3323), 1, - anon_sym_BQUOTE, - ACTIONS(3325), 1, - anon_sym_DOLLAR_SQUOTE, + aux_sym__val_number_decimal_token2, ACTIONS(3327), 1, - anon_sym_DOLLAR_DQUOTE, + sym_val_date, ACTIONS(3329), 1, aux_sym_unquoted_token1, - ACTIONS(3331), 1, - sym_raw_string_begin, - STATE(1375), 1, + STATE(1374), 1, sym_comment, - STATE(1841), 1, + STATE(3003), 1, + sym__inter_single_quotes, + STATE(3005), 1, + sym__inter_double_quotes, + STATE(3008), 1, + sym__val_number, + STATE(3567), 1, sym__val_number_decimal, - STATE(2116), 1, + STATE(4276), 1, sym_val_bool, - STATE(2168), 1, - sym__inter_single_quotes, - STATE(2176), 1, + STATE(4594), 1, sym_unquoted, - STATE(2178), 1, - sym__val_number, - STATE(2179), 1, - sym__inter_double_quotes, - ACTIONS(3285), 2, + ACTIONS(2972), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3301), 2, anon_sym_true, anon_sym_false, - ACTIONS(3303), 2, + ACTIONS(3319), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3309), 2, + ACTIONS(3325), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3315), 2, - anon_sym_0o, - anon_sym_0x, - STATE(2174), 2, + STATE(4591), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5050), 2, + STATE(5025), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3289), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3311), 3, + ACTIONS(2968), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2160), 4, + ACTIONS(3305), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2171), 13, + STATE(3006), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147778,12 +147954,17 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9939] = 4, + [9939] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1376), 1, + STATE(1349), 1, + aux_sym__block_body_repeat1, + STATE(1375), 1, sym_comment, - ACTIONS(3335), 10, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3040), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147794,9 +147975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3333), 48, + ACTIONS(3042), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147820,8 +148000,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -147843,12 +148021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10008] = 4, + [10012] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1377), 1, + STATE(1376), 1, sym_comment, - ACTIONS(3339), 10, + ACTIONS(3237), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147859,7 +148037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3337), 48, + ACTIONS(3239), 48, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -147908,12 +148086,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10077] = 4, + [10081] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1378), 1, + ACTIONS(2569), 1, + sym__newline, + ACTIONS(3335), 1, + anon_sym_SEMI, + STATE(1356), 1, + aux_sym__repeat_newline, + STATE(1377), 1, sym_comment, - ACTIONS(3341), 10, + ACTIONS(3331), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147924,7 +148108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3343), 48, + ACTIONS(3333), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147949,13 +148133,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147973,85 +148154,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10146] = 12, + [10156] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3345), 1, - anon_sym_DOT, - STATE(1379), 1, + ACTIONS(3239), 1, + anon_sym_RPAREN, + STATE(1378), 1, sym_comment, - STATE(1434), 1, - sym__immediate_decimal, - ACTIONS(3347), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3349), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(698), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 41, - anon_sym_in, + ACTIONS(3341), 2, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [10231] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1380), 1, - sym_comment, - ACTIONS(3084), 10, + ACTIONS(3337), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148062,9 +148175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 48, + ACTIONS(3339), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148088,8 +148200,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148111,17 +148221,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10300] = 6, + [10229] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_RPAREN, - STATE(1381), 1, + STATE(1379), 1, sym_comment, - ACTIONS(3355), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3351), 10, + ACTIONS(3344), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148132,7 +148237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3353), 45, + ACTIONS(3346), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148157,10 +148262,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -148178,17 +148286,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10373] = 6, + [10298] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1357), 1, - aux_sym__block_body_repeat1, - STATE(1382), 1, + STATE(1380), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3042), 10, + ACTIONS(3350), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148199,8 +148302,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3348), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148224,6 +148328,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148245,18 +148351,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10446] = 7, + [10367] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2557), 1, - sym__newline, - ACTIONS(3362), 1, - anon_sym_SEMI, - STATE(1355), 1, - aux_sym__repeat_newline, - STATE(1383), 1, + STATE(1381), 1, sym_comment, - ACTIONS(3358), 10, + ACTIONS(3352), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148267,7 +148367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3360), 45, + ACTIONS(3354), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148292,10 +148392,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -148313,10 +148416,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, + [10436] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3356), 1, + anon_sym_DOT, + STATE(1382), 1, + sym_comment, + STATE(1435), 1, + sym__immediate_decimal, + ACTIONS(3358), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3360), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(681), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1584), 41, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, [10521] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1384), 1, + STATE(1383), 1, sym_comment, ACTIONS(3364), 10, anon_sym_export, @@ -148329,8 +148505,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3366), 48, + ACTIONS(3362), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148360,7 +148537,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -148381,9 +148557,9 @@ static const uint16_t ts_small_parse_table[] = { [10590] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1385), 1, + STATE(1384), 1, sym_comment, - ACTIONS(3368), 10, + ACTIONS(3366), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148394,7 +148570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3370), 48, + ACTIONS(3368), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148443,39 +148619,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10659] = 12, + [10659] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(3372), 1, - anon_sym_DOT, - STATE(1386), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + STATE(1385), 1, sym_comment, - STATE(1443), 1, + STATE(1485), 1, sym__immediate_decimal, - ACTIONS(3374), 2, + ACTIONS(3370), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3376), 2, + ACTIONS(3372), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(929), 2, + STATE(829), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1588), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 40, - ts_builtin_sym_end, + ACTIONS(1584), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148488,6 +148661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -148515,36 +148690,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10743] = 11, + [10741] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + STATE(1386), 1, + sym_comment, + ACTIONS(3227), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3229), 47, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [10809] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, sym__unquoted_pattern, + ACTIONS(1657), 1, + anon_sym_DOLLAR, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + ACTIONS(3374), 1, + anon_sym_DOT, STATE(1387), 1, sym_comment, - STATE(1486), 1, + STATE(1441), 1, sym__immediate_decimal, - ACTIONS(3378), 2, + ACTIONS(3376), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, + ACTIONS(3378), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(911), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1588), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 41, + ACTIONS(1584), 40, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148557,8 +148799,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -148586,36 +148826,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10825] = 11, + [10893] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(3386), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + STATE(2105), 1, + sym__val_number_decimal, + STATE(4811), 1, + sym_env_var, + STATE(5156), 1, + sym_cmd_identifier, + ACTIONS(3380), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3399), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1388), 2, + sym_comment, + aux_sym_pipe_element_repeat2, + ACTIONS(3391), 6, anon_sym_DOLLAR, - ACTIONS(1588), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3389), 17, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(3383), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [10979] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(1388), 1, + STATE(1389), 1, sym_comment, - STATE(1471), 1, + STATE(1474), 1, sym__immediate_decimal, - ACTIONS(3378), 2, + ACTIONS(3370), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, + ACTIONS(3372), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(871), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1635), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 41, + ACTIONS(1633), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148657,102 +148970,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10907] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1389), 1, - sym_comment, - ACTIONS(3182), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3184), 47, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10975] = 13, + [11061] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3388), 1, + ACTIONS(3408), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3395), 1, + ACTIONS(3415), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3398), 1, + ACTIONS(3418), 1, aux_sym__val_number_decimal_token2, - STATE(2103), 1, + STATE(2105), 1, sym__val_number_decimal, - STATE(4391), 1, + STATE(4410), 1, sym_env_var, - STATE(4838), 1, + STATE(5156), 1, sym_cmd_identifier, - ACTIONS(3382), 2, + ACTIONS(3402), 2, anon_sym_export, anon_sym_in, - ACTIONS(3401), 2, + ACTIONS(3421), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, STATE(1390), 2, sym_comment, aux_sym_pipe_element_parenthesized_repeat2, - ACTIONS(3393), 6, + ACTIONS(3413), 6, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3391), 17, + ACTIONS(3411), 17, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148770,7 +149019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3385), 23, + ACTIONS(3405), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148794,12 +149043,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [11061] = 4, + [11147] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1391), 1, sym_comment, - ACTIONS(3351), 10, + ACTIONS(3337), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148810,7 +149059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3353), 47, + ACTIONS(3339), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148858,60 +149107,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11129] = 13, - ACTIONS(3), 1, + [11215] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3410), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3420), 1, - aux_sym__val_number_decimal_token2, - STATE(2103), 1, - sym__val_number_decimal, - STATE(4759), 1, - sym_env_var, - STATE(4838), 1, - sym_cmd_identifier, - ACTIONS(3404), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3423), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1392), 2, - sym_comment, - aux_sym_pipe_element_repeat2, - ACTIONS(3415), 6, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3413), 17, + ACTIONS(3411), 1, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3407), 23, + ACTIONS(3424), 1, + sym__newline, + ACTIONS(3426), 1, + sym__space, + STATE(1392), 1, + sym_comment, + STATE(1393), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3413), 52, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -148925,213 +149140,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [11215] = 33, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1386), 1, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(1390), 1, anon_sym_DOLLAR, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1418), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1502), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1504), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3426), 1, - anon_sym_null, - ACTIONS(3428), 1, + anon_sym_DASH2, anon_sym_LBRACE, - ACTIONS(3430), 1, anon_sym_DOT_DOT, - ACTIONS(3434), 1, - sym_val_date, - STATE(1393), 1, - sym_comment, - STATE(3676), 1, - sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(4037), 1, - sym_expr_parenthesized, - STATE(4165), 1, - sym__val_number, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - STATE(4768), 1, - sym_block, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1482), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1506), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3432), 2, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4774), 2, - sym_val_range, - sym__value, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1404), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(4536), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - 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, - [11340] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(2658), 1, - anon_sym_LBRACE, - ACTIONS(2662), 1, - sym_val_date, - ACTIONS(3436), 1, - sym__newline, - ACTIONS(3438), 1, - anon_sym_LBRACK, - STATE(1394), 1, - sym_comment, - STATE(1424), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(2247), 1, - aux_sym__types_body_repeat1, - STATE(3555), 1, - sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, - STATE(3757), 1, - sym_val_variable, - STATE(4134), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4516), 1, - sym__match_pattern_list, - ACTIONS(1374), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1396), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4290), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4515), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4853), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [11473] = 6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [11288] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3442), 1, + ACTIONS(3430), 1, sym__newline, - ACTIONS(3445), 1, + ACTIONS(3433), 1, sym__space, - ACTIONS(3448), 1, + ACTIONS(3436), 1, sym_raw_string_begin, - STATE(1395), 2, + STATE(1393), 2, sym_comment, aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3440), 52, + ACTIONS(3428), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -149184,37 +149238,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11544] = 11, + [11359] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1396), 1, - sym_comment, - STATE(1504), 1, - sym__immediate_decimal, - ACTIONS(3450), 2, + ACTIONS(3438), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1343), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(3440), 1, + aux_sym__immediate_decimal_token5, + STATE(1394), 1, + sym_comment, + ACTIONS(747), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 40, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149227,6 +149269,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149245,6 +149290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149254,37 +149300,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11625] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11430] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1397), 1, + ACTIONS(3442), 1, + anon_sym_DOT, + ACTIONS(3444), 1, + aux_sym__immediate_decimal_token5, + STATE(1395), 1, sym_comment, - STATE(1505), 1, - sym__immediate_decimal, - ACTIONS(3450), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1311), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(739), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 40, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149297,6 +149334,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149315,6 +149355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149324,73 +149365,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11706] = 7, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11501] = 37, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3391), 1, + ACTIONS(1376), 1, + anon_sym_null, + ACTIONS(1386), 1, + anon_sym_LPAREN, + ACTIONS(1398), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1400), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1406), 1, + anon_sym_0b, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1424), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(3454), 1, + ACTIONS(1568), 1, + anon_sym_DOT_DOT, + ACTIONS(2716), 1, + anon_sym_DOLLAR, + ACTIONS(2718), 1, + anon_sym_LBRACE, + ACTIONS(2720), 1, + sym_val_date, + ACTIONS(3446), 1, sym__newline, - ACTIONS(3456), 1, - sym__space, - STATE(1395), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(1398), 1, + ACTIONS(3448), 1, + anon_sym_LBRACK, + STATE(1396), 1, sym_comment, - ACTIONS(3393), 52, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + STATE(1417), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(2253), 1, + aux_sym__types_body_repeat1, + STATE(3574), 1, + sym__val_number_decimal, + STATE(3790), 1, + sym_expr_parenthesized, + STATE(3791), 1, + sym_val_variable, + STATE(4191), 1, + sym_val_bool, + STATE(4358), 1, + sym__val_number, + STATE(4610), 1, + sym__match_pattern_list, + ACTIONS(1374), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - aux_sym_expr_unary_token1, + ACTIONS(1396), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(1402), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + ACTIONS(1408), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4133), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(4609), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5020), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1378), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [11779] = 33, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4611), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [11634] = 33, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -149411,52 +149485,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(1502), 1, + ACTIONS(1482), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1504), 1, + ACTIONS(1484), 1, aux_sym__val_number_decimal_token2, ACTIONS(1578), 1, anon_sym_LBRACK, - ACTIONS(3426), 1, + ACTIONS(3450), 1, anon_sym_null, - ACTIONS(3428), 1, + ACTIONS(3452), 1, anon_sym_LBRACE, - ACTIONS(3430), 1, + ACTIONS(3454), 1, anon_sym_DOT_DOT, - ACTIONS(3434), 1, + ACTIONS(3458), 1, sym_val_date, - STATE(1399), 1, + STATE(1397), 1, sym_comment, - STATE(3676), 1, + STATE(3757), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3828), 1, sym_val_variable, - STATE(4033), 1, + STATE(4010), 1, sym_expr_parenthesized, - STATE(4165), 1, + STATE(4358), 1, sym__val_number, - STATE(4452), 1, + STATE(4592), 1, sym__inter_single_quotes, - STATE(4453), 1, + STATE(4596), 1, sym__inter_double_quotes, - STATE(4761), 1, + STATE(4749), 1, sym_block, ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1482), 2, + ACTIONS(1462), 2, anon_sym_true, anon_sym_false, - ACTIONS(1506), 2, + ACTIONS(1486), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3432), 2, + ACTIONS(3456), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4765), 2, + STATE(4769), 2, sym_val_range, sym__value, - STATE(3505), 4, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, @@ -149468,7 +149542,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(4536), 13, + STATE(4601), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -149482,25 +149556,37 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11904] = 6, + [11759] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3458), 1, - anon_sym_DOT, - ACTIONS(3460), 1, - aux_sym__immediate_decimal_token5, - STATE(1400), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(1657), 1, + anon_sym_DOLLAR, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + STATE(1398), 1, sym_comment, - ACTIONS(739), 8, + STATE(1496), 1, + sym__immediate_decimal, + ACTIONS(3460), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3462), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1343), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1635), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 46, + ACTIONS(1633), 40, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149513,9 +149599,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149534,7 +149617,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149544,93 +149626,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [11975] = 6, + [11840] = 33, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3462), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3464), 1, - aux_sym__immediate_decimal_token5, - STATE(1401), 1, + ACTIONS(1386), 1, + anon_sym_LPAREN, + ACTIONS(1390), 1, + anon_sym_DOLLAR, + ACTIONS(1406), 1, + anon_sym_0b, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1418), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1420), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(1482), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1484), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1578), 1, + anon_sym_LBRACK, + ACTIONS(3450), 1, + anon_sym_null, + ACTIONS(3452), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_DOT_DOT, + ACTIONS(3458), 1, + sym_val_date, + STATE(1399), 1, sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 46, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12046] = 6, + STATE(3757), 1, + sym__val_number_decimal, + STATE(3828), 1, + sym_val_variable, + STATE(4009), 1, + sym_expr_parenthesized, + STATE(4358), 1, + sym__val_number, + STATE(4592), 1, + sym__inter_single_quotes, + STATE(4596), 1, + sym__inter_double_quotes, + STATE(4717), 1, + sym_block, + ACTIONS(1408), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1462), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1486), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3456), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4728), 2, + sym_val_range, + sym__value, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1404), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(4601), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + 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, + [11965] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3466), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3468), 1, - aux_sym__immediate_decimal_token5, - STATE(1402), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1657), 1, + anon_sym_DOLLAR, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + STATE(1400), 1, sym_comment, - ACTIONS(747), 8, + STATE(1499), 1, + sym__immediate_decimal, + ACTIONS(3460), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3462), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1291), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 45, + ACTIONS(1584), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -149644,7 +149761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149663,7 +149779,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149673,17 +149788,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12116] = 5, + [12046] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3466), 1, + sym__space, + ACTIONS(3469), 1, + sym_raw_string_begin, + STATE(1401), 2, + sym_comment, + aux_sym_pipe_element_repeat1, + ACTIONS(3464), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [12114] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3470), 1, + ACTIONS(3471), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3473), 1, aux_sym__immediate_decimal_token5, - STATE(1403), 1, + STATE(1402), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -149692,7 +149869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(749), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149705,9 +149883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149739,17 +149915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12184] = 5, + [12184] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3474), 1, - sym__space, - ACTIONS(3477), 1, - sym_raw_string_begin, - STATE(1404), 2, + STATE(1403), 1, sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(3472), 52, + ACTIONS(3475), 2, + sym_raw_string_begin, + sym__space, + ACTIONS(858), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -149776,6 +149950,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -149802,15 +149977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12252] = 5, + [12250] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3479), 1, + ACTIONS(3477), 1, sym__newline, - STATE(1405), 2, + STATE(1404), 2, aux_sym__repeat_newline, sym_comment, - ACTIONS(1960), 10, + ACTIONS(1921), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149821,7 +149996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1955), 43, + ACTIONS(1916), 43, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149865,33 +150040,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12320] = 11, + [12318] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1724), 1, sym__unquoted_pattern, - ACTIONS(3482), 1, + ACTIONS(3480), 1, anon_sym_DOT_DOT2, - ACTIONS(3486), 1, + ACTIONS(3484), 1, sym_filesize_unit, - ACTIONS(3488), 1, + ACTIONS(3486), 1, sym_duration_unit, - STATE(1406), 1, + STATE(1405), 1, sym_comment, - STATE(4739), 1, + STATE(4718), 1, sym__expr_parenthesized_immediate, - ACTIONS(3484), 2, + ACTIONS(3482), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 42, + ACTIONS(908), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149934,78 +150109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12400] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(3490), 1, - sym__space, - STATE(1404), 1, - aux_sym_pipe_element_repeat1, - STATE(1407), 1, - sym_comment, - ACTIONS(3415), 52, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [12470] = 6, + [12398] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3494), 1, + ACTIONS(3444), 1, aux_sym__immediate_decimal_token5, - STATE(1408), 1, + STATE(1406), 1, sym_comment, ACTIONS(739), 8, anon_sym_GT2, @@ -150016,8 +150125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 45, - ts_builtin_sym_end, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150030,7 +150138,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150062,15 +150172,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12540] = 4, + [12466] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(1409), 1, - sym_comment, - ACTIONS(3496), 2, + ACTIONS(3389), 1, sym_raw_string_begin, + ACTIONS(3488), 1, sym__space, - ACTIONS(858), 53, + STATE(1401), 1, + aux_sym_pipe_element_repeat1, + STATE(1407), 1, + sym_comment, + ACTIONS(3391), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -150097,7 +150210,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -150124,14 +150236,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12606] = 5, + [12536] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3460), 1, + ACTIONS(3490), 1, aux_sym__immediate_decimal_token5, - STATE(1410), 1, + STATE(1408), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150140,7 +150252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 46, + ACTIONS(757), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150187,166 +150299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12674] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1411), 1, - sym_comment, - ACTIONS(3500), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(3498), 52, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [12739] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3505), 1, - anon_sym_null, - ACTIONS(3511), 1, - anon_sym_LBRACK, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3517), 1, - anon_sym_DOLLAR, - ACTIONS(3520), 1, - anon_sym_LBRACE, - ACTIONS(3523), 1, - anon_sym_DOT_DOT, - ACTIONS(3529), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3532), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3541), 1, - anon_sym_0b, - ACTIONS(3547), 1, - sym_val_date, - ACTIONS(3550), 1, - anon_sym_DQUOTE, - ACTIONS(3553), 1, - anon_sym_SQUOTE, - ACTIONS(3556), 1, - anon_sym_BQUOTE, - ACTIONS(3559), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3562), 1, - sym_raw_string_begin, - STATE(3672), 1, - sym__val_number_decimal, - STATE(4165), 1, - sym__val_number, - STATE(4191), 1, - sym_expr_parenthesized, - STATE(4192), 1, - sym_val_variable, - STATE(4516), 1, - sym__match_pattern_list, - STATE(4685), 1, - sym_val_bool, - ACTIONS(3502), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3526), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3535), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3544), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1412), 2, - sym_comment, - aux_sym__match_pattern_list_body_repeat1, - STATE(4515), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4732), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4853), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3508), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3538), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [12864] = 5, + [12604] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3565), 1, + ACTIONS(3492), 1, + anon_sym_DOT, + ACTIONS(3494), 1, aux_sym__immediate_decimal_token5, - STATE(1413), 1, + STATE(1409), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150355,7 +150317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 45, + ACTIONS(741), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -150401,16 +150363,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12931] = 6, + [12674] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3567), 1, - anon_sym_DOT, - ACTIONS(3569), 1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(1912), 1, + aux_sym_unquoted_token1, + ACTIONS(2752), 1, + anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_LBRACK, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + ACTIONS(2873), 1, + anon_sym_LBRACE, + ACTIONS(3498), 1, + anon_sym_null, + ACTIONS(3502), 1, + anon_sym_DOT_DOT, + ACTIONS(3506), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3508), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3512), 1, + sym_val_date, + STATE(693), 1, + sym__val_number, + STATE(1410), 1, + sym_comment, + STATE(3617), 1, + sym__val_number_decimal, + STATE(3704), 1, + sym_expr_parenthesized, + STATE(3705), 1, + sym_val_variable, + STATE(4159), 1, + sym__match_pattern_expression, + STATE(4161), 1, + sym__match_pattern_list, + STATE(4170), 1, + sym_unquoted, + STATE(4320), 1, + sym_val_bool, + STATE(4619), 1, + sym__match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3496), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3504), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3510), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4160), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5001), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(189), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3500), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4166), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [12803] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3516), 1, aux_sym__immediate_decimal_token5, - STATE(1414), 1, + STATE(1411), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150418,7 +150473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 45, + ACTIONS(1738), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150464,80 +150519,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13000] = 11, + [12872] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - ACTIONS(3571), 1, - anon_sym_DOT_DOT2, - ACTIONS(3575), 1, - sym_filesize_unit, - ACTIONS(3577), 1, - sym_duration_unit, - STATE(1415), 1, + ACTIONS(1376), 1, + anon_sym_null, + ACTIONS(1386), 1, + anon_sym_LPAREN, + ACTIONS(1398), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1400), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1406), 1, + anon_sym_0b, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1424), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(1568), 1, + anon_sym_DOT_DOT, + ACTIONS(2716), 1, + anon_sym_DOLLAR, + ACTIONS(2718), 1, + anon_sym_LBRACE, + ACTIONS(2720), 1, + sym_val_date, + ACTIONS(3448), 1, + anon_sym_LBRACK, + STATE(1412), 1, sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3573), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [13079] = 4, + STATE(1421), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(3574), 1, + sym__val_number_decimal, + STATE(3790), 1, + sym_expr_parenthesized, + STATE(3791), 1, + sym_val_variable, + STATE(4136), 1, + sym__match_pattern_expression, + STATE(4137), 1, + sym__unquoted_in_list, + STATE(4191), 1, + sym_val_bool, + STATE(4358), 1, + sym__val_number, + STATE(4610), 1, + sym__match_pattern_list, + ACTIONS(1374), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1396), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1402), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1408), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4609), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5020), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1378), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1404), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4611), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [13001] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1416), 1, + STATE(1413), 1, sym_comment, - ACTIONS(2098), 10, + ACTIONS(2148), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150548,7 +150628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 44, + ACTIONS(2146), 44, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150593,91 +150673,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13144] = 36, + [13066] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3518), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + aux_sym__immediate_decimal_token5, + STATE(1414), 1, + sym_comment, + ACTIONS(1752), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 45, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [13135] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2752), 1, anon_sym_LPAREN, - ACTIONS(2876), 1, + ACTIONS(2869), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2873), 1, anon_sym_LBRACE, - ACTIONS(3581), 1, + ACTIONS(3498), 1, anon_sym_null, - ACTIONS(3585), 1, + ACTIONS(3502), 1, anon_sym_DOT_DOT, - ACTIONS(3589), 1, + ACTIONS(3506), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3591), 1, + ACTIONS(3508), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3595), 1, + ACTIONS(3512), 1, sym_val_date, - STATE(694), 1, + STATE(693), 1, sym__val_number, - STATE(1417), 1, + STATE(1415), 1, sym_comment, - STATE(3501), 1, + STATE(3617), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(3704), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(3705), 1, sym_val_variable, - STATE(4087), 1, - sym_val_bool, - STATE(4285), 1, + STATE(4159), 1, sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4161), 1, sym__match_pattern_list, - STATE(4587), 1, + STATE(4170), 1, + sym_unquoted, + STATE(4320), 1, + sym_val_bool, + STATE(4470), 1, sym__match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3579), 2, + ACTIONS(3496), 2, anon_sym_true, anon_sym_false, - ACTIONS(3587), 2, + ACTIONS(3504), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3593), 2, + ACTIONS(3510), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4160), 2, sym__match_pattern_value, sym_val_range, - STATE(4884), 2, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3583), 3, + ACTIONS(3500), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4166), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150686,7 +150829,69 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13273] = 36, + [13264] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3522), 1, + aux_sym__immediate_decimal_token5, + STATE(1416), 1, + sym_comment, + ACTIONS(755), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(757), 45, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [13331] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1376), 1, @@ -150711,33 +150916,33 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1568), 1, anon_sym_DOT_DOT, - ACTIONS(2656), 1, + ACTIONS(2716), 1, anon_sym_DOLLAR, - ACTIONS(2658), 1, + ACTIONS(2718), 1, anon_sym_LBRACE, - ACTIONS(2662), 1, + ACTIONS(2720), 1, sym_val_date, - ACTIONS(3438), 1, + ACTIONS(3448), 1, anon_sym_LBRACK, - STATE(1412), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1418), 1, + STATE(1417), 1, sym_comment, - STATE(3555), 1, + STATE(1421), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(3574), 1, sym__val_number_decimal, - STATE(3756), 1, + STATE(3790), 1, sym_expr_parenthesized, - STATE(3757), 1, + STATE(3791), 1, sym_val_variable, - STATE(4134), 1, + STATE(4191), 1, sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4295), 1, + STATE(4315), 1, sym__match_pattern_expression, - STATE(4296), 1, + STATE(4318), 1, sym__unquoted_in_list, - STATE(4516), 1, + STATE(4358), 1, + sym__val_number, + STATE(4610), 1, sym__match_pattern_list, ACTIONS(1374), 2, anon_sym_true, @@ -150751,10 +150956,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - STATE(4515), 2, + STATE(4609), 2, sym__match_pattern_value, sym_val_range, - STATE(4853), 2, + STATE(5020), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1378), 3, @@ -150765,12 +150970,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4517), 8, + STATE(4611), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150779,24 +150984,21 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13402] = 6, + [13460] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3597), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3599), 1, - aux_sym__immediate_decimal_token5, - STATE(1419), 1, + STATE(1418), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1726), 45, + ACTIONS(749), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150842,105 +151044,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13471] = 36, + sym_duration_unit, + [13525] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2876), 1, - anon_sym_LBRACK, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LBRACE, - ACTIONS(3581), 1, - anon_sym_null, - ACTIONS(3585), 1, - anon_sym_DOT_DOT, - ACTIONS(3589), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3591), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3595), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(1420), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(1810), 1, + sym__unquoted_pattern, + ACTIONS(3524), 1, + anon_sym_DOT_DOT2, + ACTIONS(3528), 1, + sym_filesize_unit, + ACTIONS(3530), 1, + sym_duration_unit, + STATE(1419), 1, sym_comment, - STATE(3501), 1, - sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, - sym_val_variable, - STATE(4087), 1, - sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(4602), 1, - sym__match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3579), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3587), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3593), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4299), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3583), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13600] = 4, + STATE(4754), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3526), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(908), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [13604] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1421), 1, + STATE(1420), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150949,7 +151127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(851), 46, + ACTIONS(757), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150996,12 +151174,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13665] = 5, + [13669] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3535), 1, + anon_sym_null, + ACTIONS(3541), 1, + anon_sym_LBRACK, + ACTIONS(3544), 1, + anon_sym_LPAREN, + ACTIONS(3547), 1, + anon_sym_DOLLAR, + ACTIONS(3550), 1, + anon_sym_LBRACE, + ACTIONS(3553), 1, + anon_sym_DOT_DOT, + ACTIONS(3559), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3562), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3571), 1, + anon_sym_0b, + ACTIONS(3577), 1, + sym_val_date, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3583), 1, + anon_sym_SQUOTE, + ACTIONS(3586), 1, + anon_sym_BQUOTE, + ACTIONS(3589), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3592), 1, + sym_raw_string_begin, + STATE(3692), 1, + sym__val_number_decimal, + STATE(4149), 1, + sym_expr_parenthesized, + STATE(4150), 1, + sym_val_variable, + STATE(4358), 1, + sym__val_number, + STATE(4610), 1, + sym__match_pattern_list, + STATE(4821), 1, + sym_val_bool, + ACTIONS(3532), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3556), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3565), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3574), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1421), 2, + sym_comment, + aux_sym__match_pattern_list_body_repeat1, + STATE(4609), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4716), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(5020), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3538), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3568), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4611), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [13794] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1422), 1, + sym_comment, + ACTIONS(3597), 2, + sym_raw_string_begin, + sym__space, + ACTIONS(3595), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [13859] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3494), 1, aux_sym__immediate_decimal_token5, - STATE(1422), 1, + STATE(1423), 1, sym_comment, ACTIONS(739), 8, anon_sym_GT2, @@ -151058,12 +151388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13732] = 4, + [13926] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1423), 1, + STATE(1424), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(789), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151072,7 +151402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 46, + ACTIONS(791), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151119,114 +151449,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13797] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(2658), 1, - anon_sym_LBRACE, - ACTIONS(2662), 1, - sym_val_date, - ACTIONS(3438), 1, - anon_sym_LBRACK, - STATE(1412), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1424), 1, - sym_comment, - STATE(3555), 1, - sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, - STATE(3757), 1, - sym_val_variable, - STATE(4134), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4190), 1, - sym__match_pattern_expression, - STATE(4194), 1, - sym__unquoted_in_list, - STATE(4516), 1, - sym__match_pattern_list, - ACTIONS(1374), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1396), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4515), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4853), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13926] = 4, + [13991] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3520), 1, + aux_sym__immediate_decimal_token5, STATE(1425), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1752), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(1750), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151272,17 +151510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [13991] = 6, + [14057] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3599), 1, + anon_sym_DOT, ACTIONS(3601), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3603), 1, aux_sym__immediate_decimal_token5, STATE(1426), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1752), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151290,7 +151527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 44, + ACTIONS(1750), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151335,74 +151572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14059] = 6, + [14125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3605), 1, - anon_sym_DOT, - ACTIONS(3607), 1, - aux_sym__immediate_decimal_token5, STATE(1427), 1, sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 44, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14127] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1428), 1, - sym_comment, - ACTIONS(849), 8, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151411,7 +151586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(851), 45, + ACTIONS(757), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151457,14 +151632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [14191] = 5, + [14189] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3569), 1, + ACTIONS(3603), 1, aux_sym__immediate_decimal_token5, - STATE(1429), 1, + STATE(1428), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151472,7 +151647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 45, + ACTIONS(1816), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151518,12 +151693,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14257] = 4, + [14255] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1430), 1, + STATE(1429), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151532,7 +151707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 45, + ACTIONS(749), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151578,14 +151753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [14321] = 5, + [14319] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3609), 1, + ACTIONS(3605), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3607), 1, aux_sym__immediate_decimal_token5, - STATE(1431), 1, + STATE(1430), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151593,7 +151770,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 45, + ACTIONS(1738), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151606,9 +151784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151642,9 +151818,9 @@ static const uint16_t ts_small_parse_table[] = { [14387] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1432), 1, + STATE(1431), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(789), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151653,7 +151829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 45, + ACTIONS(791), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151699,12 +151875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [14451] = 4, + [14451] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1433), 1, + ACTIONS(3609), 1, + aux_sym__immediate_decimal_token5, + STATE(1432), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151712,7 +151890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 45, + ACTIONS(1816), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151725,9 +151904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151758,27 +151935,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14514] = 8, + [14516] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, ACTIONS(3611), 1, anon_sym_DOT_DOT2, - STATE(1434), 1, + STATE(1433), 1, sym_comment, ACTIONS(3613), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(2003), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 42, + ACTIONS(2001), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151821,12 +151998,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14585] = 4, + [14587] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1435), 1, + ACTIONS(3601), 1, + aux_sym__immediate_decimal_token5, + STATE(1434), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1752), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151834,7 +152013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 45, + ACTIONS(1750), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151847,9 +152027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151880,27 +152058,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14648] = 8, + [14652] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, ACTIONS(3615), 1, anon_sym_DOT_DOT2, - STATE(1436), 1, + STATE(1435), 1, sym_comment, ACTIONS(3617), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 42, + ACTIONS(2011), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151943,12 +152121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14719] = 4, + [14723] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1437), 1, + STATE(1436), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151956,7 +152134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 45, + ACTIONS(1738), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152002,14 +152180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14782] = 5, + [14786] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3607), 1, - aux_sym__immediate_decimal_token5, - STATE(1438), 1, + STATE(1437), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1856), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152017,8 +152193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 44, - ts_builtin_sym_end, + ACTIONS(1854), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152031,7 +152206,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152062,14 +152239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14847] = 5, + [14849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3619), 1, - aux_sym__immediate_decimal_token5, - STATE(1439), 1, + STATE(1438), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152077,8 +152252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 44, - ts_builtin_sym_end, + ACTIONS(1816), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152091,7 +152265,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152125,20 +152301,20 @@ static const uint16_t ts_small_parse_table[] = { [14912] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3621), 1, + ACTIONS(3619), 1, anon_sym_DOT, - ACTIONS(3623), 1, + ACTIONS(3621), 1, aux_sym__immediate_decimal_token5, - STATE(1440), 1, + STATE(1439), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1752), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 43, + ACTIONS(1750), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152182,29 +152358,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14978] = 8, + [14978] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(3625), 1, - anon_sym_DOT_DOT2, - STATE(1441), 1, + ACTIONS(1842), 1, + anon_sym_DOT2, + STATE(421), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(446), 1, + sym_path, + STATE(942), 1, + sym_cell_path, + STATE(1440), 1, sym_comment, - ACTIONS(3627), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1851), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(3623), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -152216,6 +152389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1848), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -152244,23 +152421,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15048] = 6, + [15050] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3629), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3631), 1, - aux_sym__immediate_decimal_token5, - STATE(1442), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(3627), 1, + anon_sym_DOT_DOT2, + STATE(1441), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(3629), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 43, + ACTIONS(2011), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152273,9 +152455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152294,7 +152474,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152304,27 +152483,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15114] = 8, + [15120] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(3633), 1, - anon_sym_DOT_DOT2, - STATE(1443), 1, + STATE(1442), 1, sym_comment, - ACTIONS(3635), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 41, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152357,6 +152529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152366,12 +152539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15184] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15182] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1444), 1, + STATE(1443), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1856), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152379,7 +152554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 44, + ACTIONS(1854), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152424,59 +152599,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15246] = 22, + [15244] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3645), 1, + ACTIONS(3639), 1, anon_sym_LBRACK, - ACTIONS(3647), 1, + ACTIONS(3641), 1, anon_sym_STAR2, - STATE(1445), 1, + STATE(1444), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(4326), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4100), 1, sym__command_name, - STATE(4327), 1, - sym_scope_pattern, - STATE(4328), 1, + STATE(4102), 1, sym_wild_card, - STATE(4329), 1, + STATE(4103), 1, sym_command_list, - ACTIONS(3637), 2, + STATE(4172), 1, + sym_scope_pattern, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3643), 4, + ACTIONS(3637), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -152500,122 +152675,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15344] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(923), 1, - sym_cell_path, - STATE(1446), 1, - sym_comment, - ACTIONS(1853), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3653), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1850), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15416] = 22, + [15342] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3645), 1, + ACTIONS(3639), 1, anon_sym_LBRACK, - ACTIONS(3647), 1, + ACTIONS(3641), 1, anon_sym_STAR2, - STATE(1447), 1, + STATE(1445), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(4270), 1, - sym_scope_pattern, - STATE(4326), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4100), 1, sym__command_name, - STATE(4328), 1, + STATE(4101), 1, + sym_scope_pattern, + STATE(4102), 1, sym_wild_card, - STATE(4329), 1, + STATE(4103), 1, sym_command_list, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3657), 4, + ACTIONS(3647), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -152639,70 +152751,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15514] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1448), 1, - sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 44, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [15576] = 4, + [15440] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1449), 1, + STATE(1446), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152710,7 +152764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 44, + ACTIONS(1738), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152755,83 +152809,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15638] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_DOT2, - STATE(518), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, - sym_path, - STATE(1292), 1, - sym_cell_path, - STATE(1450), 1, - sym_comment, - ACTIONS(1853), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3653), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1850), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15709] = 5, + [15502] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3659), 1, + ACTIONS(3649), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3651), 1, aux_sym__immediate_decimal_token5, - STATE(1451), 1, + STATE(1447), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 43, + ACTIONS(1738), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152875,21 +152869,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15772] = 5, + [15568] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3623), 1, - aux_sym__immediate_decimal_token5, - STATE(1452), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(3653), 1, + anon_sym_DOT_DOT2, + STATE(1448), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(3655), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2003), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 43, + ACTIONS(2001), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152902,9 +152903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152923,7 +152922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152933,129 +152931,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15835] = 20, + [15638] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(251), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, ACTIONS(3661), 1, - anon_sym_LPAREN, + aux_sym_cmd_identifier_token1, ACTIONS(3663), 1, - anon_sym_DOLLAR, - STATE(1453), 1, + anon_sym_LBRACK, + ACTIONS(3665), 1, + anon_sym_STAR2, + STATE(1449), 1, sym_comment, - STATE(2101), 1, + STATE(1979), 1, sym__val_number_decimal, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - ACTIONS(277), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3031), 5, + STATE(4327), 1, sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, + STATE(4328), 1, sym_val_string, - sym_val_interpolated, - ACTIONS(271), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [15928] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(251), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - STATE(1454), 1, - sym_comment, - STATE(2101), 1, - sym__val_number_decimal, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - ACTIONS(277), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + STATE(4415), 1, + sym__command_name, + STATE(4422), 1, + sym_wild_card, + STATE(4424), 1, + sym_command_list, + STATE(4507), 1, + sym_scope_pattern, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2454), 4, + ACTIONS(3657), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3637), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(501), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2839), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(271), 23, + ACTIONS(3659), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153079,7 +153006,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16021] = 22, + [15735] = 22, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(91), 1, @@ -153090,47 +153017,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3669), 1, + ACTIONS(3661), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3671), 1, + ACTIONS(3663), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3665), 1, anon_sym_STAR2, - STATE(1455), 1, + STATE(1450), 1, sym_comment, - STATE(1976), 1, + STATE(1979), 1, sym__val_number_decimal, - STATE(4246), 1, + STATE(4327), 1, sym_cmd_identifier, - STATE(4248), 1, + STATE(4328), 1, sym_val_string, - STATE(4456), 1, + STATE(4415), 1, sym__command_name, - STATE(4457), 1, + STATE(4419), 1, sym_scope_pattern, - STATE(4458), 1, + STATE(4422), 1, sym_wild_card, - STATE(4459), 1, + STATE(4424), 1, sym_command_list, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, + ACTIONS(3657), 2, anon_sym_export, anon_sym_in, - ACTIONS(3643), 3, + ACTIONS(3647), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(480), 4, + STATE(501), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3667), 23, + ACTIONS(3659), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153154,115 +153081,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16118] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3675), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3677), 1, - aux_sym__immediate_decimal_token5, - STATE(1456), 1, - sym_comment, - ACTIONS(1728), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 42, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [16183] = 20, + [15832] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(251), 1, aux_sym_cmd_identifier_token1, - ACTIONS(958), 1, + ACTIONS(864), 1, sym_raw_string_begin, - ACTIONS(3263), 1, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(3265), 1, + ACTIONS(3219), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, + ACTIONS(3221), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, + ACTIONS(3225), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, + ACTIONS(3667), 1, anon_sym_LPAREN, - ACTIONS(3681), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - STATE(1457), 1, + STATE(1451), 1, sym_comment, - STATE(2085), 1, + STATE(2104), 1, sym__val_number_decimal, - STATE(3091), 1, + STATE(3009), 1, sym__inter_single_quotes, - STATE(3098), 1, + STATE(3012), 1, sym__inter_double_quotes, - ACTIONS(45), 2, + ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2472), 4, + STATE(2499), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2962), 5, + STATE(2906), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(39), 23, + ACTIONS(271), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153286,98 +153154,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16276] = 22, + [15925] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, ACTIONS(3671), 1, - anon_sym_LBRACK, + aux_sym__immediate_decimal_token1, ACTIONS(3673), 1, - anon_sym_STAR2, - STATE(1458), 1, - sym_comment, - STATE(1976), 1, - sym__val_number_decimal, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, - sym_val_string, - STATE(4379), 1, - sym_scope_pattern, - STATE(4456), 1, - sym__command_name, - STATE(4458), 1, - sym_wild_card, - STATE(4459), 1, - sym_command_list, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3657), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3667), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [16373] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - ACTIONS(3685), 1, aux_sym__immediate_decimal_token5, - STATE(1459), 1, + STATE(1452), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 42, + ACTIONS(1738), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153420,22 +153213,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16438] = 6, + [15990] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1460), 1, + ACTIONS(3675), 1, + aux_sym__immediate_decimal_token5, + STATE(1453), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(1818), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 42, + sym__unquoted_pattern, + ACTIONS(1816), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153469,6 +153261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -153478,19 +153271,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16502] = 4, + [16053] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1461), 1, + ACTIONS(3677), 1, + anon_sym_DOT, + ACTIONS(3679), 1, + aux_sym__immediate_decimal_token5, + STATE(1454), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1752), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 43, + ACTIONS(1750), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153503,9 +153301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -153534,23 +153330,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16562] = 6, + [16118] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1462), 1, + ACTIONS(2251), 1, + anon_sym_DOT2, + STATE(525), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(827), 1, + sym_path, + STATE(1324), 1, + sym_cell_path, + STATE(1455), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(1851), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 42, - anon_sym_in, + ACTIONS(3623), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -153562,9 +153362,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(1848), 29, + anon_sym_in, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -153592,19 +153392,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16626] = 4, + [16189] = 20, ACTIONS(3), 1, anon_sym_POUND, - STATE(1463), 1, + ACTIONS(19), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(978), 1, + sym_raw_string_begin, + ACTIONS(3181), 1, + anon_sym_DQUOTE, + ACTIONS(3183), 1, + anon_sym_SQUOTE, + ACTIONS(3185), 1, + anon_sym_BQUOTE, + ACTIONS(3187), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3189), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + STATE(1456), 1, + sym_comment, + STATE(2083), 1, + sym__val_number_decimal, + STATE(3250), 1, + sym__inter_single_quotes, + STATE(3253), 1, + sym__inter_double_quotes, + ACTIONS(45), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2536), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3123), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(39), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [16282] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3621), 1, + aux_sym__immediate_decimal_token5, + STATE(1457), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1752), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 43, + ACTIONS(1750), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153648,20 +153523,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16686] = 7, + [16345] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(251), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(864), 1, + sym_raw_string_begin, + ACTIONS(3217), 1, + anon_sym_DQUOTE, + ACTIONS(3219), 1, + anon_sym_SQUOTE, + ACTIONS(3221), 1, + anon_sym_BQUOTE, + ACTIONS(3223), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3225), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + STATE(1458), 1, + sym_comment, + STATE(2104), 1, + sym__val_number_decimal, + STATE(3009), 1, + sym__inter_single_quotes, + STATE(3012), 1, + sym__inter_double_quotes, + ACTIONS(277), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2499), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3037), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(271), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [16438] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(3687), 1, sym__entry_separator, - ACTIONS(3689), 1, - anon_sym_RBRACE, - ACTIONS(3691), 1, + ACTIONS(3690), 1, sym_raw_string_begin, - STATE(1464), 1, + STATE(1459), 2, sym_comment, - STATE(1473), 1, aux_sym__types_body_repeat2, - ACTIONS(3687), 45, + ACTIONS(3685), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153691,6 +153636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_PLUS2, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_DOT_DOLLAR, @@ -153707,22 +153653,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16752] = 6, + [16500] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(1465), 1, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(1460), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(2527), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 42, + ACTIONS(2525), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153765,79 +153711,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16816] = 7, + [16564] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3696), 1, + ACTIONS(3694), 1, anon_sym_RBRACE, - ACTIONS(3699), 1, + ACTIONS(3696), 1, sym_raw_string_begin, - STATE(1466), 1, - sym_comment, - STATE(1473), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - ACTIONS(3693), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [16882] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - ACTIONS(3702), 1, - anon_sym_RBRACE, - STATE(1467), 1, + STATE(1461), 1, sym_comment, - STATE(1473), 1, - aux_sym__types_body_repeat2, - ACTIONS(3687), 45, + ACTIONS(3692), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153883,20 +153770,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16948] = 7, + [16630] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3706), 1, + ACTIONS(3700), 1, anon_sym_RBRACE, - ACTIONS(3708), 1, + ACTIONS(3702), 1, sym_raw_string_begin, - STATE(1468), 1, - sym_comment, - STATE(1473), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - ACTIONS(3704), 45, + STATE(1462), 1, + sym_comment, + ACTIONS(3698), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153942,19 +153829,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17014] = 7, + [16696] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3706), 1, + ACTIONS(3707), 1, anon_sym_RBRACE, - ACTIONS(3708), 1, + ACTIONS(3710), 1, sym_raw_string_begin, - STATE(1469), 1, - sym_comment, - STATE(1473), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, + STATE(1463), 1, + sym_comment, ACTIONS(3704), 45, anon_sym_export, anon_sym_alias, @@ -154001,22 +153888,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17080] = 6, + [16762] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(2005), 1, anon_sym_LPAREN2, - STATE(1470), 1, + STATE(1464), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(2003), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 42, + ACTIONS(2001), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154059,22 +153946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17144] = 6, + [16826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(1471), 1, + STATE(1465), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(2387), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 42, + sym__unquoted_pattern, + ACTIONS(2385), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154108,6 +153992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154117,19 +154002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17208] = 4, + [16886] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1472), 1, + STATE(1466), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(1856), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(2501), 43, + ACTIONS(1854), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154173,17 +154058,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17268] = 5, + [16946] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3712), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3715), 1, + ACTIONS(3696), 1, sym_raw_string_begin, - STATE(1473), 2, - sym_comment, + ACTIONS(3713), 1, + anon_sym_RBRACE, + STATE(1459), 1, aux_sym__types_body_repeat2, - ACTIONS(3710), 46, + STATE(1467), 1, + sym_comment, + ACTIONS(3692), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154213,7 +154101,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17012] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(1468), 1, + sym_comment, + ACTIONS(994), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1004), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [17076] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(3696), 1, + sym_raw_string_begin, + ACTIONS(3715), 1, anon_sym_RBRACE, + STATE(1459), 1, + aux_sym__types_body_repeat2, + STATE(1469), 1, + sym_comment, + ACTIONS(3692), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_PLUS2, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_DOT_DOLLAR, @@ -154230,20 +154234,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17330] = 7, + [17142] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2595), 1, + anon_sym_LPAREN2, + ACTIONS(2597), 1, + sym__unquoted_pattern, + STATE(1470), 1, + sym_comment, + ACTIONS(2593), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2591), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [17206] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3691), 1, + ACTIONS(3702), 1, sym_raw_string_begin, ACTIONS(3717), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - STATE(1474), 1, + STATE(1471), 1, + sym_comment, + ACTIONS(3698), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17272] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(3694), 1, + anon_sym_RBRACE, + ACTIONS(3696), 1, + sym_raw_string_begin, + STATE(1459), 1, + aux_sym__types_body_repeat2, + STATE(1472), 1, sym_comment, - ACTIONS(3687), 45, + ACTIONS(3692), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154289,20 +154410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17396] = 7, + [17338] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3696), 1, sym_raw_string_begin, - ACTIONS(3719), 1, + ACTIONS(3715), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - STATE(1475), 1, + STATE(1473), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3692), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154348,22 +154469,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17462] = 5, + [17404] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token5, - STATE(1476), 1, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(1474), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(2585), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 42, - ts_builtin_sym_end, + ACTIONS(2583), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154376,7 +154497,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -154395,7 +154518,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154405,19 +154527,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17524] = 4, + [17468] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1477), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(1475), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1002), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 43, + ACTIONS(1018), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154451,7 +154576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154461,20 +154585,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17584] = 7, + [17532] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3691), 1, + ACTIONS(3702), 1, sym_raw_string_begin, - ACTIONS(3721), 1, + ACTIONS(3719), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - STATE(1478), 1, + STATE(1476), 1, sym_comment, - ACTIONS(3687), 45, + ACTIONS(3698), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154520,22 +154644,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17650] = 6, + [17598] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + STATE(1477), 1, + sym_comment, + ACTIONS(1818), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1816), 43, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_LPAREN2, - ACTIONS(1984), 1, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [17658] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(1479), 1, + STATE(1478), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(2535), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 42, + ACTIONS(2533), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154578,80 +154758,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17714] = 7, - ACTIONS(103), 1, + [17722] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, - sym_raw_string_begin, - ACTIONS(3723), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1480), 1, + STATE(1479), 1, sym_comment, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(1740), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1738), 43, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17780] = 5, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [17782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3725), 1, + ACTIONS(3721), 1, aux_sym__immediate_decimal_token5, - STATE(1481), 1, + STATE(1480), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1818), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 42, + ACTIONS(1816), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154694,22 +154871,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17842] = 6, + [17844] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2622), 1, sym__unquoted_pattern, - STATE(1482), 1, + STATE(1481), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(1604), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 42, + ACTIONS(1706), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154752,20 +154929,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17906] = 7, + [17908] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3699), 1, + ACTIONS(3696), 1, sym_raw_string_begin, - ACTIONS(3727), 1, + ACTIONS(3723), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - STATE(1483), 1, + STATE(1482), 1, sym_comment, - ACTIONS(3693), 45, + ACTIONS(3692), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154811,79 +154988,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17972] = 7, - ACTIONS(103), 1, + [17974] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, - sym_raw_string_begin, - ACTIONS(3730), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1484), 1, + ACTIONS(3679), 1, + aux_sym__immediate_decimal_token5, + STATE(1483), 1, sym_comment, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(1752), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1750), 42, + ts_builtin_sym_end, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18038] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18036] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3702), 1, sym_raw_string_begin, - ACTIONS(3730), 1, + ACTIONS(3725), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - STATE(1485), 1, + STATE(1484), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3698), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154929,22 +155104,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18104] = 6, + [18102] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(1486), 1, + STATE(1485), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 42, + ACTIONS(2011), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154987,22 +155162,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18168] = 6, + [18166] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(3710), 1, + sym_raw_string_begin, + ACTIONS(3727), 1, + anon_sym_RBRACE, + STATE(1459), 1, + aux_sym__types_body_repeat2, + STATE(1486), 1, + sym_comment, + ACTIONS(3704), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [18232] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(1487), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(1002), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 42, + ACTIONS(1018), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155015,9 +155250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155045,14 +155278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18232] = 5, + [18295] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, STATE(1488), 1, sym_comment, - ACTIONS(968), 18, + ACTIONS(908), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155071,7 +155304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(868), 29, + ACTIONS(866), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -155101,77 +155334,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18293] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1489), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18352] = 6, + [18356] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(1490), 1, + STATE(1489), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(994), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 41, + ACTIONS(1004), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155213,18 +155391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18415] = 6, + [18419] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3702), 1, sym_raw_string_begin, - STATE(1473), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - STATE(1491), 1, + STATE(1490), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3698), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155270,19 +155448,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18478] = 4, + [18482] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1492), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(1491), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(1604), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 42, + ACTIONS(1706), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155315,7 +155496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155325,78 +155505,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18537] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1493), 1, - sym_comment, - ACTIONS(2501), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2503), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18598] = 6, + [18545] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(1494), 1, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(1492), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(2527), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 41, + ACTIONS(2525), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155438,22 +155562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18661] = 6, + [18608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1495), 1, + STATE(1493), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(2387), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 41, + sym__unquoted_pattern, + ACTIONS(2385), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155486,6 +155607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155495,18 +155617,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18724] = 6, + [18667] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3691), 1, + ACTIONS(3696), 1, sym_raw_string_begin, - STATE(1473), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - STATE(1496), 1, + STATE(1494), 1, sym_comment, - ACTIONS(3687), 45, + ACTIONS(3692), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155552,23 +155674,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18787] = 6, + [18730] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1724), 1, sym__unquoted_pattern, - STATE(1497), 1, + STATE(1495), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 41, - ts_builtin_sym_end, + ACTIONS(908), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155581,7 +155700,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155609,75 +155730,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18850] = 5, + [18791] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3740), 1, - sym__newline, - STATE(1498), 2, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(1496), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2585), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2583), 41, + ts_builtin_sym_end, anon_sym_in, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, - anon_sym_PLUS2, - aux_sym__val_number_decimal_token1, - ACTIONS(3738), 39, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18911] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18854] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1499), 1, + ACTIONS(2595), 1, + anon_sym_LPAREN2, + ACTIONS(2597), 1, + sym__unquoted_pattern, + STATE(1497), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(2593), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 42, + ACTIONS(2591), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155710,7 +155835,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155720,19 +155844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18970] = 4, + [18917] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1500), 1, + STATE(1498), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1856), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1870), 42, + ACTIONS(1854), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155775,22 +155899,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19029] = 6, + [18976] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(1501), 1, + STATE(1499), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 41, + ACTIONS(2011), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155832,22 +155956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19092] = 6, + [19039] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(1502), 1, + STATE(1500), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(1818), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 41, + sym__unquoted_pattern, + ACTIONS(1816), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155880,6 +156001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155889,21 +156011,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19155] = 5, - ACTIONS(3), 1, + [19098] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(1503), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + STATE(1501), 1, sym_comment, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 42, - anon_sym_in, + ACTIONS(2385), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155916,8 +156031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2387), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155928,39 +156052,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19216] = 6, + [19159] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(1504), 1, + STATE(1502), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(2535), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 41, + ACTIONS(2533), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156002,24 +156124,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19279] = 6, - ACTIONS(3), 1, + [19222] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1505), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + STATE(1503), 1, sym_comment, - ACTIONS(1976), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(2591), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156031,7 +156143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2593), 29, + anon_sym_in, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156042,39 +156165,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19342] = 6, + [19283] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1504), 1, + sym_comment, + ACTIONS(3732), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3730), 46, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19342] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3738), 1, + sym__newline, + STATE(1505), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3734), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + ACTIONS(3736), 39, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19403] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, STATE(1506), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 41, + sym__unquoted_pattern, + ACTIONS(1738), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156107,6 +156336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -156116,19 +156346,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19405] = 4, + [19462] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, STATE(1507), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(2003), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 42, + ACTIONS(2001), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156161,7 +156394,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -156171,15 +156403,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19464] = 5, - ACTIONS(103), 1, + [19525] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, STATE(1508), 1, sym_comment, - ACTIONS(2635), 18, - sym__newline, + STATE(1618), 1, + aux_sym__repeat_newline, + ACTIONS(2728), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2726), 35, + anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156191,17 +156441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2637), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156212,55 +156451,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19525] = 15, + [19597] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, STATE(1509), 1, sym_comment, - STATE(4529), 1, + STATE(4562), 1, sym_block, - STATE(4690), 1, + STATE(4804), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156292,124 +156529,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [19605] = 5, + [19677] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1510), 1, sym_comment, - ACTIONS(2565), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3757), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2563), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19665] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1511), 1, - sym_comment, - ACTIONS(2501), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2503), 29, + ACTIONS(2857), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_GT2, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19725] = 5, + aux_sym__val_number_decimal_token1, + ACTIONS(2859), 40, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19735] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - STATE(1512), 1, + STATE(1511), 1, sym_comment, - ACTIONS(2635), 17, + ACTIONS(908), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -156427,7 +156608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2637), 29, + ACTIONS(866), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -156457,40 +156638,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19785] = 15, + [19795] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1513), 1, + STATE(1512), 1, sym_comment, - STATE(4385), 1, + STATE(4425), 1, sym_block, - STATE(4629), 1, + STATE(4702), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156522,40 +156703,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [19865] = 15, + [19875] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1514), 1, + STATE(1513), 1, sym_comment, - STATE(4397), 1, + STATE(4473), 1, sym_block, - STATE(4638), 1, + STATE(4699), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156587,21 +156768,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [19945] = 4, + [19955] = 21, ACTIONS(3), 1, anon_sym_POUND, - STATE(1515), 1, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3771), 1, + sym__newline, + ACTIONS(3773), 1, + anon_sym_RBRACK, + STATE(1514), 1, sym_comment, - ACTIONS(2938), 7, + STATE(1700), 1, + aux_sym__types_body_repeat1, + STATE(1745), 1, + aux_sym__command_list_body_repeat1, + STATE(2107), 1, + sym__val_number_decimal, + STATE(4450), 1, + sym__command_name, + STATE(4736), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + STATE(5158), 1, + sym__command_list_body, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - aux_sym__val_number_decimal_token1, - ACTIONS(2940), 40, - sym_raw_string_begin, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -156625,56 +156839,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + [20047] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3775), 1, + anon_sym_DOT, + STATE(1515), 1, + sym_comment, + STATE(1830), 1, + sym__immediate_decimal, + ACTIONS(3777), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3779), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(681), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1584), 30, + anon_sym_in, sym__newline, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [20003] = 15, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20121] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, STATE(1516), 1, sym_comment, - STATE(4427), 1, + STATE(4648), 1, sym_block, - STATE(4647), 1, + STATE(4812), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156706,40 +156966,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20083] = 15, + [20201] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, STATE(1517), 1, sym_comment, - STATE(4429), 1, + STATE(4551), 1, sym_block, - STATE(4659), 1, + STATE(4816), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156771,212 +157031,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20163] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1518), 1, - sym_comment, - ACTIONS(968), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(868), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [20223] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3760), 1, - anon_sym_DOT, - STATE(1519), 1, - sym_comment, - STATE(1826), 1, - sym__immediate_decimal, - ACTIONS(3762), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3764), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(698), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 30, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [20297] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(1520), 1, - sym_comment, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [20357] = 15, + [20281] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1521), 1, + STATE(1518), 1, sym_comment, - STATE(4434), 1, + STATE(4537), 1, sym_block, - STATE(4687), 1, + STATE(4814), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157008,40 +157096,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20437] = 15, + [20361] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1522), 1, + STATE(1519), 1, sym_comment, - STATE(4435), 1, + STATE(4496), 1, sym_block, - STATE(4688), 1, + STATE(4735), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157073,40 +157161,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20517] = 15, + [20441] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1523), 1, + STATE(1520), 1, sym_comment, - STATE(4437), 1, + STATE(4501), 1, sym_block, - STATE(4693), 1, + STATE(4660), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157138,40 +157226,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20597] = 15, + [20521] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1524), 1, + STATE(1521), 1, sym_comment, - STATE(4440), 1, + STATE(4509), 1, sym_block, - STATE(4703), 1, + STATE(4822), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157203,51 +157291,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20677] = 20, + [20601] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + sym__unquoted_pattern, + STATE(1522), 1, + sym_comment, + ACTIONS(866), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(908), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20661] = 20, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2664), 1, + ACTIONS(2702), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2704), 1, anon_sym_COLON2, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, + ACTIONS(3781), 1, anon_sym_DASH_DASH, - STATE(1525), 1, + STATE(1523), 1, sym_comment, - STATE(1713), 1, + STATE(1711), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2167), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, STATE(3729), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157273,40 +157416,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [20767] = 15, + [20751] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1526), 1, + STATE(1524), 1, sym_comment, - STATE(4525), 1, + STATE(4183), 1, sym_block, - STATE(4689), 1, + STATE(4663), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157338,40 +157481,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20847] = 15, + [20831] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1525), 1, + sym_comment, + STATE(4184), 1, + sym_block, + STATE(4664), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [20911] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3771), 1, + sym__newline, + ACTIONS(3789), 1, + anon_sym_RBRACK, + STATE(1526), 1, + sym_comment, + STATE(1700), 1, + aux_sym__types_body_repeat1, + STATE(1745), 1, + aux_sym__command_list_body_repeat1, + STATE(2107), 1, + sym__val_number_decimal, + STATE(4450), 1, + sym__command_name, + STATE(4736), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + STATE(4990), 1, + sym__command_list_body, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [21003] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, STATE(1527), 1, sym_comment, - STATE(4527), 1, + STATE(4207), 1, sym_block, - STATE(4694), 1, + STATE(4763), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157403,40 +157682,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20927] = 15, + [21083] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, STATE(1528), 1, sym_comment, - STATE(4528), 1, + STATE(4208), 1, sym_block, - STATE(4696), 1, + STATE(4764), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157468,40 +157747,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21007] = 15, + [21163] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, STATE(1529), 1, sym_comment, - STATE(4534), 1, + STATE(4218), 1, sym_block, - STATE(4702), 1, + STATE(4778), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157533,108 +157812,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21087] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3772), 1, - anon_sym_LBRACK, - ACTIONS(3774), 1, - anon_sym_DOLLAR, - ACTIONS(3776), 1, - anon_sym_LBRACE, - STATE(1530), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3093), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3095), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [21173] = 15, + [21243] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1531), 1, + STATE(1530), 1, sym_comment, - STATE(4564), 1, + STATE(4220), 1, sym_block, - STATE(4738), 1, + STATE(4779), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157666,40 +157877,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21253] = 15, + [21323] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1532), 1, + STATE(1531), 1, sym_comment, - STATE(4565), 1, + STATE(4221), 1, sym_block, - STATE(4740), 1, + STATE(4783), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157731,40 +157942,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21333] = 15, + [21403] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1533), 1, + STATE(1532), 1, sym_comment, - STATE(4494), 1, + STATE(4222), 1, sym_block, - STATE(4648), 1, + STATE(4784), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157796,40 +158007,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21413] = 15, + [21483] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1534), 1, + STATE(1533), 1, sym_comment, - STATE(4495), 1, + STATE(4655), 1, sym_block, - STATE(4651), 1, + STATE(4829), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157861,40 +158072,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21493] = 15, + [21563] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1535), 1, + STATE(1534), 1, sym_comment, - STATE(4068), 1, + STATE(4543), 1, sym_block, - STATE(4691), 1, + STATE(4818), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157926,40 +158137,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21573] = 15, + [21643] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1536), 1, + STATE(1535), 1, sym_comment, - STATE(4069), 1, + STATE(4408), 1, sym_block, - STATE(4692), 1, + STATE(4685), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157991,54 +158202,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21653] = 21, + [21723] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3784), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - ACTIONS(3788), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(3791), 1, + anon_sym_LBRACK, + ACTIONS(3793), 1, + anon_sym_DOLLAR, + ACTIONS(3795), 1, + anon_sym_LBRACE, + STATE(1536), 1, sym_comment, - STATE(1703), 1, - aux_sym__types_body_repeat1, - STATE(1770), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(4524), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - STATE(4854), 1, - sym__command_list_body, - ACTIONS(3649), 2, + ACTIONS(3631), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, + STATE(3181), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3183), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -158062,40 +158270,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [21745] = 15, + [21809] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1538), 1, + STATE(1537), 1, sym_comment, - STATE(4316), 1, + STATE(4241), 1, sym_block, - STATE(4781), 1, + STATE(4690), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158127,40 +158335,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21825] = 15, + [21889] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1539), 1, + STATE(1538), 1, sym_comment, - STATE(4320), 1, + STATE(4242), 1, sym_block, - STATE(4782), 1, + STATE(4700), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158192,40 +158400,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21905] = 15, + [21969] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1540), 1, + STATE(1539), 1, sym_comment, - STATE(4345), 1, + STATE(4243), 1, sym_block, - STATE(4622), 1, + STATE(4705), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158257,40 +158465,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21985] = 15, + [22049] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1541), 1, + STATE(1540), 1, sym_comment, - STATE(4346), 1, + STATE(4244), 1, sym_block, - STATE(4771), 1, + STATE(4715), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158322,40 +158530,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22065] = 15, + [22129] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(2976), 1, + anon_sym_DQUOTE, + ACTIONS(2978), 1, + anon_sym_SQUOTE, + ACTIONS(2980), 1, + anon_sym_BQUOTE, + ACTIONS(2988), 1, + sym_raw_string_begin, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3797), 1, anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_DOLLAR, + ACTIONS(3801), 1, + anon_sym_LBRACE, + STATE(1541), 1, + sym_comment, + STATE(1996), 1, + sym__val_number_decimal, + ACTIONS(3631), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3181), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3183), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2590), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [22215] = 15, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(3751), 1, - anon_sym_list, + anon_sym_COLON, ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, STATE(1542), 1, sym_comment, - STATE(4347), 1, + STATE(4262), 1, sym_block, - STATE(4644), 1, + STATE(4683), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158387,40 +158663,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22145] = 15, + [22295] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, STATE(1543), 1, sym_comment, - STATE(4220), 1, + STATE(4263), 1, sym_block, - STATE(4645), 1, + STATE(4689), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158452,40 +158728,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22225] = 15, + [22375] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, STATE(1544), 1, sym_comment, - STATE(4376), 1, + STATE(4582), 1, sym_block, - STATE(4747), 1, + STATE(4810), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158517,40 +158793,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22305] = 15, + [22455] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, STATE(1545), 1, sym_comment, - STATE(4387), 1, + STATE(4267), 1, sym_block, - STATE(4643), 1, + STATE(4676), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158582,40 +158858,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22385] = 15, + [22535] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, STATE(1546), 1, sym_comment, - STATE(4164), 1, + STATE(4268), 1, sym_block, - STATE(4662), 1, + STATE(4678), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158647,40 +158923,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22465] = 15, + [22615] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, STATE(1547), 1, sym_comment, - STATE(4170), 1, + STATE(4282), 1, sym_block, - STATE(4670), 1, + STATE(4686), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158712,40 +158988,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22545] = 15, + [22695] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, STATE(1548), 1, sym_comment, - STATE(4201), 1, + STATE(4285), 1, sym_block, - STATE(4672), 1, + STATE(4688), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158777,40 +159053,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22625] = 15, + [22775] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, STATE(1549), 1, sym_comment, - STATE(4202), 1, + STATE(4587), 1, sym_block, - STATE(4675), 1, + STATE(4681), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158842,108 +159118,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22705] = 18, + [22855] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3022), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(3794), 1, - anon_sym_LBRACE, - STATE(1550), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3093), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3095), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [22791] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1551), 1, + STATE(1550), 1, sym_comment, - STATE(4244), 1, + STATE(4329), 1, sym_block, - STATE(4704), 1, + STATE(4786), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158975,40 +159183,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22871] = 15, + [22935] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1552), 1, + STATE(1551), 1, sym_comment, - STATE(4265), 1, + STATE(4330), 1, sym_block, - STATE(4705), 1, + STATE(4792), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159040,40 +159248,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22951] = 15, + [23015] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1553), 1, + STATE(1552), 1, sym_comment, - STATE(4321), 1, + STATE(4336), 1, sym_block, - STATE(4634), 1, + STATE(4798), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159105,40 +159313,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23031] = 15, + [23095] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1554), 1, + STATE(1553), 1, sym_comment, - STATE(4322), 1, + STATE(4337), 1, sym_block, - STATE(4635), 1, + STATE(4800), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159170,40 +159378,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23111] = 15, + [23175] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1555), 1, + STATE(1554), 1, sym_comment, - STATE(4053), 1, + STATE(4346), 1, sym_block, - STATE(4637), 1, + STATE(4662), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159235,40 +159443,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23191] = 15, + [23255] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(1556), 1, + STATE(1555), 1, sym_comment, - STATE(4054), 1, + STATE(4347), 1, sym_block, - STATE(4639), 1, + STATE(4668), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159300,40 +159508,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23271] = 15, + [23335] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1557), 1, + STATE(1556), 1, sym_comment, - STATE(4086), 1, + STATE(4417), 1, sym_block, - STATE(4664), 1, + STATE(4695), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159365,40 +159573,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23351] = 15, + [23415] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1558), 1, + STATE(1557), 1, sym_comment, - STATE(4090), 1, + STATE(4418), 1, sym_block, - STATE(4666), 1, + STATE(4748), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159430,40 +159638,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23431] = 15, + [23495] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1559), 1, + STATE(1558), 1, sym_comment, - STATE(4091), 1, + STATE(4493), 1, sym_block, - STATE(4667), 1, + STATE(4741), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159495,40 +159703,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23511] = 15, + [23575] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1560), 1, + STATE(1559), 1, sym_comment, - STATE(4093), 1, + STATE(4530), 1, sym_block, - STATE(4668), 1, + STATE(4746), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159560,40 +159768,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23591] = 15, + [23655] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1561), 1, + STATE(1560), 1, sym_comment, - STATE(4137), 1, + STATE(4578), 1, sym_block, - STATE(4679), 1, + STATE(4671), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159625,40 +159833,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23671] = 15, + [23735] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1562), 1, + STATE(1561), 1, sym_comment, - STATE(4142), 1, + STATE(4597), 1, sym_block, - STATE(4680), 1, + STATE(4706), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5071), 1, sym__one_type, - STATE(5169), 1, + STATE(5134), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159690,111 +159898,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23751] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - ACTIONS(3796), 1, - anon_sym_RBRACK, - STATE(1563), 1, - sym_comment, - STATE(1703), 1, - aux_sym__types_body_repeat1, - STATE(1770), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4524), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - STATE(4815), 1, - sym__command_list_body, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [23843] = 13, + [23815] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1564), 1, + STATE(1562), 1, sym_comment, - STATE(1579), 1, + STATE(1576), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2744), 29, + ACTIONS(2776), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -159824,35 +159961,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23919] = 12, + [23891] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1565), 1, + STATE(1563), 1, sym_comment, - STATE(1581), 1, + STATE(1578), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 33, + ACTIONS(2776), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -159886,29 +160023,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23993] = 9, + [23965] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - STATE(1566), 1, + STATE(1564), 1, sym_comment, - STATE(1583), 1, + STATE(1580), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2746), 3, + ACTIONS(2778), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2744), 36, + ACTIONS(2776), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -159945,25 +160082,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24061] = 7, + [24033] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - STATE(1567), 1, + STATE(1565), 1, sym_comment, - STATE(1585), 1, + STATE(1582), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2746), 5, + ACTIONS(2778), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 38, + ACTIONS(2776), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160002,51 +160139,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24125] = 18, + [24097] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - STATE(1568), 1, + STATE(1566), 1, sym_comment, - STATE(1587), 1, + STATE(1584), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160055,7 +160192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 14, + ACTIONS(2776), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160070,53 +160207,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24211] = 19, + [24183] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3819), 1, anon_sym_and2, - STATE(1569), 1, + STATE(1567), 1, sym_comment, - STATE(1678), 1, + STATE(1586), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160125,7 +160262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 13, + ACTIONS(2776), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160139,55 +160276,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [24299] = 20, + [24271] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3819), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(3821), 1, anon_sym_xor2, - STATE(1570), 1, + STATE(1568), 1, sym_comment, - STATE(1590), 1, + STATE(1588), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160196,7 +160333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 12, + ACTIONS(2776), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160209,40 +160346,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [24389] = 14, + [24361] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1571), 1, + STATE(1569), 1, sym_comment, - STATE(1592), 1, + STATE(1590), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160251,7 +160388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 21, + ACTIONS(2776), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160273,32 +160410,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24467] = 11, + [24439] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1572), 1, + STATE(1570), 1, sym_comment, - STATE(1594), 1, + STATE(1591), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2744), 35, + ACTIONS(2776), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160334,45 +160471,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24539] = 15, + [24511] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1573), 1, + STATE(1571), 1, sym_comment, - STATE(1596), 1, + STATE(1593), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160381,7 +160518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 17, + ACTIONS(2776), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160399,47 +160536,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24619] = 16, + [24591] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - STATE(1574), 1, + STATE(1572), 1, sym_comment, - STATE(1598), 1, + STATE(1595), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160448,7 +160585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 16, + ACTIONS(2776), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160465,49 +160602,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24701] = 17, + [24673] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - STATE(1575), 1, + STATE(1573), 1, sym_comment, - STATE(1600), 1, + STATE(1597), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160516,7 +160653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 15, + ACTIONS(2776), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160532,116 +160669,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [24785] = 15, + [24757] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3827), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3829), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3831), 1, + anon_sym_DOLLAR, + ACTIONS(3833), 1, anon_sym_LBRACE, - STATE(1576), 1, - sym_comment, - STATE(4538), 1, - sym_block, - STATE(4686), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [24865] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(3835), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(3837), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(3839), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(3841), 1, sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(1577), 1, + STATE(1574), 1, sym_comment, - STATE(2107), 1, + STATE(2108), 1, sym__val_number_decimal, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, + ACTIONS(3823), 2, anon_sym_export, anon_sym_in, - STATE(4760), 2, + STATE(2407), 2, sym_cmd_identifier, sym_val_string, - STATE(4762), 3, + STATE(2409), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(3505), 4, + STATE(2372), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3825), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -160665,40 +160737,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [24951] = 13, + [24843] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1578), 1, + STATE(1575), 1, sym_comment, - STATE(1614), 1, + STATE(1610), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2702), 29, + ACTIONS(2726), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160728,38 +160800,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25027] = 12, + [24919] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1579), 1, + STATE(1576), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2706), 30, + ACTIONS(2732), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160790,35 +160862,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25101] = 12, + [24993] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1580), 1, + STATE(1577), 1, sym_comment, - STATE(1615), 1, + STATE(1611), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2728), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 33, + ACTIONS(2726), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160852,33 +160924,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25175] = 11, + [25067] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1581), 1, + STATE(1578), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2734), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 34, + ACTIONS(2732), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160913,29 +160985,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25247] = 9, + [25139] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - STATE(1582), 1, + STATE(1579), 1, sym_comment, - STATE(1616), 1, + STATE(1612), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, + ACTIONS(2728), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2702), 36, + ACTIONS(2726), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160972,27 +161044,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25315] = 8, + [25207] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1583), 1, + STATE(1580), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2708), 3, + ACTIONS(2734), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2706), 37, + ACTIONS(2732), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161030,25 +161102,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25381] = 7, + [25273] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - STATE(1584), 1, + STATE(1581), 1, sym_comment, - STATE(1617), 1, + STATE(1613), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + ACTIONS(2728), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2702), 38, + ACTIONS(2726), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -161087,23 +161159,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25445] = 6, + [25337] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1585), 1, + STATE(1582), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2708), 5, + ACTIONS(2734), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2706), 39, + ACTIONS(2732), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161143,51 +161215,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25507] = 18, + [25399] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - STATE(1586), 1, + STATE(1583), 1, sym_comment, - STATE(1618), 1, + STATE(1614), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161196,7 +161268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 14, + ACTIONS(2726), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161211,49 +161283,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25593] = 17, + [25485] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1587), 1, + STATE(1584), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161262,7 +161334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 15, + ACTIONS(2732), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161278,53 +161350,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25677] = 19, + [25569] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3819), 1, anon_sym_and2, - STATE(1588), 1, + STATE(1585), 1, sym_comment, - STATE(1619), 1, + STATE(1615), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3805), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3811), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3809), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2726), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [25657] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3845), 1, + anon_sym_DASH2, + ACTIONS(3855), 1, + anon_sym_PLUS2, + ACTIONS(3863), 1, + anon_sym_bit_DASHand2, + ACTIONS(3865), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3867), 1, + anon_sym_bit_DASHor2, + ACTIONS(3869), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1586), 1, + sym_comment, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161333,7 +161472,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 13, + ACTIONS(2732), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161347,55 +161487,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [25765] = 20, + [25743] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3819), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(3821), 1, anon_sym_xor2, - STATE(1589), 1, + STATE(1587), 1, sym_comment, - STATE(1620), 1, + STATE(1616), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161404,7 +161544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 12, + ACTIONS(2726), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161417,53 +161557,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [25855] = 19, + [25833] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3869), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(3871), 1, anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1590), 1, + STATE(1588), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161472,7 +161612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 13, + ACTIONS(2732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161486,40 +161626,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [25943] = 14, + [25921] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1591), 1, + STATE(1589), 1, sym_comment, - STATE(1621), 1, + STATE(1617), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161528,7 +161668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 21, + ACTIONS(2726), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161550,38 +161690,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26021] = 13, + [25999] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1592), 1, + STATE(1590), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161590,56 +161730,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26097] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2732), 22, sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1593), 1, - sym_comment, - STATE(1622), 1, - aux_sym__repeat_newline, - ACTIONS(2704), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2702), 35, - anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161654,50 +161746,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26169] = 10, + [26075] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1594), 1, + STATE(1591), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2734), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2706), 36, + ACTIONS(2732), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161734,45 +161813,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26239] = 15, + [26145] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1595), 1, + STATE(1592), 1, sym_comment, - STATE(1623), 1, + STATE(1619), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161781,7 +161860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 17, + ACTIONS(2726), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161799,43 +161878,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26319] = 14, + [26225] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1596), 1, + STATE(1593), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161844,7 +161923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 18, + ACTIONS(2732), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161863,47 +161942,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26397] = 16, + [26303] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - STATE(1597), 1, + STATE(1594), 1, sym_comment, - STATE(1624), 1, + STATE(1620), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161912,7 +161991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 16, + ACTIONS(2726), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161929,45 +162008,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26479] = 15, + [26385] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1598), 1, + STATE(1595), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161976,7 +162055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 17, + ACTIONS(2732), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161994,49 +162073,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26559] = 17, + [26465] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - STATE(1599), 1, + STATE(1596), 1, sym_comment, - STATE(1625), 1, + STATE(1621), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162045,7 +162124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 15, + ACTIONS(2726), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162061,47 +162140,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [26643] = 16, + [26549] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1600), 1, + STATE(1597), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162110,7 +162189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 16, + ACTIONS(2732), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -162127,40 +162206,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [26725] = 13, + [26631] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1601), 1, + STATE(1598), 1, sym_comment, - STATE(1627), 1, + STATE(1623), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2712), 29, + ACTIONS(2772), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162190,35 +162269,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26801] = 12, + [26707] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1602), 1, + STATE(1599), 1, sym_comment, - STATE(1629), 1, + STATE(1625), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2774), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 33, + ACTIONS(2772), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162252,29 +162331,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26875] = 9, + [26781] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - STATE(1603), 1, + STATE(1600), 1, sym_comment, - STATE(1631), 1, + STATE(1627), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2714), 3, + ACTIONS(2774), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2712), 36, + ACTIONS(2772), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162311,90 +162390,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26943] = 15, + [26849] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1604), 1, - sym_comment, - STATE(4550), 1, - sym_block, - STATE(4719), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [27023] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - STATE(1605), 1, + STATE(1601), 1, sym_comment, - STATE(1633), 1, + STATE(1629), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2714), 5, + ACTIONS(2774), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2712), 38, + ACTIONS(2772), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162433,51 +162447,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27087] = 18, + [26913] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - STATE(1606), 1, + STATE(1602), 1, sym_comment, - STATE(1635), 1, + STATE(1631), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162486,7 +162500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 14, + ACTIONS(2772), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162501,53 +162515,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [27173] = 19, + [26999] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3819), 1, anon_sym_and2, - STATE(1607), 1, + STATE(1603), 1, sym_comment, - STATE(1637), 1, + STATE(1633), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3807), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3805), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3811), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3809), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2772), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [27087] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3813), 1, + anon_sym_bit_DASHand2, + ACTIONS(3815), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3817), 1, + anon_sym_bit_DASHor2, + ACTIONS(3819), 1, + anon_sym_and2, + ACTIONS(3821), 1, + anon_sym_xor2, + STATE(1604), 1, + sym_comment, + STATE(1635), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162556,7 +162641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 13, + ACTIONS(2772), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162568,112 +162653,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [27261] = 20, + [27177] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - STATE(1608), 1, + STATE(1605), 1, sym_comment, - STATE(1639), 1, + STATE(1637), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [27351] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1609), 1, - sym_comment, - STATE(1641), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162682,7 +162696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 21, + ACTIONS(2772), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162704,32 +162718,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27429] = 11, + [27255] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1610), 1, + STATE(1606), 1, sym_comment, - STATE(1643), 1, + STATE(1639), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2774), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2712), 35, + ACTIONS(2772), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162765,45 +162779,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27501] = 15, + [27327] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1611), 1, + STATE(1607), 1, sym_comment, - STATE(1645), 1, + STATE(1641), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162812,7 +162826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 17, + ACTIONS(2772), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162830,47 +162844,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27581] = 16, + [27407] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - STATE(1612), 1, + STATE(1608), 1, sym_comment, - STATE(1647), 1, + STATE(1643), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162879,7 +162893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 16, + ACTIONS(2772), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162896,49 +162910,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27663] = 17, + [27489] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - STATE(1613), 1, + STATE(1609), 1, sym_comment, - STATE(1649), 1, + STATE(1645), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162947,7 +162961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 15, + ACTIONS(2772), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162963,38 +162977,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [27747] = 12, + [27573] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1614), 1, + STATE(1610), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 30, + ACTIONS(2652), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163025,33 +163039,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27821] = 11, + [27647] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1615), 1, + STATE(1611), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2654), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 34, + ACTIONS(2652), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163086,27 +163100,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27893] = 8, + [27719] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1616), 1, + STATE(1612), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(2654), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2720), 37, + ACTIONS(2652), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163144,23 +163158,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27959] = 6, + [27785] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1617), 1, + STATE(1613), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2654), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 39, + ACTIONS(2652), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163200,49 +163214,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28021] = 17, + [27847] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1618), 1, + STATE(1614), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163251,7 +163265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 15, + ACTIONS(2652), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163267,51 +163281,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [28105] = 18, + [27931] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3869), 1, anon_sym_and2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1619), 1, + STATE(1615), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163320,7 +163334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 14, + ACTIONS(2652), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163335,53 +163349,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [28191] = 19, + [28017] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3869), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(3871), 1, anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1620), 1, + STATE(1616), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163390,7 +163404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 13, + ACTIONS(2652), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163404,38 +163418,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [28279] = 13, + [28105] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1621), 1, + STATE(1617), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163444,7 +163458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 22, + ACTIONS(2652), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163467,30 +163481,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28355] = 10, + [28181] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1622), 1, + STATE(1618), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2654), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 36, + ACTIONS(2652), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163527,43 +163541,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28425] = 14, + [28251] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1623), 1, + STATE(1619), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163572,7 +163586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 18, + ACTIONS(2652), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163591,45 +163605,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28503] = 15, + [28329] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1624), 1, + STATE(1620), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163638,7 +163652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 17, + ACTIONS(2652), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163656,47 +163670,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28583] = 16, + [28409] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1625), 1, + STATE(1621), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163705,7 +163719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 16, + ACTIONS(2652), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163722,40 +163736,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [28665] = 13, + [28491] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1626), 1, + STATE(1622), 1, sym_comment, - STATE(1650), 1, + STATE(1646), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2728), 29, + ACTIONS(2662), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -163785,38 +163799,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28741] = 12, + [28567] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1627), 1, + STATE(1623), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2732), 30, + ACTIONS(2666), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163847,35 +163861,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28815] = 12, + [28641] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1628), 1, + STATE(1624), 1, sym_comment, - STATE(1651), 1, + STATE(1647), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2664), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 33, + ACTIONS(2662), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -163909,33 +163923,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28889] = 11, + [28715] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1629), 1, + STATE(1625), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2668), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 34, + ACTIONS(2666), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163970,29 +163984,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28961] = 9, + [28787] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - STATE(1630), 1, + STATE(1626), 1, sym_comment, - STATE(1652), 1, + STATE(1648), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, + ACTIONS(2664), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2728), 36, + ACTIONS(2662), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -164029,27 +164043,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29029] = 8, + [28855] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1631), 1, + STATE(1627), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2734), 3, + ACTIONS(2668), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2732), 37, + ACTIONS(2666), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164087,25 +164101,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29095] = 7, + [28921] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - STATE(1632), 1, + STATE(1628), 1, sym_comment, - STATE(1653), 1, + STATE(1649), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, + ACTIONS(2664), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2728), 38, + ACTIONS(2662), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -164144,23 +164158,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29159] = 6, + [28985] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1633), 1, + STATE(1629), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2734), 5, + ACTIONS(2668), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2732), 39, + ACTIONS(2666), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164200,51 +164214,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29221] = 18, + [29047] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - STATE(1634), 1, + STATE(1630), 1, sym_comment, - STATE(1654), 1, + STATE(1650), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164253,7 +164267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 14, + ACTIONS(2662), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164268,49 +164282,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29307] = 17, + [29133] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1635), 1, + STATE(1631), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164319,7 +164333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 15, + ACTIONS(2666), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164335,53 +164349,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29391] = 19, + [29217] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3819), 1, anon_sym_and2, - STATE(1636), 1, + STATE(1632), 1, sym_comment, - STATE(1655), 1, + STATE(1651), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164390,7 +164404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 13, + ACTIONS(2662), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164404,51 +164418,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [29479] = 18, + [29305] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3869), 1, anon_sym_and2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1637), 1, + STATE(1633), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164457,7 +164471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 14, + ACTIONS(2666), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164472,55 +164486,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [29565] = 20, + [29391] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3819), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(3821), 1, anon_sym_xor2, - STATE(1638), 1, + STATE(1634), 1, sym_comment, - STATE(1656), 1, + STATE(1652), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164529,7 +164543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 12, + ACTIONS(2662), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164542,53 +164556,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [29655] = 19, + [29481] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3869), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(3871), 1, anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1639), 1, + STATE(1635), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164597,7 +164611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 13, + ACTIONS(2666), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164611,40 +164625,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [29743] = 14, + [29569] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1640), 1, + STATE(1636), 1, sym_comment, - STATE(1657), 1, + STATE(1653), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164653,7 +164667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 21, + ACTIONS(2662), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164675,38 +164689,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29821] = 13, + [29647] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1641), 1, + STATE(1637), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164715,7 +164729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 22, + ACTIONS(2666), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164738,32 +164752,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29897] = 11, + [29723] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1642), 1, + STATE(1638), 1, sym_comment, - STATE(1658), 1, + STATE(1654), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2664), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2728), 35, + ACTIONS(2662), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -164799,30 +164813,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29969] = 10, + [29795] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1643), 1, + STATE(1639), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2668), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2732), 36, + ACTIONS(2666), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164859,45 +164873,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30039] = 15, + [29865] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1644), 1, + STATE(1640), 1, sym_comment, - STATE(1659), 1, + STATE(1655), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164906,7 +164920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 17, + ACTIONS(2662), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164924,43 +164938,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30119] = 14, + [29945] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1645), 1, + STATE(1641), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164969,7 +164983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 18, + ACTIONS(2666), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164988,47 +165002,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30197] = 16, + [30023] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - STATE(1646), 1, + STATE(1642), 1, sym_comment, - STATE(1660), 1, + STATE(1656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165037,7 +165051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 16, + ACTIONS(2662), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165054,45 +165068,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30279] = 15, + [30105] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1647), 1, + STATE(1643), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165101,7 +165115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 17, + ACTIONS(2666), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165119,49 +165133,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30359] = 17, + [30185] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - STATE(1648), 1, + STATE(1644), 1, sym_comment, - STATE(1661), 1, + STATE(1657), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165170,7 +165184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 15, + ACTIONS(2662), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165186,47 +165200,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [30443] = 16, + [30269] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1649), 1, + STATE(1645), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165235,7 +165249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 16, + ACTIONS(2666), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165252,38 +165266,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [30525] = 12, + [30351] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1650), 1, + STATE(1646), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2740), 30, + ACTIONS(2722), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165314,33 +165328,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30599] = 11, + [30425] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1651), 1, + STATE(1647), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2724), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 34, + ACTIONS(2722), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165375,27 +165389,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30671] = 8, + [30497] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1652), 1, + STATE(1648), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2742), 3, + ACTIONS(2724), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2740), 37, + ACTIONS(2722), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165433,23 +165447,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30737] = 6, + [30563] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1653), 1, + STATE(1649), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2742), 5, + ACTIONS(2724), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 39, + ACTIONS(2722), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165489,49 +165503,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30799] = 17, + [30625] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1654), 1, + STATE(1650), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165540,7 +165554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 15, + ACTIONS(2722), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165556,51 +165570,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [30883] = 18, + [30709] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3869), 1, anon_sym_and2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1655), 1, + STATE(1651), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165609,7 +165623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 14, + ACTIONS(2722), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165624,53 +165638,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [30969] = 19, + [30795] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3869), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(3871), 1, anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1656), 1, + STATE(1652), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165679,7 +165693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 13, + ACTIONS(2722), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165693,38 +165707,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [31057] = 13, + [30883] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1657), 1, + STATE(1653), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165733,7 +165747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 22, + ACTIONS(2722), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165756,30 +165770,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31133] = 10, + [30959] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1658), 1, + STATE(1654), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2724), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2740), 36, + ACTIONS(2722), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165816,43 +165830,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31203] = 14, + [31029] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1659), 1, + STATE(1655), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165861,7 +165875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 18, + ACTIONS(2722), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165880,45 +165894,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31281] = 15, + [31107] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1660), 1, + STATE(1656), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165927,7 +165941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 17, + ACTIONS(2722), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165945,47 +165959,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31361] = 16, + [31187] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1661), 1, + STATE(1657), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165994,7 +166008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 16, + ACTIONS(2722), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166011,231 +166025,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [31443] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1662), 1, - sym_comment, - STATE(4545), 1, - sym_block, - STATE(4699), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [31523] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1663), 1, - sym_comment, - STATE(4553), 1, - sym_block, - STATE(4722), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [31603] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1664), 1, - sym_comment, - STATE(4567), 1, - sym_block, - STATE(4734), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [31683] = 11, + [31269] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - STATE(1665), 1, + STATE(1658), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3873), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 31, + ACTIONS(2509), 31, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166267,31 +166086,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31755] = 10, + [31341] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - STATE(1666), 1, + STATE(1659), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2511), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 35, + ACTIONS(2509), 35, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166327,25 +166146,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31825] = 7, + [31411] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1667), 1, + STATE(1660), 1, sym_comment, - ACTIONS(3868), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, + ACTIONS(2511), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2533), 38, + ACTIONS(2509), 38, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166384,21 +166203,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31889] = 5, + [31475] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1668), 1, + STATE(1661), 1, sym_comment, - ACTIONS(3872), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(2511), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 40, + ACTIONS(2509), 40, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166439,47 +166258,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31949] = 16, + [31535] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3893), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(3895), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(3897), 1, anon_sym_bit_DASHor2, - STATE(1669), 1, + STATE(1662), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3873), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166488,7 +166307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 16, + ACTIONS(2509), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166505,49 +166324,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [32031] = 17, + [31617] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3893), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(3895), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(3897), 1, anon_sym_bit_DASHor2, - ACTIONS(3890), 1, + ACTIONS(3899), 1, anon_sym_and2, - STATE(1670), 1, + STATE(1663), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3873), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166556,7 +166375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 15, + ACTIONS(2509), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166572,51 +166391,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [32115] = 18, + [31701] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3893), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(3895), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(3897), 1, anon_sym_bit_DASHor2, - ACTIONS(3890), 1, + ACTIONS(3899), 1, anon_sym_and2, - ACTIONS(3892), 1, + ACTIONS(3901), 1, anon_sym_xor2, - STATE(1671), 1, + STATE(1664), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3873), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166625,7 +166444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 14, + ACTIONS(2509), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166640,36 +166459,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_or2, - [32201] = 12, + [31787] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - STATE(1672), 1, + STATE(1665), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3873), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166678,7 +166497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 23, + ACTIONS(2509), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166702,28 +166521,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32275] = 9, + [31861] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - STATE(1673), 1, + STATE(1666), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2511), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 37, + ACTIONS(2509), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166761,41 +166580,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32343] = 13, + [31929] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - STATE(1674), 1, + STATE(1667), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3873), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166804,7 +166623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 19, + ACTIONS(2509), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166824,43 +166643,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32419] = 14, + [32005] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3893), 1, anon_sym_bit_DASHand2, - STATE(1675), 1, + STATE(1668), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3873), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166869,7 +166688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 18, + ACTIONS(2509), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166888,45 +166707,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32497] = 15, + [32083] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3893), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(3895), 1, anon_sym_bit_DASHxor2, - STATE(1676), 1, + STATE(1669), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3873), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166935,7 +166754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 17, + ACTIONS(2509), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166953,120 +166772,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [32577] = 18, + [32163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1677), 1, - sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(4760), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4762), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [32663] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1678), 1, + STATE(1670), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(2626), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3842), 2, + anon_sym_PLUS2, + ACTIONS(3903), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2624), 29, + anon_sym_in, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32223] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + STATE(1671), 1, + sym_comment, + ACTIONS(2385), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(2387), 29, anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -167074,7 +166867,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 14, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32283] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + STATE(1672), 1, + sym_comment, + ACTIONS(2591), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167086,42 +166902,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [32749] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(1679), 1, - sym_comment, - STATE(1925), 1, - sym__immediate_decimal, - ACTIONS(3900), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2593), 29, + anon_sym_in, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1631), 30, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167132,66 +166922,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32820] = 19, + [32343] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1673), 1, + sym_comment, + STATE(4558), 1, + sym_block, + STATE(4775), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [32423] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1674), 1, + sym_comment, + STATE(4560), 1, + sym_block, + STATE(4796), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [32503] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1675), 1, + sym_comment, + STATE(4561), 1, + sym_block, + STATE(4801), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [32583] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1676), 1, + sym_comment, + STATE(4403), 1, + sym_block, + STATE(4826), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [32663] = 19, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, + ACTIONS(3781), 1, anon_sym_DASH_DASH, - STATE(1680), 1, + STATE(1677), 1, sym_comment, - STATE(1713), 1, + STATE(1711), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2167), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, STATE(3729), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -167217,36 +167265,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [32907] = 11, + [32750] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1681), 1, + STATE(1678), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 30, + ACTIONS(2509), 30, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167277,31 +167325,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32978] = 10, + [32821] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1682), 1, + STATE(1679), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2511), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 34, + ACTIONS(2509), 34, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167336,25 +167384,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33047] = 7, + [32890] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1683), 1, + STATE(1680), 1, sym_comment, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, + ACTIONS(2511), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2533), 37, + ACTIONS(2509), 37, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167392,21 +167440,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33110] = 5, + [32953] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1684), 1, + STATE(1681), 1, sym_comment, - ACTIONS(3912), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(2511), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 39, + ACTIONS(2509), 39, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167446,47 +167494,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33169] = 16, + [33012] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, + anon_sym_bit_DASHand2, ACTIONS(3928), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3930), 1, anon_sym_bit_DASHor2, - STATE(1685), 1, + STATE(1682), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167495,7 +167543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 15, + ACTIONS(2509), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167511,49 +167559,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [33250] = 17, + [33093] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, + anon_sym_bit_DASHand2, ACTIONS(3928), 1, - anon_sym_bit_DASHor2, + anon_sym_bit_DASHxor2, ACTIONS(3930), 1, + anon_sym_bit_DASHor2, + ACTIONS(3932), 1, anon_sym_and2, - STATE(1686), 1, + STATE(1683), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167562,7 +167610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 14, + ACTIONS(2509), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167577,51 +167625,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [33333] = 18, + [33176] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, + anon_sym_bit_DASHand2, ACTIONS(3928), 1, - anon_sym_bit_DASHor2, + anon_sym_bit_DASHxor2, ACTIONS(3930), 1, - anon_sym_and2, + anon_sym_bit_DASHor2, ACTIONS(3932), 1, + anon_sym_and2, + ACTIONS(3934), 1, anon_sym_xor2, - STATE(1687), 1, + STATE(1684), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167630,7 +167678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 13, + ACTIONS(2509), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167644,99 +167692,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_or2, - [33418] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3936), 1, - anon_sym_RBRACK, - STATE(1688), 1, - sym_comment, - STATE(1726), 1, - aux_sym__types_body_repeat1, - STATE(1797), 1, - aux_sym__types_body_repeat3, - STATE(4496), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - STATE(4842), 1, - sym__types_body, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [33495] = 12, + [33261] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1689), 1, + STATE(1685), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3920), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167745,7 +167730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 22, + ACTIONS(2509), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167768,28 +167753,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33568] = 9, + [33334] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1690), 1, + STATE(1686), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2511), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 36, + ACTIONS(2509), 36, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167826,41 +167811,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33635] = 13, + [33401] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1691), 1, + STATE(1687), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167869,7 +167854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 18, + ACTIONS(2509), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167888,43 +167873,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33710] = 14, + [33476] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - STATE(1692), 1, + STATE(1688), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167933,7 +167918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 17, + ACTIONS(2509), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167951,45 +167936,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33787] = 15, + [33553] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, ACTIONS(3926), 1, + anon_sym_bit_DASHand2, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - STATE(1693), 1, + STATE(1689), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167998,7 +167983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 16, + ACTIONS(2509), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -168015,49 +168000,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [33866] = 19, + [33632] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + STATE(1690), 1, + sym_comment, + STATE(1925), 1, + sym__immediate_decimal, + ACTIONS(3936), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3938), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(829), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1584), 30, + anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33703] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + STATE(1691), 1, + sym_comment, + STATE(1930), 1, + sym__immediate_decimal, + ACTIONS(3936), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3938), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(871), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1635), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1633), 30, + anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33774] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_RBRACK, + STATE(1692), 1, + sym_comment, + STATE(1735), 1, + aux_sym__types_body_repeat1, + STATE(1791), 1, + aux_sym__types_body_repeat3, + STATE(4452), 1, + sym__one_type, + STATE(4972), 1, + sym__type_annotation, + STATE(5114), 1, + sym__types_body, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [33851] = 19, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2916), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, + ACTIONS(3781), 1, anon_sym_DASH_DASH, - STATE(1694), 1, + STATE(1693), 1, sym_comment, - STATE(1710), 1, + STATE(1701), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2167), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(3629), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3713), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -168083,38 +168251,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33953] = 12, + [33938] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(3938), 1, + ACTIONS(3944), 1, anon_sym_DOT, - STATE(1695), 1, + STATE(1694), 1, sym_comment, - STATE(1855), 1, + STATE(1875), 1, sym__immediate_decimal, - ACTIONS(3940), 2, + ACTIONS(3946), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, + ACTIONS(3948), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1963), 2, + STATE(1964), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1588), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + ACTIONS(1584), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168144,18 +168312,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34026] = 5, + [34011] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1696), 1, + STATE(1695), 1, sym_comment, - ACTIONS(2565), 5, + ACTIONS(2626), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3757), 12, + ACTIONS(3903), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -168168,7 +168336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2563), 29, + ACTIONS(2624), 29, anon_sym_in, anon_sym_DASH2, anon_sym_and2, @@ -168198,110 +168366,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34085] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(1697), 1, - sym_comment, - STATE(1919), 1, - sym__immediate_decimal, - ACTIONS(3900), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 30, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34156] = 19, + [34070] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1698), 1, + STATE(1696), 1, sym_comment, - STATE(2081), 1, + STATE(1703), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2167), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(3691), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3738), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168325,50 +168433,163 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34242] = 19, + [34156] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3952), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3954), 1, + aux_sym__immediate_decimal_token5, + STATE(1697), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [34216] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1616), 1, + anon_sym_DOT, + STATE(1698), 1, + sym_comment, + STATE(1958), 1, + sym__immediate_decimal, + ACTIONS(3946), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3948), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1964), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1584), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [34286] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1698), 1, - aux_sym_decl_def_repeat1, STATE(1699), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2087), 1, + aux_sym_decl_def_repeat1, + STATE(2167), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(3658), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3762), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168392,50 +168613,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34328] = 19, + [34372] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1412), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1416), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3769), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, - anon_sym_DASH_DASH, + ACTIONS(3771), 1, + sym__newline, STATE(1700), 1, sym_comment, - STATE(1702), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1751), 1, + aux_sym__command_list_body_repeat1, + STATE(2107), 1, sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, + STATE(2128), 1, + aux_sym__types_body_repeat1, + STATE(4612), 1, + sym__command_name, + STATE(4736), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4738), 1, sym_val_string, - STATE(3654), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3767), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168459,50 +168680,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34414] = 19, + [34458] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, STATE(1701), 1, sym_comment, - STATE(1709), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2087), 1, + aux_sym_decl_def_repeat1, + STATE(2167), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(3627), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3686), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168526,50 +168747,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34500] = 19, + [34544] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, STATE(1702), 1, sym_comment, - STATE(2081), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2087), 1, + aux_sym_decl_def_repeat1, + STATE(2167), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(3657), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3749), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168593,50 +168814,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34586] = 19, + [34630] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3784), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, + ACTIONS(3950), 1, + anon_sym_DASH_DASH, STATE(1703), 1, sym_comment, - STATE(1763), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2121), 1, - aux_sym__types_body_repeat1, - STATE(4615), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, + STATE(2087), 1, + aux_sym_decl_def_repeat1, + STATE(2167), 1, + sym_long_flag, + STATE(3562), 1, sym_val_string, - ACTIONS(3649), 2, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3742), 1, + sym__command_name, + ACTIONS(3631), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168660,12 +168881,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34672] = 6, + [34716] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, + ACTIONS(3956), 1, anon_sym_DOT, - ACTIONS(3948), 1, + ACTIONS(3958), 1, aux_sym__immediate_decimal_token5, STATE(1704), 1, sym_comment, @@ -168714,149 +168935,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [34732] = 11, + [34776] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1600), 1, - anon_sym_DOT, - STATE(1705), 1, - sym_comment, - STATE(1957), 1, - sym__immediate_decimal, - ACTIONS(3940), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1963), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34802] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3950), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3952), 1, - aux_sym__immediate_decimal_token5, - STATE(1706), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [34862] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - STATE(1707), 1, + STATE(1705), 1, sym_comment, - STATE(1978), 1, + STATE(1993), 1, sym__immediate_decimal, - ACTIONS(3954), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(829), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1588), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + ACTIONS(1584), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168886,36 +168994,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34932] = 11, + [34846] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(1708), 1, + STATE(1706), 1, sym_comment, - STATE(2092), 1, + STATE(2088), 1, sym__immediate_decimal, - ACTIONS(3954), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(871), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1635), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + ACTIONS(1633), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168945,50 +169053,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35002] = 19, + [34916] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1709), 1, - sym_comment, - STATE(2081), 1, + STATE(1699), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1707), 1, + sym_comment, + STATE(1996), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2167), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(3633), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3681), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169012,50 +169120,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35088] = 19, + [35002] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1710), 1, - sym_comment, - STATE(2081), 1, + STATE(1702), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1708), 1, + sym_comment, + STATE(1996), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2167), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(3666), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3684), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169079,36 +169187,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35174] = 11, + [35088] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1627), 1, anon_sym_DOT, - STATE(1711), 1, + STATE(1709), 1, sym_comment, - STATE(1962), 1, + STATE(1963), 1, sym__immediate_decimal, - ACTIONS(3940), 2, + ACTIONS(3946), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, + ACTIONS(3948), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1961), 2, + STATE(1962), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 6, + ACTIONS(1625), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 29, + ACTIONS(1623), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -169138,50 +169246,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35244] = 19, + [35158] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1712), 1, + STATE(1710), 1, sym_comment, - STATE(1714), 1, + STATE(1712), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2167), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(3716), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3784), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169205,50 +169313,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35330] = 19, + [35244] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1713), 1, + STATE(1711), 1, sym_comment, - STATE(2081), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2087), 1, + aux_sym_decl_def_repeat1, + STATE(2167), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(3628), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3733), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169272,50 +169380,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35416] = 19, + [35330] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1714), 1, + STATE(1712), 1, sym_comment, - STATE(2081), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2087), 1, + aux_sym_decl_def_repeat1, + STATE(2167), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(3648), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3736), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169339,34 +169447,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35502] = 10, + [35416] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(3964), 1, + anon_sym_QMARK2, + ACTIONS(3966), 1, + anon_sym_BANG, + STATE(1713), 1, + sym_comment, + STATE(1829), 1, + sym__path_suffix, + ACTIONS(1432), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1434), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [35477] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1714), 1, + sym_comment, + STATE(1754), 1, + aux_sym__types_body_repeat1, + STATE(1827), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4456), 1, + sym__all_type, + STATE(5243), 1, + sym__composite_argument_body, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4740), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 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, + [35548] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(722), 1, + STATE(952), 1, sym__immediate_decimal, STATE(1715), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(721), 2, + STATE(829), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 6, + ACTIONS(1588), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 29, + ACTIONS(1584), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -169396,46 +169617,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35569] = 17, - ACTIONS(103), 1, + [35615] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, + ACTIONS(3976), 1, + anon_sym_DOT2, STATE(1716), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3845), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + STATE(1763), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1826), 1, + sym_path, + STATE(1871), 1, + sym_cell_path, + ACTIONS(1444), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1446), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169453,43 +169653,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35650] = 10, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [35678] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - STATE(896), 1, - sym__immediate_decimal, + ACTIONS(1724), 1, + sym__unquoted_pattern, + ACTIONS(3978), 1, + anon_sym_DOT_DOT2, + ACTIONS(3982), 1, + sym_filesize_unit, + ACTIONS(3984), 1, + sym_duration_unit, STATE(1717), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(4718), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(3980), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + ACTIONS(908), 31, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169517,33 +169730,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35717] = 11, + [35747] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(3958), 1, - anon_sym_DOT_DOT2, - ACTIONS(3962), 1, - sym_filesize_unit, - ACTIONS(3964), 1, - sym_duration_unit, + ACTIONS(3976), 1, + anon_sym_DOT2, STATE(1718), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3960), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + STATE(1763), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1826), 1, + sym_path, + STATE(1863), 1, + sym_cell_path, + ACTIONS(1649), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1647), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [35810] = 17, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1719), 1, + sym_comment, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4964), 1, + sym__command_name, + ACTIONS(3783), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3785), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3631), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [35891] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3958), 1, + aux_sym__immediate_decimal_token5, + STATE(1720), 1, + sym_comment, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 31, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -169566,6 +169888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -169575,75 +169898,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35786] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1719), 1, - sym_comment, - STATE(1746), 1, - aux_sym__types_body_repeat1, - STATE(1831), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, - sym__all_type, - STATE(4925), 1, - sym__composite_argument_body, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 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, - [35857] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [35948] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3976), 1, + ACTIONS(3986), 1, + anon_sym_DOT, + ACTIONS(3988), 1, aux_sym__immediate_decimal_token5, - STATE(1720), 1, + STATE(1721), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -169652,7 +169919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(741), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -169687,45 +169954,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [35916] = 17, + [36007] = 17, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2664), 1, + ACTIONS(2702), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2704), 1, anon_sym_COLON2, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1721), 1, + STATE(1722), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(4836), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4269), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -169751,14 +170018,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35997] = 5, + [36088] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(3990), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3992), 1, aux_sym__immediate_decimal_token5, - STATE(1722), 1, + STATE(1723), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -169767,11 +170036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 35, + ACTIONS(749), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169803,36 +170071,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36054] = 10, + [36147] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(925), 1, - sym__immediate_decimal, - STATE(1723), 1, + ACTIONS(3994), 1, + aux_sym__immediate_decimal_token5, + STATE(1724), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(755), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(757), 35, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169851,6 +170110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -169860,91 +170120,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36121] = 17, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1724), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4171), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [36202] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36204] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3948), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(826), 1, + sym__immediate_decimal, STATE(1725), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(3960), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3962), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(825), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1625), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(1623), 29, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169963,7 +170171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -169973,151 +170180,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [36259] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3934), 1, - sym__newline, - STATE(1726), 1, - sym_comment, - STATE(1783), 1, - aux_sym__types_body_repeat3, - STATE(1934), 1, - aux_sym__types_body_repeat1, - STATE(4557), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [36330] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1727), 1, - sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1862), 1, - sym_cell_path, - ACTIONS(1681), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1679), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36393] = 10, + [36271] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(737), 1, + STATE(848), 1, sym__immediate_decimal, - STATE(1728), 1, + STATE(1726), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(736), 2, + STATE(847), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 6, + ACTIONS(1655), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1667), 29, + ACTIONS(1653), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170147,34 +170237,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36460] = 10, + [36338] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(739), 1, + STATE(864), 1, sym__immediate_decimal, - STATE(1729), 1, + STATE(1727), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(738), 2, + STATE(849), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1673), 6, + ACTIONS(1669), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1671), 29, + ACTIONS(1667), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170204,34 +170294,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36527] = 10, + [36405] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(741), 1, + STATE(869), 1, sym__immediate_decimal, - STATE(1730), 1, + STATE(1728), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(740), 2, + STATE(867), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 6, + ACTIONS(1675), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1675), 29, + ACTIONS(1673), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170261,34 +170351,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36594] = 12, + [36472] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, + ACTIONS(3940), 1, sym__newline, - ACTIONS(3970), 1, - anon_sym_list, ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, anon_sym_oneof, - STATE(1731), 1, + STATE(1729), 1, sym_comment, - STATE(1746), 1, + STATE(1754), 1, aux_sym__types_body_repeat1, - STATE(1831), 1, + STATE(1827), 1, aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, + STATE(4456), 1, sym__all_type, - STATE(4808), 1, + STATE(5090), 1, sym__composite_argument_body, - ACTIONS(3968), 2, + ACTIONS(3970), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4740), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3968), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170320,34 +170410,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36665] = 12, + [36543] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, + ACTIONS(3940), 1, sym__newline, - ACTIONS(3970), 1, - anon_sym_list, ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, anon_sym_oneof, - STATE(1732), 1, + STATE(1730), 1, sym_comment, - STATE(1746), 1, + STATE(1754), 1, aux_sym__types_body_repeat1, - STATE(1831), 1, + STATE(1827), 1, aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, + STATE(4456), 1, sym__all_type, - STATE(5027), 1, + STATE(5231), 1, sym__composite_argument_body, - ACTIONS(3968), 2, + ACTIONS(3970), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4740), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3968), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170379,134 +170469,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36736] = 7, - ACTIONS(3), 1, + [36614] = 17, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3982), 1, - anon_sym_QMARK2, - ACTIONS(3984), 1, - anon_sym_BANG, - STATE(1733), 1, - sym_comment, - STATE(1833), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + ACTIONS(1790), 1, anon_sym_DQUOTE, + ACTIONS(1792), 1, anon_sym_SQUOTE, + ACTIONS(1794), 1, anon_sym_BQUOTE, - [36797] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1734), 1, - sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1866), 1, - sym_cell_path, - ACTIONS(1643), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1641), 37, + ACTIONS(1796), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1731), 1, + sym_comment, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3827), 1, + sym__command_name, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36860] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1735), 1, - sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1858), 1, - sym_cell_path, - ACTIONS(1432), 3, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3631), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1434), 37, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170524,104 +170526,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36923] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3986), 1, - anon_sym_DOT, - ACTIONS(3988), 1, - aux_sym__immediate_decimal_token5, - STATE(1736), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [36982] = 11, + [36695] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(3972), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3974), 1, anon_sym_oneof, - ACTIONS(3990), 1, - anon_sym_GT2, - ACTIONS(3992), 1, - anon_sym_AT2, - STATE(1737), 1, + STATE(1732), 1, sym_comment, - STATE(4431), 1, + STATE(1754), 1, + aux_sym__types_body_repeat1, + STATE(1827), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4456), 1, sym__all_type, - STATE(4807), 1, - sym_param_completer, - ACTIONS(3749), 2, + STATE(4993), 1, + sym__composite_argument_body, + ACTIONS(3970), 2, anon_sym_table, anon_sym_record, - STATE(4712), 4, + STATE(4740), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3968), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170653,89 +170592,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [37050] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1738), 1, - sym_comment, - STATE(1812), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - STATE(1908), 1, - sym_cell_path, - ACTIONS(1681), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1679), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37112] = 11, + [36766] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(3996), 1, - anon_sym_DOT_DOT2, - ACTIONS(4000), 1, - sym_filesize_unit, - ACTIONS(4002), 1, - sym_duration_unit, - STATE(1739), 1, + STATE(938), 1, + sym__immediate_decimal, + STATE(1733), 1, sym_comment, - STATE(4739), 1, + ACTIONS(3960), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3962), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(871), 2, sym__expr_parenthesized_immediate, - ACTIONS(3998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + sym_val_variable, + ACTIONS(1635), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 30, + ACTIONS(1633), 29, anon_sym_in, - anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -170764,88 +170649,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [37180] = 16, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - STATE(1740), 1, - sym_comment, - STATE(1976), 1, - sym__val_number_decimal, - STATE(3951), 1, - sym__command_name, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, - sym_val_string, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3665), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [37258] = 8, + [36833] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, + ACTIONS(3976), 1, anon_sym_DOT2, - STATE(1741), 1, + STATE(1734), 1, sym_comment, - STATE(1812), 1, + STATE(1763), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, + STATE(1826), 1, sym_path, - STATE(1898), 1, + STATE(1861), 1, sym_cell_path, - ACTIONS(1643), 3, + ACTIONS(1679), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 36, + ACTIONS(1677), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170872,6 +170694,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -170880,22 +170704,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37320] = 7, + [36896] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1742), 1, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3940), 1, + sym__newline, + STATE(1735), 1, sym_comment, - STATE(1743), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - ACTIONS(1458), 3, + STATE(1793), 1, + aux_sym__types_body_repeat3, + STATE(1939), 1, + aux_sym__types_body_repeat1, + STATE(4497), 1, + sym__one_type, + STATE(4972), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [36967] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3996), 1, + anon_sym_DOT, + ACTIONS(3998), 1, + aux_sym__immediate_decimal_token5, + STATE(1736), 1, + sym_comment, + ACTIONS(739), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170920,34 +170804,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37380] = 6, + [37025] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4004), 1, - anon_sym_DOT2, - STATE(1825), 1, - sym_path, - STATE(1743), 2, + STATE(1737), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(1458), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1526), 37, + anon_sym_DOT2, + ACTIONS(1460), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170985,23 +170863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37438] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [37079] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4007), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token5, - STATE(1744), 1, + STATE(1738), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(1509), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + anon_sym_DOT2, + ACTIONS(1511), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171026,246 +170900,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37496] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(4011), 1, - anon_sym_GT2, - STATE(1745), 1, - sym_comment, - STATE(4402), 1, - sym__all_type, - STATE(5025), 1, - sym_param_completer, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4712), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [37564] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3934), 1, sym__newline, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1746), 1, - sym_comment, - STATE(1828), 1, - aux_sym__composite_argument_body_repeat1, - STATE(1934), 1, - aux_sym__types_body_repeat1, - STATE(4482), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 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, - [37632] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4013), 1, - anon_sym_DOT, - ACTIONS(4015), 1, - aux_sym__immediate_decimal_token5, - STATE(1747), 1, - sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [37690] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4019), 1, - aux_sym__immediate_decimal_token5, - STATE(1748), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37748] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [37133] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1749), 1, + STATE(1739), 1, sym_comment, - ACTIONS(1478), 4, + ACTIONS(1517), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1480), 39, + ACTIONS(1519), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171305,17 +170965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37802] = 4, + [37187] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1750), 1, + STATE(1740), 1, sym_comment, - ACTIONS(1543), 4, + ACTIONS(1521), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1545), 39, + ACTIONS(1523), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171355,17 +171015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37856] = 4, + [37241] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1751), 1, + STATE(1741), 1, sym_comment, - ACTIONS(1466), 4, + ACTIONS(1525), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1468), 39, + ACTIONS(1527), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171403,20 +171063,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37910] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1752), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [37295] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(4000), 1, + anon_sym_GT2, + ACTIONS(4002), 1, + anon_sym_AT2, + STATE(1742), 1, + sym_comment, + STATE(4427), 1, + sym__all_type, + STATE(5078), 1, + sym_param_completer, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4828), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [37363] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1743), 1, sym_comment, - ACTIONS(1470), 4, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4269), 1, + sym__command_name, + ACTIONS(3783), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3785), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3631), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 39, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171434,64 +171177,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37964] = 16, + [37441] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1753), 1, + STATE(1744), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(4950), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3827), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171517,18 +171246,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38042] = 4, + [37519] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1754), 1, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + STATE(1745), 1, sym_comment, - ACTIONS(1514), 4, + STATE(1759), 1, + aux_sym__command_list_body_repeat1, + STATE(2107), 1, + sym__val_number_decimal, + STATE(4615), 1, + sym__command_name, + STATE(4736), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1516), 39, - sym_raw_string_begin, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171552,58 +171309,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [38096] = 16, + [37599] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2916), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1755), 1, + STATE(1746), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(5195), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5015), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171629,43 +171371,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38174] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + [37677] = 16, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3661), 1, aux_sym_cmd_identifier_token1, - STATE(1756), 1, + STATE(1747), 1, sym_comment, - STATE(2099), 1, + STATE(1979), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(3936), 1, + sym__command_name, + STATE(4327), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4328), 1, sym_val_string, - STATE(5197), 1, - sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(501), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3657), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171691,12 +171433,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38252] = 4, + [37755] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1757), 1, + ACTIONS(4004), 1, + anon_sym_QMARK2, + ACTIONS(4006), 1, + anon_sym_BANG, + STATE(1748), 1, sym_comment, - ACTIONS(747), 8, + STATE(1864), 1, + sym__path_suffix, + ACTIONS(1432), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1434), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [37815] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1749), 1, + sym_comment, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -171705,7 +171500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 35, + ACTIONS(757), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -171741,32 +171536,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [38306] = 11, + [37869] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3992), 1, + ACTIONS(4002), 1, anon_sym_AT2, - ACTIONS(4021), 1, + ACTIONS(4008), 1, anon_sym_GT2, - STATE(1758), 1, + STATE(1750), 1, sym_comment, - STATE(4541), 1, + STATE(4405), 1, sym__all_type, - STATE(4897), 1, + STATE(5225), 1, sym_param_completer, - ACTIONS(3749), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4712), 4, + STATE(4828), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -171798,12 +171593,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [38374] = 4, + [37937] = 17, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + STATE(1751), 1, + sym_comment, STATE(1759), 1, + aux_sym__command_list_body_repeat1, + STATE(2107), 1, + sym__val_number_decimal, + STATE(4595), 1, + sym__command_name, + STATE(4736), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38017] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3988), 1, + aux_sym__immediate_decimal_token5, + STATE(1752), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -171812,11 +171672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 35, + ACTIONS(741), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -171848,12 +171707,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [38428] = 4, + [38073] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1760), 1, + ACTIONS(4010), 1, + anon_sym_DOT2, + STATE(1753), 1, + sym_comment, + STATE(1799), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1858), 1, + sym_path, + STATE(1912), 1, + sym_cell_path, + ACTIONS(1649), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1647), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [38135] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1754), 1, + sym_comment, + STATE(1825), 1, + aux_sym__composite_argument_body_repeat1, + STATE(1939), 1, + aux_sym__types_body_repeat1, + STATE(4431), 1, + sym__all_type, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4740), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 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, + [38203] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4012), 1, + aux_sym__immediate_decimal_token5, + STATE(1755), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -171862,11 +171834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(851), 35, + ACTIONS(757), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -171898,26 +171869,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [38482] = 5, + [38259] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1756), 1, + sym_comment, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4964), 1, + sym__command_name, + ACTIONS(3783), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3785), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3631), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38337] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3988), 1, + ACTIONS(4014), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4016), 1, aux_sym__immediate_decimal_token5, - STATE(1761), 1, + STATE(1757), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 34, + ACTIONS(1738), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -171948,24 +171983,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38538] = 5, + [38395] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4023), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(4018), 1, + anon_sym_GT2, + STATE(1758), 1, + sym_comment, + STATE(4488), 1, + sym__all_type, + STATE(4992), 1, + sym_param_completer, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4828), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [38463] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4026), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4035), 1, + anon_sym_DQUOTE, + ACTIONS(4038), 1, + anon_sym_SQUOTE, + ACTIONS(4041), 1, + anon_sym_BQUOTE, + ACTIONS(4044), 1, + sym_raw_string_begin, + STATE(2107), 1, + sym__val_number_decimal, + STATE(4707), 1, + sym__command_name, + STATE(4736), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + ACTIONS(4020), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4029), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4032), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1759), 2, + sym_comment, + aux_sym__command_list_body_repeat1, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4023), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38541] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(4047), 1, + anon_sym_GT2, + STATE(1760), 1, + sym_comment, + STATE(4426), 1, + sym__all_type, + STATE(5154), 1, + sym_param_completer, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4828), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [38609] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1761), 1, + sym_comment, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5092), 1, + sym__command_name, + ACTIONS(3783), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3785), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3631), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38687] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(1724), 1, + sym__unquoted_pattern, + ACTIONS(4049), 1, + anon_sym_DOT_DOT2, + ACTIONS(4053), 1, + sym_filesize_unit, + ACTIONS(4055), 1, + sym_duration_unit, STATE(1762), 1, sym_comment, - ACTIONS(771), 8, + STATE(4718), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4051), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 34, + ACTIONS(908), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -171987,7 +172269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -171997,49 +172278,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38594] = 17, + [38755] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(3976), 1, + anon_sym_DOT2, + STATE(1763), 1, + sym_comment, + STATE(1764), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1826), 1, + sym_path, + ACTIONS(1492), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1494), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + [38815] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4057), 1, + anon_sym_DOT2, + STATE(1826), 1, + sym_path, + STATE(1764), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1498), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [38873] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3784), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1763), 1, + STATE(1765), 1, sym_comment, - STATE(1764), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(4568), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, + STATE(3562), 1, sym_val_string, - ACTIONS(3649), 2, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5131), 1, + sym__command_name, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3631), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172057,51 +172438,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38674] = 16, + [38951] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4031), 1, + ACTIONS(4010), 1, + anon_sym_DOT2, + STATE(1766), 1, + sym_comment, + STATE(1799), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1858), 1, + sym_path, + STATE(1880), 1, + sym_cell_path, + ACTIONS(1444), 3, + anon_sym_export, aux_sym_cmd_identifier_token1, - ACTIONS(4040), 1, + anon_sym_in, + ACTIONS(1446), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(4043), 1, anon_sym_SQUOTE, - ACTIONS(4046), 1, anon_sym_BQUOTE, - ACTIONS(4049), 1, + [39013] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, sym_raw_string_begin, - STATE(2107), 1, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1767), 1, + sym_comment, + STATE(1996), 1, sym__val_number_decimal, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, + STATE(3562), 1, sym_val_string, - STATE(4744), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4298), 1, sym__command_name, - ACTIONS(4025), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(4034), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4037), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1764), 2, - sym_comment, - aux_sym__command_list_body_repeat1, - STATE(3505), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4028), 23, + ACTIONS(3631), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172119,30 +172554,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38752] = 6, + [39091] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4054), 1, - aux_sym__immediate_decimal_token5, - STATE(1765), 1, + STATE(1768), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1726), 34, + ACTIONS(749), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -172177,43 +172610,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [38810] = 16, + sym_duration_unit, + [39145] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1766), 1, + STATE(1769), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(4836), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4847), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -172239,44 +172673,127 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38888] = 16, - ACTIONS(103), 1, + [39223] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1767), 1, + STATE(1770), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4171), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(789), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(791), 35, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [39277] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4060), 1, + anon_sym_DOT, + ACTIONS(4062), 1, + aux_sym__immediate_decimal_token5, + STATE(1771), 1, + sym_comment, + ACTIONS(1752), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 34, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [39335] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4064), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4066), 1, + aux_sym__immediate_decimal_token5, + STATE(1772), 1, + sym_comment, + ACTIONS(747), 7, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(749), 34, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172294,50 +172811,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38966] = 16, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [39393] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1768), 1, + STATE(1773), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(3845), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5004), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -172363,32 +172889,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39044] = 11, + [39471] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - STATE(1769), 1, + STATE(1774), 1, sym_comment, - STATE(4849), 1, - sym__type_annotation, - STATE(5087), 1, + STATE(5080), 1, sym__one_type, - STATE(5102), 1, + STATE(5089), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -172420,46 +172946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39112] = 17, + [39539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - STATE(1764), 1, - aux_sym__command_list_body_repeat1, - STATE(1770), 1, + STATE(1775), 1, sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4374), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, + ACTIONS(1505), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, + anon_sym_DOT2, + ACTIONS(1507), 39, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172483,85 +172981,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39192] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1771), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4092), 1, - sym__command_name, - ACTIONS(3768), 2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39270] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4056), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_QMARK2, - ACTIONS(4058), 1, anon_sym_BANG, - STATE(1772), 1, + [39593] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4010), 1, + anon_sym_DOT2, + STATE(1776), 1, sym_comment, - STATE(1867), 1, - sym__path_suffix, - ACTIONS(1446), 4, + STATE(1799), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1858), 1, + sym_path, + STATE(1913), 1, + sym_cell_path, + ACTIONS(1679), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 36, + ACTIONS(1677), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -172598,44 +173050,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39330] = 16, - ACTIONS(103), 1, + [39655] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4068), 1, + anon_sym_DOT, + ACTIONS(4070), 1, + aux_sym__immediate_decimal_token5, + STATE(1777), 1, + sym_comment, + ACTIONS(1752), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [39712] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1773), 1, + STATE(1778), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(5023), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5013), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3631), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172653,31 +173156,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39408] = 8, + [39789] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1774), 1, + ACTIONS(4072), 1, + sym__newline, + ACTIONS(4078), 1, + anon_sym_list, + ACTIONS(4080), 1, + anon_sym_oneof, + STATE(1779), 1, sym_comment, - STATE(1812), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - STATE(1896), 1, - sym_cell_path, - ACTIONS(1432), 3, + STATE(1816), 1, + aux_sym__repeat_newline, + STATE(3097), 1, + sym__type_annotation, + ACTIONS(4076), 2, + anon_sym_table, + anon_sym_record, + STATE(3186), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4074), 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, + [39854] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(4072), 1, + sym__newline, + STATE(1780), 1, + sym_comment, + STATE(1977), 1, + aux_sym__repeat_newline, + STATE(4468), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [39919] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1781), 1, + sym_comment, + ACTIONS(4082), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [39970] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1782), 1, + sym_comment, + ACTIONS(4084), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [40021] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1783), 1, + sym_comment, + ACTIONS(1505), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 36, + anon_sym_DOT2, + ACTIONS(1507), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -172714,44 +173415,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39470] = 16, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [40074] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1775), 1, + STATE(1784), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5033), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(1458), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1460), 38, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172769,25 +173447,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39548] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40127] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1776), 1, + STATE(1785), 1, sym_comment, - ACTIONS(1474), 4, + ACTIONS(1509), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1476), 39, + ACTIONS(1511), 38, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172814,8 +173505,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -172826,93 +173515,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [39602] = 4, + [40180] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1777), 1, + ACTIONS(4086), 1, + anon_sym_QMARK2, + STATE(1786), 1, sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(1450), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [39655] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + anon_sym_DOT2, + ACTIONS(1452), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(1788), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1778), 1, + [40235] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1787), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4084), 1, - sym__command_name, - ACTIONS(3637), 2, + ACTIONS(1517), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, + anon_sym_DOT2, + ACTIONS(1519), 38, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172936,44 +173601,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39732] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(1788), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1779), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [40288] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1788), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4959), 1, - sym__command_name, - ACTIONS(3637), 2, + ACTIONS(1521), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, + anon_sym_DOT2, + ACTIONS(1523), 38, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172997,17 +173650,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39809] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40341] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1780), 1, + STATE(1789), 1, sym_comment, - ACTIONS(1478), 4, + ACTIONS(1525), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1480), 38, + ACTIONS(1527), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173046,12 +173712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [39862] = 3, + [40394] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1781), 1, + STATE(1790), 1, sym_comment, - ACTIONS(4060), 42, + ACTIONS(4088), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -173094,12 +173760,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [39913] = 3, + [40445] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1782), 1, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + STATE(1791), 1, + sym_comment, + STATE(1795), 1, + aux_sym__types_body_repeat3, + STATE(4508), 1, + sym__one_type, + STATE(4972), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [40510] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1792), 1, sym_comment, - ACTIONS(4062), 42, + ACTIONS(4090), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -173142,30 +173863,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [39964] = 10, + [40561] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - STATE(1783), 1, + STATE(1793), 1, sym_comment, - STATE(1784), 1, + STATE(1795), 1, aux_sym__types_body_repeat3, - STATE(4531), 1, + STATE(4659), 1, sym__one_type, - STATE(4821), 1, + STATE(4972), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173197,29 +173918,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40029] = 9, + [40626] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4070), 1, + ACTIONS(4086), 1, + anon_sym_BANG, + STATE(1794), 1, + sym_comment, + ACTIONS(1450), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1452), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [40681] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4098), 1, anon_sym_list, - ACTIONS(4073), 1, + ACTIONS(4101), 1, anon_sym_oneof, - STATE(4701), 1, + STATE(4789), 1, sym__one_type, - STATE(4821), 1, + STATE(4972), 1, sym__type_annotation, - ACTIONS(4067), 2, + ACTIONS(4095), 2, anon_sym_table, anon_sym_record, - STATE(1784), 2, + STATE(1795), 2, sym_comment, aux_sym__types_body_repeat3, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4064), 31, + ACTIONS(4092), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173251,44 +174022,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40092] = 16, + [40744] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(3998), 1, + aux_sym__immediate_decimal_token5, + STATE(1796), 1, + sym_comment, + ACTIONS(739), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, - ACTIONS(1788), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, anon_sym_BQUOTE, + [40799] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1785), 1, + STATE(1797), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(4138), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4200), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173312,19 +174133,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40169] = 4, + [40876] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1786), 1, + ACTIONS(4104), 1, + aux_sym__immediate_decimal_token5, + STATE(1798), 1, sym_comment, - ACTIONS(1543), 4, + ACTIONS(755), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 38, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(757), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173348,30 +174172,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40222] = 4, + [40931] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1787), 1, + ACTIONS(4010), 1, + anon_sym_DOT2, + STATE(1799), 1, sym_comment, - ACTIONS(1466), 4, + STATE(1809), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1858), 1, + sym_path, + ACTIONS(1492), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1468), 38, + ACTIONS(1494), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173408,32 +174235,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40275] = 10, + [40990] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(4076), 1, + ACTIONS(4072), 1, sym__newline, - STATE(1788), 1, + STATE(1800), 1, sym_comment, - STATE(1970), 1, + STATE(1977), 1, aux_sym__repeat_newline, - STATE(4401), 1, + STATE(4440), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173465,30 +174290,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40340] = 10, + [41055] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(4076), 1, + ACTIONS(4072), 1, sym__newline, - STATE(1789), 1, - sym_comment, - STATE(1791), 1, + STATE(1780), 1, aux_sym__repeat_newline, - STATE(4408), 1, + STATE(1801), 1, + sym_comment, + STATE(4442), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173520,176 +174345,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40405] = 16, + [41120] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3669), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1790), 1, + STATE(1802), 1, sym_comment, - STATE(1976), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3942), 1, - sym__command_name, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, + STATE(3562), 1, sym_val_string, - ACTIONS(3649), 2, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4201), 1, + sym__command_name, + ACTIONS(3631), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, - anon_sym_export, - anon_sym_in, - STATE(480), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3667), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [40482] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1791), 1, - sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(4552), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [40547] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1792), 1, - sym_comment, - ACTIONS(4078), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [40598] = 3, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [41197] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1793), 1, + STATE(1803), 1, sym_comment, - ACTIONS(4080), 42, + ACTIONS(4106), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -173732,30 +174454,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [40649] = 10, + [41248] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, - anon_sym_list, - ACTIONS(4088), 1, - anon_sym_oneof, - STATE(1794), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(3661), 1, + aux_sym_cmd_identifier_token1, + STATE(1804), 1, sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(3026), 1, - sym__type_annotation, - ACTIONS(4084), 2, - anon_sym_table, - anon_sym_record, - STATE(3131), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4082), 31, + STATE(1979), 1, + sym__val_number_decimal, + STATE(3973), 1, + sym__command_name, + STATE(4327), 1, + sym_cmd_identifier, + STATE(4328), 1, + sym_val_string, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3657), 2, + anon_sym_export, + anon_sym_in, + STATE(501), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3659), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [41325] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1805), 1, + sym_comment, + ACTIONS(4108), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173785,64 +174555,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, + anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40714] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4090), 1, - anon_sym_QMARK2, - STATE(1795), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [40769] = 4, + [41376] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1796), 1, + STATE(1806), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -173851,7 +174577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 34, + ACTIONS(749), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -173886,67 +174612,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [40822] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1784), 1, - aux_sym__types_body_repeat3, - STATE(1797), 1, - sym_comment, - STATE(4559), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [40887] = 4, + [41429] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1798), 1, + STATE(1807), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -173955,7 +174626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(851), 34, + ACTIONS(757), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -173990,136 +174661,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [40940] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1799), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5063), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [41017] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1800), 1, - sym_comment, - ACTIONS(1470), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 38, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41070] = 5, + [41482] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4015), 1, - aux_sym__immediate_decimal_token5, - STATE(1801), 1, + STATE(1808), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(789), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1736), 34, + ACTIONS(791), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -174150,17 +174709,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41125] = 4, + sym_duration_unit, + [41535] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1802), 1, + ACTIONS(4110), 1, + anon_sym_DOT2, + STATE(1858), 1, + sym_path, + STATE(1809), 2, sym_comment, - ACTIONS(1474), 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1476), 38, + ACTIONS(1498), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174197,16 +174761,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41178] = 5, + [41592] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4092), 1, + ACTIONS(4062), 1, aux_sym__immediate_decimal_token5, - STATE(1803), 1, + STATE(1810), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1752), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174214,7 +174776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 34, + ACTIONS(1750), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -174249,16 +174811,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41233] = 6, + [41647] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4094), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4096), 1, + ACTIONS(4113), 1, aux_sym__immediate_decimal_token5, - STATE(1804), 1, + STATE(1811), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174266,10 +174826,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 33, + ACTIONS(1816), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -174300,16 +174861,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41290] = 6, + [41702] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4098), 1, - anon_sym_DOT, - ACTIONS(4100), 1, + ACTIONS(4115), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4117), 1, aux_sym__immediate_decimal_token5, - STATE(1805), 1, + STATE(1812), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174317,7 +174878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 33, + ACTIONS(1738), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -174351,114 +174912,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41347] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1806), 1, - sym_comment, - ACTIONS(1514), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1516), 38, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41400] = 3, + [41759] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1807), 1, - sym_comment, - ACTIONS(4102), 42, + ACTIONS(4072), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, + ACTIONS(4078), 1, anon_sym_list, + ACTIONS(4080), 1, anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [41451] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1808), 1, + STATE(1813), 1, sym_comment, - ACTIONS(4104), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1977), 1, + aux_sym__repeat_newline, + STATE(3017), 1, + sym__type_annotation, + ACTIONS(4076), 2, + anon_sym_table, + anon_sym_record, + STATE(3186), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4074), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174488,52 +174965,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [41502] = 16, + [41824] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1809), 1, + STATE(1814), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(3871), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5012), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174557,85 +175028,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41579] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, - anon_sym_list, - ACTIONS(4088), 1, - anon_sym_oneof, - STATE(1810), 1, - sym_comment, - STATE(1814), 1, - aux_sym__repeat_newline, - STATE(3053), 1, - sym__type_annotation, - ACTIONS(4084), 2, - anon_sym_table, - anon_sym_record, - STATE(3131), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4082), 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, - [41644] = 10, + [41901] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(4076), 1, + ACTIONS(4072), 1, sym__newline, - STATE(1788), 1, + STATE(1800), 1, aux_sym__repeat_newline, - STATE(1811), 1, + STATE(1815), 1, sym_comment, - STATE(4603), 1, + STATE(4565), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174667,133 +175083,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41709] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1812), 1, - sym_comment, - STATE(1813), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - ACTIONS(1458), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1460), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [41768] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4106), 1, - anon_sym_DOT2, - STATE(1857), 1, - sym_path, - STATE(1813), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1526), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [41825] = 10, + [41966] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, + ACTIONS(4072), 1, sym__newline, - ACTIONS(4086), 1, + ACTIONS(4078), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(4080), 1, anon_sym_oneof, - STATE(1814), 1, + STATE(1816), 1, sym_comment, - STATE(1970), 1, + STATE(1977), 1, aux_sym__repeat_newline, - STATE(3054), 1, + STATE(3098), 1, sym__type_annotation, - ACTIONS(4084), 2, + ACTIONS(4076), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, + STATE(3186), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(4074), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174825,30 +175138,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41890] = 10, + [42031] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, + ACTIONS(4072), 1, sym__newline, - ACTIONS(4086), 1, + ACTIONS(4078), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(4080), 1, anon_sym_oneof, - STATE(1794), 1, + STATE(1813), 1, aux_sym__repeat_newline, - STATE(1815), 1, + STATE(1817), 1, sym_comment, - STATE(2916), 1, + STATE(2970), 1, sym__type_annotation, - ACTIONS(4084), 2, + ACTIONS(4076), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, + STATE(3186), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(4074), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174880,20 +175193,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41955] = 5, + [42096] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4090), 1, - anon_sym_BANG, - STATE(1816), 1, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1818), 1, sym_comment, - ACTIONS(1438), 4, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5245), 1, + sym__command_name, + ACTIONS(3631), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 37, - sym_raw_string_begin, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174917,57 +175254,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [42010] = 16, + [42173] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1817), 1, + STATE(1819), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(4967), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4295), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174991,44 +175315,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42087] = 16, + [42250] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1818), 1, + STATE(1820), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(4279), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4374), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175052,44 +175376,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42164] = 16, + [42327] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1819), 1, + STATE(1821), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(4273), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4933), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175113,44 +175437,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42241] = 16, + [42404] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1820), 1, + STATE(1822), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(5036), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4910), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175174,44 +175498,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42318] = 16, + [42481] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1821), 1, + STATE(1823), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(5083), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5052), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175235,44 +175559,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42395] = 16, + [42558] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1822), 1, + STATE(1824), 1, sym_comment, - STATE(2099), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3562), 1, sym_val_string, - STATE(5194), 1, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3860), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175296,21 +175620,181 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42472] = 5, + [42635] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token5, - STATE(1823), 1, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1825), 1, sym_comment, - ACTIONS(739), 6, + STATE(1842), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4586), 1, + sym__all_type, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4740), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 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, + [42697] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1826), 1, + sym_comment, + ACTIONS(1513), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, + anon_sym_DOT2, + ACTIONS(1515), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [42749] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1827), 1, + sym_comment, + STATE(1842), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4463), 1, + sym__all_type, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4740), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 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, + [42811] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4119), 1, anon_sym_DOT_DOT2, + ACTIONS(4123), 1, + sym_filesize_unit, + ACTIONS(4125), 1, sym_duration_unit, + ACTIONS(4127), 1, sym__unquoted_pattern, - ACTIONS(741), 35, + STATE(1828), 1, + sym_comment, + ACTIONS(4121), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(908), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -175336,31 +175820,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42527] = 5, + [42873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4109), 1, - aux_sym__immediate_decimal_token5, - STATE(1824), 1, + STATE(1829), 1, sym_comment, - ACTIONS(771), 6, + ACTIONS(1529), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, + anon_sym_DOT2, + ACTIONS(1531), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -175385,29 +175862,138 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42582] = 4, + [42925] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(4129), 1, + anon_sym_DOT_DOT2, + STATE(1830), 1, + sym_comment, + ACTIONS(4131), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2011), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [42985] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(874), 1, + anon_sym_DOT_DOT2, + ACTIONS(4133), 1, + sym_filesize_unit, + ACTIONS(4135), 1, + sym_duration_unit, + STATE(1831), 1, + sym_comment, + ACTIONS(876), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(908), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [43045] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1825), 1, + ACTIONS(4137), 1, + anon_sym_QMARK2, + STATE(1832), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(1450), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1464), 37, + ACTIONS(1452), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175434,8 +176020,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -175444,27 +176028,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42634] = 8, + [43099] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(4111), 1, - anon_sym_DOT_DOT2, - STATE(1826), 1, + STATE(1833), 1, sym_comment, - ACTIONS(4113), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175487,6 +176064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175496,27 +176074,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [42694] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43151] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(4115), 1, - anon_sym_DOT_DOT2, - STATE(1827), 1, + STATE(1834), 1, sym_comment, - ACTIONS(4117), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175539,6 +176112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175548,65 +176122,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [42754] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1828), 1, - sym_comment, - STATE(1838), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4448), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 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, - [42816] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43203] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1829), 1, + STATE(1835), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1856), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -175614,7 +176137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 34, + ACTIONS(1854), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175649,31 +176172,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42868] = 8, + [43255] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(876), 1, - anon_sym_DOT_DOT2, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, - STATE(1830), 1, + ACTIONS(4070), 1, + aux_sym__immediate_decimal_token5, + STATE(1836), 1, sym_comment, - ACTIONS(878), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(1752), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 33, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175692,6 +176209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175701,74 +176219,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [42928] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1831), 1, - sym_comment, - STATE(1838), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4484), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 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, - [42990] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43309] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_QMARK2, - STATE(1832), 1, + STATE(1837), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(747), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 36, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175792,28 +176258,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43044] = 4, + [43361] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(1838), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(1533), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1522), 37, + ACTIONS(1535), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -175851,60 +176317,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43096] = 4, + [43413] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1834), 1, + STATE(1839), 1, sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(755), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOT_DOT2, + sym_duration_unit, sym__unquoted_pattern, - ACTIONS(1802), 34, + ACTIONS(757), 35, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [43465] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1840), 1, + sym_comment, + ACTIONS(789), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(791), 35, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43148] = 4, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [43517] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1835), 1, + ACTIONS(4139), 1, + aux_sym__immediate_decimal_token5, + STATE(1841), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -175912,11 +176428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 34, + ACTIONS(1816), 33, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175947,25 +176462,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43200] = 5, + [43571] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4100), 1, - aux_sym__immediate_decimal_token5, - STATE(1836), 1, + ACTIONS(4147), 1, + anon_sym_list, + ACTIONS(4150), 1, + anon_sym_oneof, + STATE(4693), 1, + sym__all_type, + ACTIONS(4144), 2, + anon_sym_table, + anon_sym_record, + STATE(1842), 2, + sym_comment, + aux_sym__composite_argument_body_repeat1, + STATE(4740), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4141), 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, + [43631] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(4153), 1, + anon_sym_DOT_DOT2, + STATE(1843), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(4155), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2003), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 33, + ACTIONS(2001), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175984,7 +176557,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175994,21 +176566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43254] = 5, + [43691] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4137), 1, anon_sym_BANG, - STATE(1837), 1, + STATE(1844), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1450), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1440), 36, + ACTIONS(1452), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -176045,27 +176615,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43308] = 8, + [43745] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4131), 1, + ACTIONS(3972), 1, anon_sym_list, - ACTIONS(4134), 1, + ACTIONS(3974), 1, anon_sym_oneof, - STATE(4736), 1, - sym__all_type, - ACTIONS(4128), 2, + STATE(1845), 1, + sym_comment, + STATE(4795), 1, + sym__type_annotation, + ACTIONS(3970), 2, anon_sym_table, anon_sym_record, - STATE(1838), 2, - sym_comment, - aux_sym__composite_argument_body_repeat1, - STATE(4464), 4, + STATE(4692), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4125), 31, + ACTIONS(3968), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176097,14 +176666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43368] = 5, + [43804] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4137), 1, - aux_sym__immediate_decimal_token5, - STATE(1839), 1, + STATE(1846), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176112,7 +176679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 33, + ACTIONS(1738), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176146,19 +176713,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43422] = 4, + [43855] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(1847), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(2152), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, + ACTIONS(2150), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176183,38 +176747,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43474] = 9, + [43906] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(4143), 1, - sym_filesize_unit, - ACTIONS(4145), 1, - sym_duration_unit, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(1841), 1, + STATE(1848), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 3, + ACTIONS(1525), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + ACTIONS(1527), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176239,7 +176794,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -176247,113 +176807,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43536] = 4, - ACTIONS(3), 1, + [43957] = 28, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1842), 1, - sym_comment, - ACTIONS(771), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(4157), 1, anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, + ACTIONS(4161), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, + anon_sym_DOLLAR, + ACTIONS(4165), 1, + anon_sym_DOT_DOT, + ACTIONS(4169), 1, + sym_val_date, + ACTIONS(4171), 1, anon_sym_DQUOTE, + ACTIONS(4173), 1, anon_sym_SQUOTE, + ACTIONS(4175), 1, anon_sym_BQUOTE, - [43588] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1843), 1, - sym_comment, - ACTIONS(849), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(851), 35, + ACTIONS(4177), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4181), 1, + aux_sym_unquoted_token1, + ACTIONS(4183), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(1849), 1, + sym_comment, + STATE(1854), 1, + sym__inter_single_quotes, + STATE(1878), 1, + sym__inter_double_quotes, + STATE(3895), 1, + sym__val_number_decimal, + STATE(5221), 1, + sym_val_bool, + ACTIONS(3024), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3034), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43640] = 4, + ACTIONS(4167), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5139), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4159), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1867), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1445), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [44056] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1844), 1, + STATE(1850), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(2178), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 37, + ACTIONS(2176), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176391,16 +176925,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43692] = 4, + [44107] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4185), 1, + anon_sym_DOT, + ACTIONS(4187), 1, + aux_sym__immediate_decimal_token5, + STATE(1851), 1, + sym_comment, + ACTIONS(739), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [44162] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4189), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4191), 1, + aux_sym__immediate_decimal_token5, + STATE(1852), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [44217] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1845), 1, + ACTIONS(4193), 1, + anon_sym_DOT, + ACTIONS(4195), 1, + aux_sym__immediate_decimal_token5, + STATE(1853), 1, + sym_comment, + ACTIONS(1752), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1750), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [44272] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1854), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(2499), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 37, + ACTIONS(2497), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176438,63 +177119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43743] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1846), 1, - sym_comment, - STATE(4128), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 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, - [43802] = 4, + [44323] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1847), 1, + STATE(1855), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176502,7 +177132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 33, + ACTIONS(1816), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176536,12 +177166,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43853] = 4, + [44374] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1848), 1, + STATE(1856), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1856), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176549,7 +177179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 33, + ACTIONS(1854), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176583,20 +177213,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43904] = 4, + [44425] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4197), 1, + sym__entry_separator, + STATE(1857), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3685), 38, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_GT2, + anon_sym_oneof, + [44476] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1849), 1, + STATE(1858), 1, + sym_comment, + ACTIONS(1513), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1515), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [44527] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4133), 1, + sym_filesize_unit, + ACTIONS(4135), 1, + sym_duration_unit, + ACTIONS(4200), 1, + anon_sym_DOT_DOT2, + STATE(1859), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(4202), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 33, + ACTIONS(908), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176618,7 +177349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -176628,32 +177358,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43955] = 8, + [44586] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(4149), 1, - anon_sym_DOT_DOT2, - STATE(1850), 1, + ACTIONS(4204), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4206), 1, + aux_sym__immediate_decimal_token5, + STATE(1860), 1, sym_comment, - ACTIONS(4151), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + sym__unquoted_pattern, + ACTIONS(1738), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176672,6 +177397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -176681,67 +177407,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44014] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1851), 1, - sym_comment, - STATE(4770), 1, - sym__type_annotation, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4731), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 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, - [44073] = 4, + [44641] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1852), 1, + STATE(1861), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(1649), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 37, + ACTIONS(1647), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176779,87 +177454,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44124] = 28, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - STATE(1853), 1, - sym_comment, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(3750), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5032), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4155), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1445), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [44223] = 4, + [44692] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(1862), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2132), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 37, + ACTIONS(2130), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176897,67 +177501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44274] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(4181), 1, - anon_sym_DOT_DOT2, - STATE(1855), 1, - sym_comment, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [44333] = 4, + [44743] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1856), 1, + STATE(1863), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1770), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 37, + ACTIONS(1768), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176995,17 +177548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44384] = 4, + [44794] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1857), 1, + STATE(1864), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(1529), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1464), 36, + ACTIONS(1531), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -177042,16 +177595,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44435] = 4, + [44845] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1858), 1, + STATE(1865), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(2503), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 37, + ACTIONS(2501), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177089,66 +177642,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44486] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4185), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4187), 1, - aux_sym__immediate_decimal_token5, - STATE(1859), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [44541] = 4, + [44896] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1860), 1, + STATE(1866), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(1533), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 37, + anon_sym_DOT2, + ACTIONS(1535), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177175,8 +177681,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -177185,16 +177689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44592] = 4, + [44947] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1861), 1, + STATE(1867), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(1505), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 37, + ACTIONS(1507), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177232,16 +177736,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44643] = 4, + [44998] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1862), 1, + STATE(1868), 1, sym_comment, - ACTIONS(1643), 3, + ACTIONS(1458), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 37, + ACTIONS(1460), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177279,78 +177783,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44694] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1863), 1, - sym_comment, - STATE(4972), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [44753] = 6, + [45049] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4189), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4191), 1, - aux_sym__immediate_decimal_token5, - STATE(1864), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(4208), 1, + anon_sym_DOT_DOT2, + STATE(1869), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(4210), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2003), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 32, + ACTIONS(2001), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -177369,7 +177825,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -177379,16 +177834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44808] = 4, + [45108] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1865), 1, + STATE(1870), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(1509), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 37, + ACTIONS(1511), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177426,16 +177881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44859] = 4, + [45159] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(1871), 1, sym_comment, - ACTIONS(1824), 3, + ACTIONS(1572), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1822), 37, + ACTIONS(1574), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177473,66 +177928,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44910] = 4, + [45210] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1867), 1, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + STATE(1872), 1, sym_comment, - ACTIONS(1520), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44961] = 4, + STATE(5026), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 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, + [45269] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1868), 1, + STATE(1873), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(2507), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 36, + ACTIONS(2505), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177559,6 +178016,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -177567,16 +178026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45012] = 4, + [45320] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1869), 1, + STATE(1874), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1517), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 37, + ACTIONS(1519), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177614,16 +178073,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45063] = 4, + [45371] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1870), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(4212), 1, + anon_sym_DOT_DOT2, + STATE(1875), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(4214), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2011), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [45430] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1876), 1, + sym_comment, + ACTIONS(1521), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 37, + ACTIONS(1523), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177661,16 +178171,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45114] = 4, + [45481] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4220), 1, + anon_sym_list, + ACTIONS(4222), 1, + anon_sym_oneof, + STATE(1877), 1, + sym_comment, + STATE(2348), 1, + sym__all_type, + ACTIONS(4218), 2, + anon_sym_table, + anon_sym_record, + STATE(2383), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4216), 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, + [45540] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(1878), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(2499), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 37, + ACTIONS(2497), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177708,16 +178269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45165] = 4, + [45591] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1872), 1, + STATE(1879), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(2182), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 37, + ACTIONS(2180), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177755,17 +178316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45216] = 4, + [45642] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1873), 1, + STATE(1880), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1572), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 37, + ACTIONS(1574), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177792,8 +178354,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -177802,16 +178362,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45267] = 4, + [45692] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1874), 1, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1881), 1, sym_comment, - ACTIONS(1514), 3, + STATE(1946), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + STATE(2207), 1, + sym_cell_path, + ACTIONS(1851), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 37, + ACTIONS(1848), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177836,12 +178404,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -177849,264 +178412,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45318] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, - ACTIONS(4193), 1, - anon_sym_DOT_DOT2, - STATE(1875), 1, - sym_comment, - ACTIONS(4195), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [45377] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4197), 1, - sym__entry_separator, - STATE(1876), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_GT2, - anon_sym_oneof, - [45428] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1877), 1, - sym_comment, - STATE(4566), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 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, - [45487] = 6, + [45750] = 27, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4200), 1, - anon_sym_DOT, - ACTIONS(4202), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4157), 1, + anon_sym_null, + ACTIONS(4161), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, + anon_sym_DOLLAR, + ACTIONS(4165), 1, + anon_sym_DOT_DOT, + ACTIONS(4169), 1, + sym_val_date, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, + anon_sym_SQUOTE, + ACTIONS(4175), 1, + anon_sym_BQUOTE, + ACTIONS(4177), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4181), 1, + aux_sym_unquoted_token1, + ACTIONS(4183), 1, + sym_raw_string_begin, + STATE(1854), 1, + sym__inter_single_quotes, STATE(1878), 1, + sym__inter_double_quotes, + STATE(1882), 1, sym_comment, - ACTIONS(739), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [45542] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4206), 1, - aux_sym__immediate_decimal_token5, - STATE(1879), 1, - sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [45597] = 4, + STATE(3895), 1, + sym__val_number_decimal, + STATE(5221), 1, + sym_val_bool, + ACTIONS(3024), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3034), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4167), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5139), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4159), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1867), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1445), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [45846] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1880), 1, + STATE(1883), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(1521), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 37, + ACTIONS(1523), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178133,8 +178519,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -178143,16 +178527,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45648] = 4, + [45896] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1881), 1, + STATE(1884), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2499), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 36, + ACTIONS(2497), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178189,24 +178573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45698] = 7, + [45946] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4208), 1, - anon_sym_QMARK2, - ACTIONS(4210), 1, - anon_sym_BANG, - STATE(1882), 1, + STATE(1885), 1, sym_comment, - STATE(2111), 1, - sym__path_suffix, - ACTIONS(1446), 4, + ACTIONS(2499), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 32, + ACTIONS(2497), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178230,7 +178608,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178238,24 +178619,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45754] = 8, + [45996] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(4224), 1, anon_sym_DOT2, - STATE(1883), 1, + STATE(1886), 1, sym_comment, - STATE(1947), 1, + STATE(1946), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2122), 1, sym_path, - STATE(2152), 1, + STATE(2187), 1, sym_cell_path, - ACTIONS(1884), 3, + ACTIONS(1444), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1882), 32, + ACTIONS(1446), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178288,16 +178669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45812] = 4, + [46054] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1884), 1, + STATE(1887), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(1517), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 36, + ACTIONS(1519), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178334,16 +178715,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45862] = 4, + [46104] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1885), 1, + STATE(1888), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(2507), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 36, + ACTIONS(2505), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178380,16 +178761,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45912] = 4, + [46154] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1889), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(2178), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 36, + ACTIONS(2176), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178426,16 +178807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45962] = 4, + [46204] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1887), 1, + STATE(1890), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(1505), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 36, + ACTIONS(1507), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178472,25 +178853,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46012] = 8, + [46254] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1888), 1, + STATE(1891), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2205), 1, - sym_cell_path, - ACTIONS(1864), 3, + ACTIONS(2132), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1862), 32, + ACTIONS(2130), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178514,7 +178888,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178522,16 +178899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46070] = 4, + [46304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1889), 1, + STATE(1892), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(2182), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 36, + ACTIONS(2180), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178568,64 +178945,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46120] = 4, - ACTIONS(3), 1, + [46354] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1890), 1, + ACTIONS(3732), 1, + sym__entry_separator, + STATE(1893), 1, sym_comment, - ACTIONS(1466), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1468), 36, + ACTIONS(3730), 38, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_GT2, + anon_sym_oneof, + [46404] = 27, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4157), 1, + anon_sym_null, + ACTIONS(4169), 1, + sym_val_date, + ACTIONS(4228), 1, + anon_sym_LPAREN, + ACTIONS(4230), 1, + anon_sym_DOLLAR, + ACTIONS(4232), 1, + anon_sym_DOT_DOT, + ACTIONS(4236), 1, + anon_sym_DQUOTE, + ACTIONS(4238), 1, + anon_sym_SQUOTE, + ACTIONS(4240), 1, + anon_sym_BQUOTE, + ACTIONS(4242), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4244), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4246), 1, + aux_sym_unquoted_token1, + ACTIONS(4248), 1, sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(1884), 1, + sym__inter_single_quotes, + STATE(1885), 1, + sym__inter_double_quotes, + STATE(1894), 1, + sym_comment, + STATE(3794), 1, + sym__val_number_decimal, + STATE(5221), 1, + sym_val_bool, + ACTIONS(3024), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + ACTIONS(3034), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [46170] = 4, + ACTIONS(4234), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5083), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4226), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1890), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1450), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [46500] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1891), 1, + ACTIONS(4250), 1, + anon_sym_QMARK2, + ACTIONS(4252), 1, + anon_sym_BANG, + STATE(1895), 1, sym_comment, - ACTIONS(1470), 3, + STATE(2113), 1, + sym__path_suffix, + ACTIONS(1432), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 36, + anon_sym_DOT2, + ACTIONS(1434), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178649,10 +179101,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178660,23 +179109,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46220] = 6, + [46556] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4254), 1, + aux_sym__immediate_decimal_token5, + STATE(1896), 1, + sym_comment, + ACTIONS(1818), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1816), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [46608] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4214), 1, + ACTIONS(4256), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4216), 1, + ACTIONS(4258), 1, aux_sym__immediate_decimal_token5, - STATE(1892), 1, + STATE(1897), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 31, + ACTIONS(1738), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -178708,16 +179204,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46274] = 6, + [46662] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1898), 1, + sym_comment, + ACTIONS(1525), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1527), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [46712] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4218), 1, - anon_sym_DOT, - ACTIONS(4220), 1, + ACTIONS(4260), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4262), 1, aux_sym__immediate_decimal_token5, - STATE(1893), 1, + STATE(1899), 1, sym_comment, - ACTIONS(739), 7, + ACTIONS(747), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -178725,7 +179267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(741), 30, + ACTIONS(749), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -178756,25 +179298,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [46328] = 8, + [46766] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1894), 1, + STATE(1900), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2150), 1, - sym_cell_path, - ACTIONS(1868), 3, + ACTIONS(1509), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1866), 32, + ACTIONS(1511), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178798,7 +179333,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178806,66 +179344,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46386] = 6, + [46816] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4222), 1, - anon_sym_DOT, ACTIONS(4224), 1, - aux_sym__immediate_decimal_token5, - STATE(1895), 1, - sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46440] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1896), 1, + anon_sym_DOT2, + STATE(1901), 1, sym_comment, - ACTIONS(1556), 3, + STATE(1946), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + STATE(2174), 1, + sym_cell_path, + ACTIONS(1878), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 36, + ACTIONS(1876), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178889,10 +179386,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178900,87 +179394,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46490] = 27, - ACTIONS(103), 1, + [46874] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(1897), 1, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1902), 1, sym_comment, - STATE(3750), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(3026), 2, + STATE(1946), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + STATE(2208), 1, + sym_cell_path, + ACTIONS(1870), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1868), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3036), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5032), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4155), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1445), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46586] = 4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [46932] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1898), 1, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1903), 1, sym_comment, - ACTIONS(1824), 3, + STATE(1946), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + STATE(2161), 1, + sym_cell_path, + ACTIONS(1874), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1822), 36, + ACTIONS(1872), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179004,10 +179486,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179015,25 +179494,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46636] = 5, + [46990] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4226), 1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, aux_sym__immediate_decimal_token5, - STATE(1899), 1, + STATE(1904), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1752), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 32, + ACTIONS(1750), 31, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -179062,94 +179542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46688] = 27, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_DOLLAR, - ACTIONS(4234), 1, - anon_sym_DOT_DOT, - ACTIONS(4238), 1, - anon_sym_DQUOTE, - ACTIONS(4240), 1, - anon_sym_SQUOTE, - ACTIONS(4242), 1, - anon_sym_BQUOTE, - ACTIONS(4244), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4246), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4248), 1, - aux_sym_unquoted_token1, - ACTIONS(4250), 1, - sym_raw_string_begin, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1900), 1, - sym_comment, - STATE(1915), 1, - sym__inter_single_quotes, - STATE(3811), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4236), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4918), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4228), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1886), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1455), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46784] = 8, + [47044] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1901), 1, + STATE(1905), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2209), 1, - sym_cell_path, - ACTIONS(1853), 3, + ACTIONS(2503), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1850), 32, + ACTIONS(2501), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179173,7 +179577,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179181,16 +179588,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46842] = 6, + [47094] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4195), 1, + aux_sym__immediate_decimal_token5, + STATE(1906), 1, + sym_comment, + ACTIONS(1752), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1750), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [47146] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4252), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4254), 1, + ACTIONS(4187), 1, aux_sym__immediate_decimal_token5, - STATE(1902), 1, + STATE(1907), 1, sym_comment, - ACTIONS(747), 7, + ACTIONS(739), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -179198,7 +179650,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(749), 30, + anon_sym_COLON2, + ACTIONS(741), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -179229,107 +179682,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [46896] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3734), 1, - sym__entry_separator, - STATE(1903), 1, - sym_comment, - ACTIONS(3732), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_GT2, - anon_sym_oneof, - [46946] = 5, + [47198] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4206), 1, - aux_sym__immediate_decimal_token5, - STATE(1904), 1, + STATE(1908), 1, sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 32, + ACTIONS(2152), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(2150), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46998] = 5, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47248] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4256), 1, + ACTIONS(4268), 1, aux_sym__immediate_decimal_token5, - STATE(1905), 1, + STATE(1909), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(755), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -179338,7 +179744,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(773), 30, + ACTIONS(757), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -179369,18 +179775,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [47050] = 4, + [47300] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1906), 1, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1910), 1, sym_comment, - ACTIONS(2270), 3, + STATE(1946), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + STATE(2198), 1, + sym_cell_path, + ACTIONS(1846), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 36, + ACTIONS(1844), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179404,10 +179817,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179415,16 +179825,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47100] = 4, + [47358] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4270), 1, + anon_sym_DOT, + ACTIONS(4272), 1, + aux_sym__immediate_decimal_token5, + STATE(1911), 1, + sym_comment, + ACTIONS(739), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [47412] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1907), 1, + STATE(1912), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(1770), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 36, + ACTIONS(1768), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179461,16 +179919,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47150] = 4, + [47462] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1913), 1, sym_comment, - ACTIONS(1643), 3, + ACTIONS(1649), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 36, + ACTIONS(1647), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179507,24 +179965,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47200] = 8, + [47512] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(4224), 1, anon_sym_DOT2, - STATE(1909), 1, + STATE(1914), 1, sym_comment, - STATE(1947), 1, + STATE(1946), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2122), 1, sym_path, - STATE(2203), 1, + STATE(2210), 1, sym_cell_path, - ACTIONS(1880), 3, + ACTIONS(1840), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1878), 32, + ACTIONS(1838), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179557,16 +180015,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47258] = 4, + [47570] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1910), 1, + STATE(1915), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1458), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 36, + ACTIONS(1460), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179603,24 +180061,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47308] = 8, + [47620] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4274), 1, + anon_sym_RBRACK, + ACTIONS(4278), 1, + sym__entry_separator, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(1916), 1, + sym_comment, + ACTIONS(4276), 35, + 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_oneof, + [47673] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1911), 1, + ACTIONS(4284), 1, + sym_long_flag_identifier, + ACTIONS(4286), 1, + anon_sym_EQ2, + STATE(1917), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2182), 1, - sym_cell_path, - ACTIONS(1432), 3, + STATE(2162), 1, + sym__flag_equals_value, + ACTIONS(4282), 9, + sym_raw_string_begin, + aux_sym_cmd_identifier_token4, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + ACTIONS(4280), 26, anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, - ACTIONS(1434), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + [47728] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1918), 1, + sym_comment, + ACTIONS(1505), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1507), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179653,65 +180199,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47366] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4202), 1, - aux_sym__immediate_decimal_token5, - STATE(1912), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [47418] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [47777] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1913), 1, + STATE(1919), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(1458), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 36, + anon_sym_DOT2, + ACTIONS(1460), 34, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179735,10 +180236,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179746,18 +180244,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47468] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [47826] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1914), 1, + STATE(1920), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1509), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 36, + anon_sym_DOT2, + ACTIONS(1511), 34, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179781,10 +180281,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179792,18 +180289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47518] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [47875] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1915), 1, + STATE(1921), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1517), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 36, + anon_sym_DOT2, + ACTIONS(1519), 34, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179827,10 +180326,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179838,24 +180334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47568] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + [47924] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1916), 1, + STATE(1922), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2207), 1, - sym_cell_path, - ACTIONS(1860), 3, + ACTIONS(1521), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1858), 32, + anon_sym_DOT2, + ACTIONS(1523), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179888,68 +180379,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47626] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + [47973] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4258), 1, - aux_sym__immediate_decimal_token5, - STATE(1917), 1, + STATE(1923), 1, sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 31, + ACTIONS(1525), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [47677] = 6, + anon_sym_DOT2, + ACTIONS(1527), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [48022] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(1918), 1, + STATE(1924), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(2535), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 31, + ACTIONS(2533), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -179981,22 +180473,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47730] = 6, + [48075] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(1919), 1, + STATE(1925), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 31, + ACTIONS(2011), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180028,19 +180520,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47783] = 4, + [48128] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1920), 1, + STATE(1926), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(2387), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(2501), 32, + ACTIONS(2385), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180073,65 +180565,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47832] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4262), 1, - anon_sym_GT2, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1921), 1, - sym_comment, - ACTIONS(4260), 35, - 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_oneof, - [47885] = 6, + [48177] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(4266), 1, - anon_sym_RBRACK, - STATE(1876), 1, + ACTIONS(4290), 1, + anon_sym_GT2, + STATE(1857), 1, aux_sym__types_body_repeat2, - STATE(1922), 1, + STATE(1927), 1, sym_comment, - ACTIONS(4268), 35, + ACTIONS(4288), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180167,69 +180612,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [47938] = 6, + [48230] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4270), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1923), 1, + ACTIONS(4272), 1, + aux_sym__immediate_decimal_token5, + STATE(1928), 1, sym_comment, - ACTIONS(4268), 35, - 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_oneof, - [47991] = 6, + ACTIONS(739), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [48281] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(2629), 1, + ACTIONS(2581), 1, anon_sym_LPAREN2, - STATE(1924), 1, + STATE(1929), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(2527), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 31, + ACTIONS(2525), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180261,22 +180705,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48044] = 6, + [48334] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(2587), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2589), 1, sym__unquoted_pattern, - STATE(1925), 1, + STATE(1930), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(2585), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 31, + ACTIONS(2583), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180308,73 +180752,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48097] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4272), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1926), 1, - sym_comment, - ACTIONS(4268), 35, - 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_oneof, - [48150] = 6, + [48387] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(1927), 1, + ACTIONS(4266), 1, + aux_sym__immediate_decimal_token5, + STATE(1931), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(1752), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 31, + sym__unquoted_pattern, + ACTIONS(1750), 31, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -180393,6 +180788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -180402,22 +180798,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48203] = 6, + [48438] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2595), 1, anon_sym_LPAREN2, ACTIONS(2597), 1, sym__unquoted_pattern, - STATE(1928), 1, + STATE(1932), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(2593), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 31, + ACTIONS(2591), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180449,21 +180845,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48256] = 5, + [48491] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, + ACTIONS(4292), 1, aux_sym__immediate_decimal_token5, - STATE(1929), 1, + STATE(1933), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1818), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 31, + ACTIONS(1816), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -180495,65 +180891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48307] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4274), 1, - anon_sym_GT2, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1930), 1, - sym_comment, - ACTIONS(4260), 35, - 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_oneof, - [48360] = 6, + [48542] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(4276), 1, - anon_sym_GT2, - STATE(1876), 1, + ACTIONS(4294), 1, + anon_sym_RBRACK, + STATE(1857), 1, aux_sym__types_body_repeat2, - STATE(1931), 1, + STATE(1934), 1, sym_comment, - ACTIONS(4260), 35, + ACTIONS(4276), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180589,22 +180938,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [48413] = 6, + [48595] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2622), 1, sym__unquoted_pattern, - STATE(1932), 1, + STATE(1935), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(1604), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 31, + ACTIONS(1706), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180636,16 +180985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48466] = 6, + [48648] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(1933), 1, + STATE(1936), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(1002), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -180683,227 +181032,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48519] = 4, + [48701] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4278), 1, - sym__newline, - STATE(1934), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3738), 36, - anon_sym_LBRACK, - 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_oneof, - [48568] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4281), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1935), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(1937), 1, sym_comment, - ACTIONS(4268), 35, - 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_oneof, - [48621] = 27, + ACTIONS(994), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1004), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [48754] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3036), 1, + ACTIONS(3034), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4157), 1, + ACTIONS(4161), 1, anon_sym_LPAREN, - ACTIONS(4159), 1, + ACTIONS(4163), 1, anon_sym_DOLLAR, - ACTIONS(4161), 1, + ACTIONS(4165), 1, anon_sym_DOT_DOT, - ACTIONS(4167), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4169), 1, + ACTIONS(4173), 1, anon_sym_SQUOTE, - ACTIONS(4171), 1, + ACTIONS(4175), 1, anon_sym_BQUOTE, - ACTIONS(4173), 1, + ACTIONS(4177), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, + ACTIONS(4181), 1, aux_sym_unquoted_token1, - ACTIONS(4179), 1, + ACTIONS(4183), 1, sym_raw_string_begin, - ACTIONS(4285), 1, + ACTIONS(4298), 1, anon_sym_null, - ACTIONS(4289), 1, + ACTIONS(4302), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4293), 1, + ACTIONS(4306), 1, sym_val_date, STATE(1854), 1, sym__inter_single_quotes, - STATE(1856), 1, + STATE(1878), 1, sym__inter_double_quotes, - STATE(1936), 1, + STATE(1938), 1, sym_comment, - STATE(3750), 1, + STATE(3895), 1, sym__val_number_decimal, - STATE(5068), 1, + STATE(5221), 1, sym_val_bool, - ACTIONS(4163), 2, + ACTIONS(4167), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4283), 2, + ACTIONS(4296), 2, anon_sym_true, anon_sym_false, - ACTIONS(4291), 2, + ACTIONS(4304), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5032), 2, + STATE(5139), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4287), 3, + ACTIONS(4300), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(1869), 4, + STATE(1867), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(1447), 5, + STATE(1444), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - [48716] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_COLON2, - ACTIONS(874), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4295), 1, - sym_filesize_unit, - ACTIONS(4297), 1, - sym_duration_unit, - STATE(1937), 1, - sym_comment, - ACTIONS(872), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(870), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48773] = 6, - ACTIONS(103), 1, + [48849] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4299), 1, - anon_sym_GT2, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1938), 1, + ACTIONS(4308), 1, + sym__newline, + STATE(1939), 2, sym_comment, - ACTIONS(4260), 35, + aux_sym__types_body_repeat1, + ACTIONS(3736), 36, + anon_sym_LBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180939,153 +181192,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [48826] = 5, + [48898] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4220), 1, - aux_sym__immediate_decimal_token5, - STATE(1939), 1, - sym_comment, - ACTIONS(739), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [48877] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4305), 1, - sym_long_flag_identifier, - ACTIONS(4307), 1, - anon_sym_EQ2, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4311), 1, + anon_sym_GT2, + STATE(1857), 1, + aux_sym__types_body_repeat2, STATE(1940), 1, sym_comment, - STATE(2191), 1, - sym__flag_equals_value, - ACTIONS(4303), 9, - sym_raw_string_begin, - aux_sym_cmd_identifier_token4, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - ACTIONS(4301), 26, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - [48932] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1941), 1, - sym_comment, - ACTIONS(1514), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1516), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48981] = 5, + ACTIONS(4288), 35, + 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_oneof, + [48951] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4313), 1, aux_sym__immediate_decimal_token5, - STATE(1942), 1, + STATE(1941), 1, sym_comment, - ACTIONS(771), 7, + ACTIONS(755), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -181093,7 +181254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(773), 30, + ACTIONS(757), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -181124,78 +181285,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49032] = 27, + [49002] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3036), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_DOLLAR, - ACTIONS(4234), 1, - anon_sym_DOT_DOT, - ACTIONS(4238), 1, - anon_sym_DQUOTE, - ACTIONS(4240), 1, - anon_sym_SQUOTE, - ACTIONS(4242), 1, - anon_sym_BQUOTE, - ACTIONS(4244), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4246), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4248), 1, - aux_sym_unquoted_token1, - ACTIONS(4250), 1, - sym_raw_string_begin, - ACTIONS(4285), 1, - anon_sym_null, - ACTIONS(4289), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4293), 1, - sym_val_date, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1915), 1, - sym__inter_single_quotes, - STATE(1943), 1, + ACTIONS(4315), 1, + anon_sym_DOT_DOT2, + STATE(1942), 1, sym_comment, - STATE(3811), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(4236), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4283), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4291), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4918), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4311), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1886), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1458), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [49127] = 4, + ACTIONS(4317), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2122), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2118), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [49055] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(1944), 1, + STATE(1943), 1, sym_comment, ACTIONS(747), 8, anon_sym_STAR, @@ -181237,12 +181377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49176] = 4, + [49104] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(1945), 1, + STATE(1944), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(755), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -181251,7 +181391,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(773), 30, + ACTIONS(757), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -181282,12 +181422,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49225] = 4, + [49153] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(1946), 1, + STATE(1945), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(789), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -181296,7 +181436,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(851), 30, + ACTIONS(791), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -181327,22 +181467,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49274] = 7, + [49202] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(4224), 1, anon_sym_DOT2, - STATE(1947), 1, + STATE(1946), 1, sym_comment, - STATE(1948), 1, + STATE(1950), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2122), 1, sym_path, - ACTIONS(1458), 3, + ACTIONS(1492), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 32, + ACTIONS(1494), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181375,21 +181515,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49329] = 6, + [49257] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4319), 1, + anon_sym_GT2, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(1947), 1, + sym_comment, + ACTIONS(4288), 35, + 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_oneof, + [49310] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4321), 1, + anon_sym_GT2, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(1948), 1, + sym_comment, + ACTIONS(4288), 35, + 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_oneof, + [49363] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4323), 1, + anon_sym_RBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(1949), 1, + sym_comment, + ACTIONS(4276), 35, + 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_oneof, + [49416] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4313), 1, + ACTIONS(4325), 1, anon_sym_DOT2, - STATE(2133), 1, + STATE(2122), 1, sym_path, - STATE(1948), 2, + STATE(1950), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(1496), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1526), 32, + ACTIONS(1498), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181422,19 +181703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49382] = 4, + [49469] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1949), 1, + STATE(1951), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 32, + ACTIONS(1738), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181467,19 +181748,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49431] = 4, + [49518] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1950), 1, + STATE(1952), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1818), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 32, + ACTIONS(1816), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181512,19 +181793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49480] = 4, + [49567] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1951), 1, + STATE(1953), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1856), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1870), 32, + ACTIONS(1854), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181557,22 +181838,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49529] = 6, + [49616] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(2005), 1, anon_sym_LPAREN2, - STATE(1952), 1, + STATE(1954), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(2003), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 31, + ACTIONS(2001), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181604,115 +181885,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49582] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1953), 1, - sym_comment, - ACTIONS(1478), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1480), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49631] = 4, - ACTIONS(3), 1, + [49669] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1954), 1, + ACTIONS(866), 1, + anon_sym_COLON2, + ACTIONS(872), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4328), 1, + sym_filesize_unit, + ACTIONS(4330), 1, + sym_duration_unit, + STATE(1955), 1, sym_comment, - ACTIONS(1543), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49680] = 7, + ACTIONS(870), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(868), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49726] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, + ACTIONS(2120), 1, anon_sym_EQ_GT, - ACTIONS(4316), 1, + ACTIONS(4315), 1, anon_sym_DOT_DOT2, - STATE(1955), 1, + STATE(1956), 1, sym_comment, - ACTIONS(4318), 2, + ACTIONS(4317), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, + ACTIONS(2122), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2134), 29, + ACTIONS(2118), 29, anon_sym_in, anon_sym_DASH2, anon_sym_and2, @@ -181742,23 +181982,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49735] = 6, + [49781] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4320), 1, + ACTIONS(4332), 1, anon_sym_DOT_DOT2, - STATE(1956), 1, + STATE(1957), 1, sym_comment, - ACTIONS(4322), 2, + ACTIONS(4334), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(2003), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + ACTIONS(2001), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181789,23 +182029,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49788] = 6, + [49834] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4324), 1, + ACTIONS(4336), 1, anon_sym_DOT_DOT2, - STATE(1957), 1, + STATE(1958), 1, sym_comment, - ACTIONS(4326), 2, + ACTIONS(4338), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 30, + ACTIONS(2011), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181836,62 +182076,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49841] = 4, - ACTIONS(3), 1, + [49887] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1958), 1, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4340), 1, + anon_sym_RBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(1959), 1, sym_comment, - ACTIONS(1466), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1468), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49890] = 6, + ACTIONS(4276), 35, + 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_oneof, + [49940] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4316), 1, + ACTIONS(4315), 1, anon_sym_DOT_DOT2, - STATE(1959), 1, + STATE(1960), 1, sym_comment, - ACTIONS(4318), 2, + ACTIONS(4317), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 5, + ACTIONS(1604), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -181928,23 +182170,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49943] = 6, + [49993] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4342), 1, anon_sym_DOT_DOT2, - STATE(1960), 1, + STATE(1961), 1, sym_comment, - ACTIONS(4330), 2, + ACTIONS(4344), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 5, + ACTIONS(2136), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2152), 30, + ACTIONS(2134), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181975,23 +182217,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49996] = 6, + [50046] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4332), 1, + ACTIONS(4346), 1, anon_sym_DOT_DOT2, - STATE(1961), 1, + STATE(1962), 1, sym_comment, - ACTIONS(4334), 2, + ACTIONS(4348), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 5, + ACTIONS(2068), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2100), 30, + ACTIONS(2066), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182022,23 +182264,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50049] = 6, + [50099] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4336), 1, + ACTIONS(4350), 1, anon_sym_DOT_DOT2, - STATE(1962), 1, + STATE(1963), 1, sym_comment, - ACTIONS(4338), 2, + ACTIONS(4352), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 5, + ACTIONS(2076), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2076), 30, + ACTIONS(2074), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182069,23 +182311,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50102] = 6, + [50152] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4340), 1, + ACTIONS(4354), 1, anon_sym_DOT_DOT2, - STATE(1963), 1, + STATE(1964), 1, sym_comment, - ACTIONS(4342), 2, + ACTIONS(4356), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 5, + ACTIONS(2084), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2120), 30, + ACTIONS(2082), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182116,162 +182358,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50155] = 4, + [50205] = 27, ACTIONS(3), 1, anon_sym_POUND, - STATE(1964), 1, - sym_comment, - ACTIONS(1470), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + ACTIONS(3034), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + ACTIONS(4228), 1, + anon_sym_LPAREN, + ACTIONS(4230), 1, + anon_sym_DOLLAR, + ACTIONS(4232), 1, + anon_sym_DOT_DOT, + ACTIONS(4236), 1, anon_sym_DQUOTE, + ACTIONS(4238), 1, anon_sym_SQUOTE, + ACTIONS(4240), 1, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [50204] = 4, - ACTIONS(3), 1, - anon_sym_POUND, + ACTIONS(4242), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4244), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4246), 1, + aux_sym_unquoted_token1, + ACTIONS(4248), 1, + sym_raw_string_begin, + ACTIONS(4298), 1, + anon_sym_null, + ACTIONS(4302), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4306), 1, + sym_val_date, + STATE(1884), 1, + sym__inter_single_quotes, + STATE(1885), 1, + sym__inter_double_quotes, STATE(1965), 1, sym_comment, - ACTIONS(1474), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1476), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(3794), 1, + sym__val_number_decimal, + STATE(5221), 1, + sym_val_bool, + ACTIONS(4234), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4296), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(4304), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5083), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4358), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [50253] = 6, + STATE(1890), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1449), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [50300] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4316), 1, - anon_sym_DOT_DOT2, + STATE(528), 1, + aux_sym__repeat_newline, STATE(1966), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, - anon_sym_GT2, + ACTIONS(4360), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2134), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50306] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1967), 1, - sym_comment, - ACTIONS(2577), 5, + ACTIONS(2654), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 30, + ACTIONS(2652), 27, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182290,29 +182469,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50358] = 7, + [50356] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4366), 1, + sym__newline, + ACTIONS(4370), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_comment, + ACTIONS(4373), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2857), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2859), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [50410] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4346), 1, + ACTIONS(4377), 1, anon_sym_RBRACK, - ACTIONS(4348), 1, + ACTIONS(4379), 1, sym__entry_separator, - ACTIONS(4350), 1, + ACTIONS(4381), 1, sym_raw_string_begin, STATE(1968), 1, sym_comment, - STATE(2091), 1, + STATE(2085), 1, aux_sym__types_body_repeat2, - ACTIONS(4344), 33, + ACTIONS(4375), 33, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -182346,16 +182568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [50412] = 6, + [50464] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2622), 1, sym__unquoted_pattern, STATE(1969), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(1604), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -182392,63 +182614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50464] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4352), 1, - sym__newline, - STATE(1970), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1955), 35, - 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_oneof, - [50512] = 4, + [50516] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1971), 1, + STATE(1970), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 31, + ACTIONS(1738), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182480,19 +182658,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50560] = 4, + [50564] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4379), 1, + sym__entry_separator, + ACTIONS(4381), 1, + sym_raw_string_begin, + ACTIONS(4383), 1, + anon_sym_RBRACK, + STATE(1971), 1, + sym_comment, + STATE(2085), 1, + aux_sym__types_body_repeat2, + ACTIONS(4375), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [50618] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1972), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1818), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 31, + ACTIONS(1816), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182524,19 +182749,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50608] = 4, + [50666] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1973), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1856), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1870), 31, + ACTIONS(1854), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182568,62 +182793,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50656] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1974), 1, - sym_comment, - ACTIONS(1966), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50708] = 5, + [50714] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4387), 1, + anon_sym_RBRACK, + ACTIONS(4389), 1, sym__entry_separator, - STATE(1876), 1, + ACTIONS(4391), 1, + sym_raw_string_begin, + STATE(1974), 1, + sym_comment, + STATE(2091), 1, aux_sym__types_body_repeat2, + ACTIONS(4385), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [50768] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(1975), 1, sym_comment, - ACTIONS(4268), 35, + ACTIONS(2859), 37, + sym__newline, + anon_sym_LBRACK, + 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_oneof, + [50814] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1976), 1, + sym_comment, + ACTIONS(747), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [50862] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4393), 1, + sym__newline, + STATE(1977), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1916), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -182659,24 +182971,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [50758] = 7, + [50910] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(1978), 1, + sym_comment, + ACTIONS(2003), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2001), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [50962] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4359), 1, + ACTIONS(4400), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4361), 1, + ACTIONS(4402), 1, sym_filesize_unit, - ACTIONS(4363), 1, + ACTIONS(4404), 1, sym_duration_unit, - STATE(1976), 1, + STATE(1979), 1, sym_comment, - ACTIONS(4357), 5, + ACTIONS(4398), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4355), 29, + ACTIONS(4396), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -182706,23 +183064,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [50812] = 8, + [51016] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(2251), 1, anon_sym_DOT2, - STATE(453), 1, + STATE(434), 1, sym_cell_path, - STATE(518), 1, + STATE(525), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, + STATE(827), 1, sym_path, - STATE(1977), 1, + STATE(1980), 1, sym_comment, - ACTIONS(1432), 2, + ACTIONS(1444), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(1434), 31, + ACTIONS(1446), 31, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -182754,22 +183112,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [50868] = 6, + [51072] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(1978), 1, + STATE(1981), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(2535), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 30, + ACTIONS(2533), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182800,179 +183158,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50920] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1979), 1, - sym_comment, - ACTIONS(4260), 35, - 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_oneof, - [50970] = 6, + [51124] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4307), 1, - anon_sym_EQ2, - STATE(1980), 1, - sym_comment, - STATE(2173), 1, - sym__flag_equals_value, - ACTIONS(4365), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4367), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [51022] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, - ACTIONS(4378), 1, - anon_sym_DOT_DOT, - STATE(1981), 1, - sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 6, - anon_sym_DOLLAR, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [51078] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, STATE(1982), 1, sym_comment, - STATE(1997), 1, + STATE(1998), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2744), 19, + ACTIONS(2776), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -182992,35 +183211,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51144] = 12, + [51190] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, STATE(1983), 1, sym_comment, - STATE(1999), 1, + STATE(2000), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 23, + ACTIONS(2776), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183044,29 +183263,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51208] = 9, + [51254] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, STATE(1984), 1, sym_comment, - STATE(2001), 1, + STATE(2002), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2746), 3, + ACTIONS(2778), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2744), 26, + ACTIONS(2776), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -183093,25 +183312,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51266] = 7, + [51312] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, STATE(1985), 1, sym_comment, - STATE(2003), 1, + STATE(2004), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2746), 5, + ACTIONS(2778), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 28, + ACTIONS(2776), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -183140,56 +183359,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51320] = 18, + [51366] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, STATE(1986), 1, sym_comment, - STATE(2005), 1, + STATE(2006), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 4, + ACTIONS(2776), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183198,57 +183417,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51396] = 19, + [51442] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4432), 1, anon_sym_and2, STATE(1987), 1, sym_comment, - STATE(2007), 1, + STATE(2008), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 3, + ACTIONS(2776), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183257,58 +183476,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51474] = 20, + [51520] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4432), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4434), 1, anon_sym_xor2, STATE(1988), 1, sym_comment, - STATE(2009), 1, + STATE(2010), 1, aux_sym__repeat_newline, - ACTIONS(2744), 2, + ACTIONS(2776), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183317,40 +183536,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51554] = 14, + [51600] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, STATE(1989), 1, sym_comment, - STATE(2011), 1, + STATE(2012), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183359,7 +183578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 11, + ACTIONS(2776), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183371,79 +183590,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51622] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - ACTIONS(4411), 1, - anon_sym_RBRACK, - STATE(1990), 1, - sym_comment, - STATE(2091), 1, - aux_sym__types_body_repeat2, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [51676] = 11, + [51668] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(1991), 1, + STATE(1990), 1, sym_comment, - STATE(2013), 1, + STATE(2014), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2744), 25, + ACTIONS(2776), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183469,45 +183641,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51738] = 15, + [51730] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(1992), 1, + STATE(1991), 1, sym_comment, - STATE(2015), 1, + STATE(2016), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 7, + ACTIONS(2776), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183515,7 +183687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183524,54 +183696,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51808] = 16, + [51800] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, + STATE(1992), 1, + sym_comment, + STATE(2018), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4420), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4412), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4424), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2776), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4422), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [51872] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, STATE(1993), 1, sym_comment, - STATE(2017), 1, + ACTIONS(2013), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2011), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [51924] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, + anon_sym_PLUS2, + ACTIONS(4426), 1, + anon_sym_bit_DASHand2, + ACTIONS(4428), 1, + anon_sym_bit_DASHxor2, + STATE(1994), 1, + sym_comment, + STATE(2020), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 6, + ACTIONS(2776), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183580,144 +183855,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51880] = 17, - ACTIONS(3), 1, + [51998] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - STATE(1994), 1, + STATE(1995), 1, sym_comment, - STATE(2019), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2744), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51954] = 7, + ACTIONS(755), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(757), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [52046] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4415), 1, - anon_sym_RBRACK, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - STATE(1995), 1, + ACTIONS(4440), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4442), 1, + sym_filesize_unit, + ACTIONS(4444), 1, + sym_duration_unit, + STATE(1996), 1, sym_comment, - STATE(2102), 1, - aux_sym__types_body_repeat2, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [52008] = 13, + ACTIONS(4438), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4436), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52100] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(1996), 1, + STATE(1997), 1, sym_comment, - STATE(2032), 1, + STATE(2034), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2702), 19, + ACTIONS(2726), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183737,38 +183999,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52074] = 12, + [52166] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1997), 1, + STATE(1998), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2706), 20, + ACTIONS(2732), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -183789,35 +184051,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52138] = 12, + [52230] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(1998), 1, + STATE(1999), 1, sym_comment, - STATE(2033), 1, + STATE(2035), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2728), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 23, + ACTIONS(2726), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183841,33 +184103,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52202] = 11, + [52294] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1999), 1, + STATE(2000), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2734), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 24, + ACTIONS(2732), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -183892,29 +184154,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52264] = 9, + [52356] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - STATE(2000), 1, - sym_comment, - STATE(2034), 1, + STATE(1966), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + STATE(2001), 1, + sym_comment, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, + ACTIONS(2728), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2702), 26, + ACTIONS(2726), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -183941,27 +184203,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52322] = 8, + [52414] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2001), 1, + STATE(2002), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2708), 3, + ACTIONS(2734), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2706), 27, + ACTIONS(2732), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -183989,25 +184251,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52378] = 7, + [52470] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - STATE(2002), 1, + STATE(2003), 1, sym_comment, - STATE(2035), 1, + STATE(2036), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + ACTIONS(2728), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2702), 28, + ACTIONS(2726), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -184036,23 +184298,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52432] = 6, + [52524] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2003), 1, + STATE(2004), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2708), 5, + ACTIONS(2734), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2706), 29, + ACTIONS(2732), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -184082,56 +184344,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52484] = 18, + [52576] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - STATE(2004), 1, + STATE(2005), 1, sym_comment, - STATE(2036), 1, + STATE(2037), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 4, + ACTIONS(2726), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184140,55 +184402,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52560] = 17, + [52652] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2005), 1, + STATE(2006), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 5, + ACTIONS(2732), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184197,57 +184459,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52634] = 19, + [52726] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4432), 1, anon_sym_and2, - STATE(2006), 1, + STATE(2007), 1, sym_comment, - STATE(2037), 1, + STATE(2038), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 3, + ACTIONS(2726), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184256,56 +184518,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52712] = 18, + [52804] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4466), 1, anon_sym_and2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2007), 1, + STATE(2008), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 4, + ACTIONS(2732), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184314,58 +184576,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52788] = 20, + [52880] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4432), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4434), 1, anon_sym_xor2, - STATE(2008), 1, + STATE(2009), 1, sym_comment, - STATE(2038), 1, + STATE(2039), 1, aux_sym__repeat_newline, - ACTIONS(2702), 2, + ACTIONS(2726), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184374,57 +184636,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52868] = 19, + [52960] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4466), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2009), 1, + STATE(2010), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 3, + ACTIONS(2732), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184433,40 +184695,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52946] = 14, + [53038] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2010), 1, + STATE(2011), 1, sym_comment, - STATE(2039), 1, + STATE(2040), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184475,7 +184737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 11, + ACTIONS(2726), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184487,38 +184749,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53014] = 13, + [53106] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2011), 1, + STATE(2012), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184527,7 +184789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 12, + ACTIONS(2732), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184540,32 +184802,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53080] = 11, + [53172] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2012), 1, + STATE(2013), 1, sym_comment, - STATE(2040), 1, + STATE(2041), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2728), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 25, + ACTIONS(2726), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -184591,30 +184853,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53142] = 10, + [53234] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2013), 1, + STATE(2014), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2734), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2706), 26, + ACTIONS(2732), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -184641,45 +184903,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53202] = 15, + [53294] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2014), 1, + STATE(2015), 1, sym_comment, - STATE(2041), 1, + STATE(2042), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 7, + ACTIONS(2726), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184687,7 +184949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184696,43 +184958,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53272] = 14, + [53364] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2015), 1, + STATE(2016), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 8, + ACTIONS(2732), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184741,7 +185003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184750,54 +185012,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53340] = 16, + [53432] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - STATE(2016), 1, + STATE(2017), 1, sym_comment, - STATE(2042), 1, + STATE(2043), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 6, + ACTIONS(2726), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184806,45 +185068,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53412] = 15, + [53504] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2017), 1, + STATE(2018), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 7, + ACTIONS(2732), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184852,7 +185114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184861,55 +185123,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53482] = 17, + [53574] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - STATE(2018), 1, + STATE(2019), 1, sym_comment, - STATE(2043), 1, + STATE(2044), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 5, + ACTIONS(2726), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184918,54 +185180,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53556] = 16, + [53648] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2019), 1, + STATE(2020), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 6, + ACTIONS(2732), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184974,40 +185236,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53628] = 13, + [53720] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2020), 1, + STATE(2021), 1, sym_comment, - STATE(2045), 1, + STATE(2046), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2712), 19, + ACTIONS(2772), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185027,35 +185289,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53694] = 12, + [53786] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2021), 1, + STATE(2022), 1, sym_comment, - STATE(2047), 1, + STATE(2048), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2774), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 23, + ACTIONS(2772), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185079,29 +185341,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53758] = 9, + [53850] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - STATE(2022), 1, + STATE(2023), 1, sym_comment, - STATE(2049), 1, + STATE(2050), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2714), 3, + ACTIONS(2774), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2712), 26, + ACTIONS(2772), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -185128,25 +185390,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53816] = 7, + [53908] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - STATE(2023), 1, + STATE(2024), 1, sym_comment, - STATE(2051), 1, + STATE(2110), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2714), 5, + ACTIONS(2774), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2712), 28, + ACTIONS(2772), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -185175,56 +185437,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53870] = 18, + [53962] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - STATE(2024), 1, + STATE(2025), 1, sym_comment, - STATE(2053), 1, + STATE(2054), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 4, + ACTIONS(2772), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185233,57 +185495,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53946] = 19, + [54038] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4432), 1, anon_sym_and2, - STATE(2025), 1, + STATE(2026), 1, sym_comment, - STATE(2055), 1, + STATE(2056), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 3, + ACTIONS(2772), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185292,58 +185554,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54024] = 20, + [54116] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4432), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4434), 1, anon_sym_xor2, - STATE(2026), 1, + STATE(2027), 1, sym_comment, - STATE(2057), 1, + STATE(2058), 1, aux_sym__repeat_newline, - ACTIONS(2712), 2, + ACTIONS(2772), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185352,40 +185614,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54104] = 14, + [54196] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2027), 1, + STATE(2028), 1, sym_comment, - STATE(2059), 1, + STATE(2060), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185394,7 +185656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 11, + ACTIONS(2772), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185406,32 +185668,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54172] = 11, + [54264] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2028), 1, + STATE(2029), 1, sym_comment, - STATE(2061), 1, + STATE(2062), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2774), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2712), 25, + ACTIONS(2772), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185457,45 +185719,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54234] = 15, + [54326] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2029), 1, + STATE(2030), 1, sym_comment, - STATE(2063), 1, + STATE(2064), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 7, + ACTIONS(2772), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185503,7 +185765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185512,54 +185774,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54304] = 16, + [54396] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - STATE(2030), 1, + STATE(2031), 1, sym_comment, - STATE(2065), 1, + STATE(2066), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 6, + ACTIONS(2772), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185568,55 +185830,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54376] = 17, + [54468] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - STATE(2031), 1, + STATE(2032), 1, sym_comment, - STATE(2067), 1, + STATE(2068), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 5, + ACTIONS(2772), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185625,38 +185887,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54450] = 12, + [54542] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4379), 1, + sym__entry_separator, + ACTIONS(4381), 1, + sym_raw_string_begin, + ACTIONS(4470), 1, + anon_sym_RBRACK, + STATE(2033), 1, + sym_comment, + STATE(2085), 1, + aux_sym__types_body_repeat2, + ACTIONS(4375), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [54596] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2032), 1, + STATE(2034), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 20, + ACTIONS(2652), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -185677,81 +185986,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54514] = 11, + [54660] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2033), 1, + STATE(2035), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2654), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 24, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54576] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2034), 1, - sym_comment, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2720), 27, + ACTIONS(2652), 24, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185771,28 +186034,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54632] = 6, + [54722] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2035), 1, + STATE(2036), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2654), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 29, + ACTIONS(2652), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185822,55 +186083,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54684] = 17, + [54774] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2036), 1, + STATE(2037), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 5, + ACTIONS(2652), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185879,115 +186140,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54758] = 18, + [54848] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4466), 1, anon_sym_and2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2037), 1, + STATE(2038), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2720), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [54834] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - ACTIONS(4449), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2038), 1, - sym_comment, - ACTIONS(4421), 2, + ACTIONS(4446), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 3, + ACTIONS(2652), 4, sym__newline, anon_sym_LBRACE, + anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185996,38 +186198,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54912] = 13, + [54924] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + ACTIONS(4460), 1, + anon_sym_bit_DASHand2, + ACTIONS(4462), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4464), 1, + anon_sym_bit_DASHor2, + ACTIONS(4466), 1, + anon_sym_and2, + ACTIONS(4468), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, STATE(2039), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2652), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4458), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4456), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [55002] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2040), 1, + sym_comment, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186036,7 +186297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 12, + ACTIONS(2652), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186049,30 +186310,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54978] = 10, + [55068] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2040), 1, + STATE(2041), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2654), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 26, + ACTIONS(2652), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186099,43 +186360,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55038] = 14, + [55128] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2041), 1, + STATE(2042), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 8, + ACTIONS(2652), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186144,7 +186405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186153,45 +186414,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55106] = 15, + [55196] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2042), 1, + STATE(2043), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 7, + ACTIONS(2652), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186199,7 +186460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186208,54 +186469,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55176] = 16, + [55266] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2043), 1, + STATE(2044), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 6, + ACTIONS(2652), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186264,40 +186525,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55248] = 13, + [55338] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2044), 1, + STATE(2045), 1, sym_comment, - STATE(2068), 1, + STATE(2069), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2728), 19, + ACTIONS(2662), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -186317,38 +186578,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55314] = 12, + [55404] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2045), 1, + STATE(2046), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2732), 20, + ACTIONS(2666), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186369,35 +186630,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55378] = 12, + [55468] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2046), 1, + STATE(2047), 1, sym_comment, - STATE(2069), 1, + STATE(2070), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2664), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 23, + ACTIONS(2662), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -186421,33 +186682,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55442] = 11, + [55532] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2047), 1, + STATE(2048), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2668), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 24, + ACTIONS(2666), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186472,29 +186733,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55504] = 9, + [55594] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - STATE(2048), 1, + STATE(2049), 1, sym_comment, - STATE(2070), 1, + STATE(2071), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, + ACTIONS(2664), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2728), 26, + ACTIONS(2662), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -186521,27 +186782,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55562] = 8, + [55652] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2049), 1, + STATE(2050), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2734), 3, + ACTIONS(2668), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2732), 27, + ACTIONS(2666), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186569,25 +186830,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55618] = 7, + [55708] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - STATE(2050), 1, + STATE(2051), 1, sym_comment, - STATE(2071), 1, + STATE(2072), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, + ACTIONS(2664), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2728), 28, + ACTIONS(2662), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -186616,102 +186877,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55672] = 6, + [55762] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2051), 1, - sym_comment, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2734), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2732), 29, - anon_sym_in, + ACTIONS(4472), 1, sym__newline, - anon_sym_DASH2, + STATE(2052), 1, + sym_comment, + ACTIONS(4373), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2857), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2859), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [55724] = 18, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [55814] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - STATE(2052), 1, + STATE(2053), 1, sym_comment, - STATE(2072), 1, + STATE(2073), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 4, + ACTIONS(2662), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186720,55 +186981,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55800] = 17, + [55890] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2053), 1, + STATE(2054), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 5, + ACTIONS(2666), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186777,57 +187038,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55874] = 19, + [55964] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4432), 1, anon_sym_and2, - STATE(2054), 1, + STATE(2055), 1, sym_comment, - STATE(2073), 1, + STATE(2074), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 3, + ACTIONS(2662), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186836,56 +187097,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55952] = 18, + [56042] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4466), 1, anon_sym_and2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2055), 1, + STATE(2056), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 4, + ACTIONS(2666), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186894,58 +187155,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56028] = 20, + [56118] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4432), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4434), 1, anon_sym_xor2, - STATE(2056), 1, + STATE(2057), 1, sym_comment, - STATE(2074), 1, + STATE(2075), 1, aux_sym__repeat_newline, - ACTIONS(2728), 2, + ACTIONS(2662), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186954,57 +187215,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56108] = 19, + [56198] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4466), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2057), 1, + STATE(2058), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 3, + ACTIONS(2666), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187013,40 +187274,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56186] = 14, + [56276] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2058), 1, + STATE(2059), 1, sym_comment, - STATE(2075), 1, + STATE(2076), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187055,7 +187316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 11, + ACTIONS(2662), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187067,38 +187328,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56254] = 13, + [56344] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2059), 1, + STATE(2060), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187107,7 +187368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 12, + ACTIONS(2666), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187120,32 +187381,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56320] = 11, + [56410] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2060), 1, + STATE(2061), 1, sym_comment, - STATE(2076), 1, + STATE(2077), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2664), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2728), 25, + ACTIONS(2662), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -187171,30 +187432,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56382] = 10, + [56472] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2061), 1, + STATE(2062), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2668), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2732), 26, + ACTIONS(2666), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -187221,45 +187482,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56442] = 15, + [56532] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2062), 1, + STATE(2063), 1, sym_comment, - STATE(2077), 1, + STATE(2078), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 7, + ACTIONS(2662), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187267,7 +187528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187276,43 +187537,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56512] = 14, + [56602] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2063), 1, + STATE(2064), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 8, + ACTIONS(2666), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187321,7 +187582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187330,54 +187591,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56580] = 16, + [56670] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - STATE(2064), 1, + STATE(2065), 1, sym_comment, - STATE(2078), 1, + STATE(2079), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 6, + ACTIONS(2662), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187386,45 +187647,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56652] = 15, + [56742] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2065), 1, + STATE(2066), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 7, + ACTIONS(2666), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187432,7 +187693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187441,55 +187702,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56722] = 17, + [56812] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - STATE(2066), 1, + STATE(2067), 1, sym_comment, - STATE(2079), 1, + STATE(2080), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 5, + ACTIONS(2662), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187498,54 +187759,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56796] = 16, + [56886] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2067), 1, + STATE(2068), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 6, + ACTIONS(2666), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187554,38 +187815,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56868] = 12, + [56958] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2068), 1, + STATE(2069), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2740), 20, + ACTIONS(2722), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -187606,33 +187867,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56932] = 11, + [57022] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2069), 1, + STATE(2070), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2724), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 24, + ACTIONS(2722), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -187657,27 +187918,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56994] = 8, + [57084] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2070), 1, + STATE(2071), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2742), 3, + ACTIONS(2724), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2740), 27, + ACTIONS(2722), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -187705,23 +187966,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57050] = 6, + [57140] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2071), 1, + STATE(2072), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2742), 5, + ACTIONS(2724), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 29, + ACTIONS(2722), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -187751,55 +188012,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57102] = 17, + [57192] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2072), 1, + STATE(2073), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 5, + ACTIONS(2722), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187808,56 +188069,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57176] = 18, + [57266] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4466), 1, anon_sym_and2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2073), 1, + STATE(2074), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 4, + ACTIONS(2722), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187866,57 +188127,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57252] = 19, + [57342] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4466), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2074), 1, + STATE(2075), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 3, + ACTIONS(2722), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187925,38 +188186,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57330] = 13, + [57420] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2075), 1, + STATE(2076), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187965,7 +188226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 12, + ACTIONS(2722), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187978,30 +188239,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57396] = 10, + [57486] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2076), 1, + STATE(2077), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2724), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2740), 26, + ACTIONS(2722), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -188028,43 +188289,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57456] = 14, + [57546] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2077), 1, + STATE(2078), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 8, + ACTIONS(2722), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -188073,7 +188334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188082,45 +188343,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57524] = 15, + [57614] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2078), 1, + STATE(2079), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 7, + ACTIONS(2722), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -188128,7 +188389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188137,55 +188398,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57594] = 16, + [57684] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2079), 1, + STATE(2080), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 6, + ACTIONS(2722), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [57756] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4286), 1, + anon_sym_EQ2, + STATE(2081), 1, + sym_comment, + STATE(2138), 1, + sym__flag_equals_value, + ACTIONS(4475), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4477), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [57808] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(2082), 1, + sym_comment, + ACTIONS(2527), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2525), 30, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -188193,20 +188529,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57666] = 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57860] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2080), 1, + ACTIONS(914), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4479), 1, + sym_filesize_unit, + ACTIONS(4481), 1, + sym_duration_unit, + STATE(2083), 1, sym_comment, - ACTIONS(747), 7, + ACTIONS(912), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(749), 30, + ACTIONS(910), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -188236,22 +188593,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [57714] = 6, + [57914] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4389), 1, + sym__entry_separator, + ACTIONS(4391), 1, + sym_raw_string_begin, + ACTIONS(4483), 1, + anon_sym_RBRACK, + STATE(2084), 1, + sym_comment, + STATE(2091), 1, + aux_sym__types_body_repeat2, + ACTIONS(4385), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [57968] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3690), 1, + sym_raw_string_begin, + ACTIONS(4485), 1, + sym__entry_separator, + STATE(2085), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3685), 34, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [58018] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4488), 1, + anon_sym_QMARK2, + STATE(2086), 1, + sym_comment, + ACTIONS(1450), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1452), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [58068] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4455), 1, + ACTIONS(4494), 1, anon_sym_DASH_DASH, - STATE(2148), 1, + STATE(2167), 1, sym_long_flag, - STATE(2081), 2, + STATE(2087), 2, sym_comment, aux_sym_decl_def_repeat1, - ACTIONS(4451), 3, + ACTIONS(4490), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4453), 31, + ACTIONS(4492), 31, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -188283,22 +188776,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [57766] = 4, + [58120] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2082), 1, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(2088), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(2585), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 32, + ACTIONS(2583), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -188327,22 +188822,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57814] = 4, + [58172] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2083), 1, + STATE(2089), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(2387), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 32, + sym__unquoted_pattern, + ACTIONS(2385), 31, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -188362,6 +188856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -188371,24 +188866,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57862] = 6, + [58220] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2084), 1, + STATE(2090), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(1002), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 30, + ACTIONS(1018), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -188417,73 +188910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57914] = 7, + [58268] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(974), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4458), 1, - sym_filesize_unit, - ACTIONS(4460), 1, - sym_duration_unit, - STATE(2085), 1, - sym_comment, - ACTIONS(972), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(970), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [57968] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - sym__newline, - STATE(2086), 1, - sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 27, + ACTIONS(3690), 1, sym_raw_string_begin, + ACTIONS(4497), 1, + sym__entry_separator, + STATE(2091), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3685), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -188491,18 +188928,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -188510,20 +188954,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - [58020] = 7, + aux_sym__unquoted_in_list_token1, + [58318] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4389), 1, sym__entry_separator, - ACTIONS(4419), 1, + ACTIONS(4391), 1, sym_raw_string_begin, - ACTIONS(4465), 1, + ACTIONS(4500), 1, anon_sym_RBRACK, - STATE(2087), 1, - sym_comment, - STATE(2102), 1, + STATE(2091), 1, aux_sym__types_body_repeat2, - ACTIONS(4413), 33, + STATE(2092), 1, + sym_comment, + ACTIONS(4385), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -188557,14 +189002,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [58074] = 3, + [58372] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2088), 1, + STATE(2093), 1, sym_comment, - ACTIONS(2940), 37, + ACTIONS(2593), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2591), 32, + anon_sym_in, sym__newline, - anon_sym_LBRACK, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58420] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(2094), 1, + sym_comment, + ACTIONS(4288), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -188600,18 +189091,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [58120] = 4, + [58470] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2089), 1, + STATE(2095), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(994), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 32, + ACTIONS(1004), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -188644,154 +189135,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58168] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2090), 1, - sym_comment, - ACTIONS(771), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [58216] = 5, + [58518] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4467), 1, + ACTIONS(4278), 1, sym__entry_separator, - STATE(2091), 2, - sym_comment, + STATE(1857), 1, aux_sym__types_body_repeat2, - ACTIONS(3710), 34, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [58266] = 6, + STATE(2096), 1, + sym_comment, + ACTIONS(4276), 35, + 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_oneof, + [58568] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2597), 1, sym__unquoted_pattern, - STATE(2092), 1, - sym_comment, - ACTIONS(2569), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2567), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58318] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2093), 1, + STATE(2097), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(2593), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 31, + ACTIONS(2591), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -188813,7 +189217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -188823,64 +189226,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58366] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4470), 1, - anon_sym_QMARK2, - STATE(2094), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [58416] = 5, + [58620] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4470), 1, + ACTIONS(4488), 1, anon_sym_BANG, - STATE(2095), 1, + STATE(2098), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1450), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1440), 32, + ACTIONS(1452), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -188913,22 +189271,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [58466] = 6, + [58670] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(2096), 1, + STATE(2099), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(1002), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 30, + ACTIONS(1018), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -188959,22 +189317,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58518] = 6, + [58722] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(2097), 1, + STATE(2100), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(994), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 30, + ACTIONS(1004), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -189005,20 +189363,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58570] = 5, + [58774] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4389), 1, + sym__entry_separator, + ACTIONS(4391), 1, + sym_raw_string_begin, + ACTIONS(4502), 1, + anon_sym_RBRACK, + STATE(2091), 1, + aux_sym__types_body_repeat2, + STATE(2101), 1, + sym_comment, + ACTIONS(4385), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [58828] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(1724), 1, sym__unquoted_pattern, - STATE(2098), 1, + STATE(2102), 1, sym_comment, - ACTIONS(868), 5, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 31, + ACTIONS(908), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -189050,24 +189455,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58620] = 7, + [58878] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4476), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4478), 1, - sym_filesize_unit, - ACTIONS(4480), 1, - sym_duration_unit, - STATE(2099), 1, + STATE(2103), 1, sym_comment, - ACTIONS(4474), 5, + ACTIONS(789), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4472), 29, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(791), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189097,70 +189498,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [58674] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2100), 1, - sym_comment, - ACTIONS(1016), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1018), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58726] = 7, + sym_duration_unit, + [58926] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(888), 1, + ACTIONS(902), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4482), 1, + ACTIONS(4504), 1, sym_filesize_unit, - ACTIONS(4484), 1, + ACTIONS(4506), 1, sym_duration_unit, - STATE(2101), 1, + STATE(2104), 1, sym_comment, - ACTIONS(886), 5, + ACTIONS(900), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(884), 29, + ACTIONS(898), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189190,69 +189546,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [58780] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4486), 1, - sym__entry_separator, - STATE(2102), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58830] = 7, + [58980] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4493), 1, + ACTIONS(4512), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4495), 1, + ACTIONS(4514), 1, sym_filesize_unit, - ACTIONS(4497), 1, + ACTIONS(4516), 1, sym_duration_unit, - STATE(2103), 1, + STATE(2105), 1, sym_comment, - ACTIONS(4491), 5, + ACTIONS(4510), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 29, + ACTIONS(4508), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189282,165 +189593,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [58884] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - ACTIONS(4499), 1, - anon_sym_RBRACK, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2104), 1, - sym_comment, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58938] = 7, + [59034] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4379), 1, sym__entry_separator, - ACTIONS(4419), 1, + ACTIONS(4381), 1, sym_raw_string_begin, - ACTIONS(4501), 1, + ACTIONS(4518), 1, anon_sym_RBRACK, - STATE(2102), 1, + STATE(2085), 1, aux_sym__types_body_repeat2, - STATE(2105), 1, - sym_comment, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58992] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, STATE(2106), 1, sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 26, - sym_raw_string_begin, + ACTIONS(4375), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [59046] = 7, + [59088] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4507), 1, + ACTIONS(4524), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4509), 1, + ACTIONS(4526), 1, sym_filesize_unit, - ACTIONS(4511), 1, + ACTIONS(4528), 1, sym_duration_unit, STATE(2107), 1, sym_comment, - ACTIONS(4505), 5, + ACTIONS(4522), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4503), 29, + ACTIONS(4520), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189470,67 +189687,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [59100] = 7, + [59142] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - ACTIONS(4513), 1, - anon_sym_RBRACK, - STATE(2091), 1, - aux_sym__types_body_repeat2, + ACTIONS(4534), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4536), 1, + sym_filesize_unit, + ACTIONS(4538), 1, + sym_duration_unit, STATE(2108), 1, sym_comment, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59154] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2109), 1, - sym_comment, - ACTIONS(849), 7, + ACTIONS(4532), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(851), 30, + ACTIONS(4530), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189560,65 +189734,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [59202] = 7, - ACTIONS(103), 1, + [59196] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - ACTIONS(4515), 1, - anon_sym_RBRACK, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2110), 1, + ACTIONS(4366), 1, + sym__newline, + ACTIONS(4370), 1, + anon_sym_LBRACK, + ACTIONS(4540), 1, + anon_sym_DOT_DOT, + STATE(2109), 1, sym_comment, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + ACTIONS(4373), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2857), 6, + anon_sym_DOLLAR, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2859), 26, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59256] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [59252] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2110), 1, + sym_comment, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2668), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2666), 29, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [59304] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2111), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(2387), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 32, + sym__unquoted_pattern, + ACTIONS(2385), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189651,64 +189871,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59303] = 4, - ACTIONS(103), 1, + [59351] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4127), 1, + sym__unquoted_pattern, STATE(2112), 1, sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [59350] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2113), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 34, + ACTIONS(866), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(908), 32, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -189722,14 +189901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -189737,18 +189915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59397] = 5, + [59400] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2114), 1, + STATE(2113), 1, sym_comment, - ACTIONS(2637), 3, + ACTIONS(1529), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2635), 32, + anon_sym_DOT2, + ACTIONS(1531), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189781,18 +189958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59446] = 5, + [59447] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4147), 1, + ACTIONS(2597), 1, sym__unquoted_pattern, - STATE(2115), 1, + STATE(2114), 1, sym_comment, - ACTIONS(868), 3, + ACTIONS(2593), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + ACTIONS(2591), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189825,18 +190002,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59495] = 5, + [59496] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2116), 1, + STATE(2115), 1, sym_comment, - ACTIONS(1619), 3, + ACTIONS(1533), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1706), 32, + anon_sym_DOT2, + ACTIONS(1535), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189869,62 +190045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59544] = 5, - ACTIONS(3), 1, + [59543] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4517), 1, - sym__newline, - STATE(2117), 2, + STATE(2116), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3738), 27, + ACTIONS(3732), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [59593] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2118), 1, - sym_comment, - ACTIONS(4413), 33, + ACTIONS(3730), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -189932,6 +190061,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -189958,151 +190088,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [59644] = 5, + [59590] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2119), 1, - sym_comment, - ACTIONS(996), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(994), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59693] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2120), 1, + ACTIONS(4543), 1, + sym__newline, + STATE(2117), 2, sym_comment, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + aux_sym__types_body_repeat1, + ACTIONS(3734), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3736), 27, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59744] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [59639] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4520), 1, - sym__newline, - STATE(2121), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(3738), 31, + ACTIONS(4389), 1, + sym__entry_separator, + ACTIONS(4391), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(2091), 1, + aux_sym__types_body_repeat2, + STATE(2118), 1, + sym_comment, + ACTIONS(4385), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59793] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [59690] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(2622), 1, sym__unquoted_pattern, - STATE(2122), 1, + STATE(2119), 1, sym_comment, - ACTIONS(1016), 3, + ACTIONS(1604), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1018), 32, + ACTIONS(1706), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190135,57 +190221,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59842] = 20, + [59739] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, + ACTIONS(2787), 1, anon_sym_DASH2, - ACTIONS(2847), 1, + ACTIONS(2799), 1, anon_sym_PLUS2, - ACTIONS(2858), 1, + ACTIONS(2803), 1, anon_sym_bit_DASHand2, - ACTIONS(2860), 1, + ACTIONS(2805), 1, anon_sym_bit_DASHxor2, - ACTIONS(2862), 1, - anon_sym_bit_DASHor2, - ACTIONS(2908), 1, + ACTIONS(2899), 1, anon_sym_and2, - ACTIONS(2912), 1, + ACTIONS(2901), 1, + anon_sym_bit_DASHor2, + ACTIONS(2903), 1, sym__newline, - ACTIONS(2914), 1, + ACTIONS(2905), 1, anon_sym_xor2, - ACTIONS(4523), 1, + ACTIONS(4546), 1, anon_sym_or2, - STATE(2123), 1, + STATE(2120), 1, sym_comment, - STATE(2124), 1, + STATE(2121), 1, aux_sym__repeat_newline, - ACTIONS(2835), 2, + ACTIONS(2785), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2839), 2, + ACTIONS(2789), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2843), 2, + ACTIONS(2795), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2845), 2, + ACTIONS(2797), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2849), 2, + ACTIONS(2801), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2841), 4, + ACTIONS(2791), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2856), 4, + ACTIONS(2793), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2851), 8, + ACTIONS(2780), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190194,57 +190280,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59921] = 20, + [59818] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2792), 1, + ACTIONS(2814), 1, anon_sym_DASH2, - ACTIONS(2798), 1, + ACTIONS(2826), 1, anon_sym_PLUS2, - ACTIONS(2802), 1, + ACTIONS(2830), 1, anon_sym_bit_DASHand2, - ACTIONS(2804), 1, + ACTIONS(2835), 1, anon_sym_bit_DASHxor2, - ACTIONS(2903), 1, + ACTIONS(2837), 1, anon_sym_bit_DASHor2, - ACTIONS(2910), 1, + ACTIONS(2841), 1, anon_sym_and2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(2918), 1, + ACTIONS(2897), 1, anon_sym_xor2, - ACTIONS(4525), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(4548), 1, anon_sym_or2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2124), 1, + STATE(2121), 1, sym_comment, - ACTIONS(2782), 2, + ACTIONS(2812), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2816), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2784), 2, + ACTIONS(2822), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2786), 2, + ACTIONS(2824), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2800), 2, + ACTIONS(2828), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2794), 4, + ACTIONS(2818), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2796), 4, + ACTIONS(2820), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2788), 8, + ACTIONS(2810), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190253,62 +190339,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60000] = 5, + [59897] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2125), 1, + STATE(2122), 1, sym_comment, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 30, + ACTIONS(1513), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60049] = 5, + anon_sym_DOT2, + ACTIONS(1515), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [59944] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4527), 1, + ACTIONS(4550), 1, anon_sym_LBRACK2, - STATE(2126), 1, + STATE(2123), 1, sym_comment, - ACTIONS(2130), 3, + ACTIONS(2168), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2128), 32, + ACTIONS(2166), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190341,22 +190426,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60098] = 4, - ACTIONS(3), 1, + [59993] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2127), 1, + ACTIONS(4379), 1, + sym__entry_separator, + ACTIONS(4381), 1, + sym_raw_string_begin, + STATE(2085), 1, + aux_sym__types_body_repeat2, + STATE(2124), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(4375), 33, anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60044] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2125), 1, + sym_comment, + ACTIONS(3732), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3730), 34, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -190370,13 +190499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190384,57 +190514,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60145] = 20, + [60091] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4432), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4434), 1, anon_sym_xor2, - ACTIONS(4529), 1, + ACTIONS(4552), 1, anon_sym_or2, - STATE(2128), 1, + STATE(2126), 1, sym_comment, - STATE(2129), 1, + STATE(2127), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190443,57 +190573,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60224] = 20, + [60170] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(4423), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4466), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_xor2, - ACTIONS(4531), 1, + ACTIONS(4554), 1, anon_sym_or2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2129), 1, + STATE(2127), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190502,57 +190632,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60303] = 20, + [60249] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4556), 1, + sym__newline, + STATE(2128), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3734), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(3736), 31, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60298] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2129), 1, + sym_comment, + ACTIONS(2146), 36, + sym__newline, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [60343] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3819), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(3821), 1, anon_sym_xor2, - ACTIONS(4533), 1, + ACTIONS(4559), 1, anon_sym_or2, STATE(2130), 1, sym_comment, STATE(2131), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190561,57 +190777,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60382] = 20, + [60422] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3836), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3869), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(3871), 1, anon_sym_xor2, - ACTIONS(4535), 1, + ACTIONS(4561), 1, anon_sym_or2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, STATE(2131), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190620,17 +190836,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60461] = 4, + [60501] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(2132), 1, sym_comment, - ACTIONS(2503), 4, + ACTIONS(1002), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - sym__unquoted_pattern, - ACTIONS(2501), 32, + ACTIONS(1018), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190663,17 +190880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60508] = 4, + [60550] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(2133), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(994), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 32, + ACTIONS(1004), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190706,58 +190924,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60555] = 3, + [60599] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1724), 1, + sym__unquoted_pattern, STATE(2134), 1, sym_comment, - ACTIONS(2096), 36, - sym__newline, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [60600] = 4, + ACTIONS(866), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(908), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [60648] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2135), 1, sym_comment, - ACTIONS(2573), 3, + ACTIONS(2391), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2571), 32, + ACTIONS(2389), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190790,16 +191010,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60646] = 4, + [60694] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2136), 1, sym_comment, - ACTIONS(2938), 3, + ACTIONS(2857), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2859), 28, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [60740] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4563), 1, + sym__newline, + STATE(2137), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1921), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1916), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [60788] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2138), 1, + sym_comment, + ACTIONS(4566), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2940), 32, + ACTIONS(4568), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190824,7 +191129,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190832,31 +191137,367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60692] = 10, + [60834] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4570), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4578), 1, anon_sym_PLUS2, - STATE(2137), 1, + STATE(2139), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2511), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2509), 25, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [60890] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2140), 1, + sym_comment, + ACTIONS(4580), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4582), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60936] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2141), 1, + sym_comment, + ACTIONS(4584), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4586), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60982] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + STATE(2142), 1, + sym_comment, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4594), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2509), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4588), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61046] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + ACTIONS(4598), 1, + anon_sym_bit_DASHand2, + STATE(2143), 1, + sym_comment, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4594), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2509), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4588), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61112] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + ACTIONS(4598), 1, + anon_sym_bit_DASHand2, + ACTIONS(4600), 1, + anon_sym_bit_DASHxor2, + STATE(2144), 1, + sym_comment, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4594), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2509), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4588), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61180] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4604), 1, + anon_sym_DASH2, + ACTIONS(4614), 1, + anon_sym_PLUS2, + STATE(2145), 1, + sym_comment, + ACTIONS(4602), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4606), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4610), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4612), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4616), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4608), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2509), 19, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61240] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4604), 1, + anon_sym_DASH2, + ACTIONS(4614), 1, + anon_sym_PLUS2, + STATE(2146), 1, + sym_comment, + ACTIONS(2511), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4539), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 23, + ACTIONS(2509), 23, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -190880,25 +191521,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60750] = 7, + [61298] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2138), 1, + STATE(2147), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, + ACTIONS(2511), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2533), 26, + ACTIONS(2509), 26, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -190925,21 +191566,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60802] = 5, + [61350] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2139), 1, + STATE(2148), 1, sym_comment, - ACTIONS(4541), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(2511), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 28, + ACTIONS(2509), 28, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -190968,52 +191609,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60850] = 16, + [61398] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(4622), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(4624), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(4626), 1, anon_sym_bit_DASHor2, - STATE(2140), 1, + STATE(2149), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4602), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2533), 4, + ACTIONS(2509), 4, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4553), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191022,53 +191663,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60920] = 17, + [61468] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(4622), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(4624), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(4626), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(4628), 1, anon_sym_and2, - STATE(2141), 1, + STATE(2150), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4602), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2533), 3, + ACTIONS(2509), 3, anon_sym_EQ_GT, anon_sym_xor2, anon_sym_or2, - ACTIONS(4553), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191077,54 +191718,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60992] = 18, + [61540] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(4622), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(4624), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(4626), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(4628), 1, anon_sym_and2, - ACTIONS(4565), 1, + ACTIONS(4630), 1, anon_sym_xor2, - STATE(2142), 1, + STATE(2151), 1, sym_comment, - ACTIONS(2533), 2, + ACTIONS(2509), 2, anon_sym_EQ_GT, anon_sym_or2, - ACTIONS(4539), 2, + ACTIONS(4602), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191133,36 +191774,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61066] = 12, + [61614] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - STATE(2143), 1, + STATE(2152), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4602), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4549), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191171,7 +191812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 11, + ACTIONS(2509), 11, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -191183,28 +191824,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [61128] = 9, + [61676] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - STATE(2144), 1, + STATE(2153), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2511), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4539), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 25, + ACTIONS(2509), 25, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -191230,41 +191871,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [61184] = 13, + [61732] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - STATE(2145), 1, + STATE(2154), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4602), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 7, + ACTIONS(2509), 7, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -191272,7 +191913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191281,50 +191922,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61248] = 14, + [61796] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(4622), 1, anon_sym_bit_DASHand2, - STATE(2146), 1, + STATE(2155), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4602), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 6, + ACTIONS(2509), 6, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191333,51 +191974,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61314] = 15, + [61862] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(4622), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(4624), 1, anon_sym_bit_DASHxor2, - STATE(2147), 1, + STATE(2156), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4602), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 5, + ACTIONS(2509), 5, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191386,186 +192027,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61382] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2148), 1, - sym_comment, - ACTIONS(4567), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4569), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [61428] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4575), 1, - aux_sym_cmd_identifier_token6, - STATE(2149), 1, - sym_comment, - ACTIONS(4573), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4571), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [61476] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2150), 1, - sym_comment, - ACTIONS(2521), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2519), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [61522] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - aux_sym_cmd_identifier_token6, - STATE(2151), 1, - sym_comment, - ACTIONS(1000), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(998), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [61570] = 4, + [61930] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2152), 1, + STATE(2157), 1, sym_comment, - ACTIONS(1860), 3, + ACTIONS(2178), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1858), 32, + ACTIONS(2176), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191575,81 +192046,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_export_DASHenv, anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [61616] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2153), 1, - sym_comment, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 28, - sym_raw_string_begin, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [61662] = 4, + [61976] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2158), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(2182), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 32, + ACTIONS(2180), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191682,16 +192111,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61708] = 4, + [62022] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1010), 1, + aux_sym_cmd_identifier_token6, + STATE(2159), 1, + sym_comment, + ACTIONS(1008), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1006), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [62070] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2155), 1, + STATE(2160), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(2614), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 32, + ACTIONS(2612), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191724,16 +192196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61754] = 4, + [62116] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2156), 1, + STATE(2161), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(2638), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 32, + ACTIONS(2636), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191766,81 +192238,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61800] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4585), 1, - anon_sym_GT2, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2157), 1, - sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4539), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - STATE(5104), 1, - sym__collection_body, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [61892] = 4, + [62162] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2158), 1, + STATE(2162), 1, sym_comment, - ACTIONS(1888), 3, + ACTIONS(4632), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1886), 32, + ACTIONS(4634), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191873,81 +192280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61938] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - ACTIONS(4599), 1, - anon_sym_GT2, - STATE(2159), 1, - sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4539), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - STATE(5019), 1, - sym__collection_body, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [62030] = 4, + [62208] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2160), 1, + STATE(2163), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1505), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 32, + ACTIONS(1507), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191980,59 +192322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62076] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4605), 1, - aux_sym_cmd_identifier_token6, - STATE(2161), 1, - sym_comment, - ACTIONS(4603), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4601), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [62124] = 4, + [62254] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2162), 1, + STATE(2164), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(2618), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 32, + ACTIONS(2616), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192065,16 +192364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62170] = 4, + [62300] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2163), 1, + STATE(2165), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1458), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 32, + ACTIONS(1460), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192107,16 +192406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62216] = 4, + [62346] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2164), 1, + STATE(2166), 1, sym_comment, - ACTIONS(868), 3, + ACTIONS(1509), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + ACTIONS(1511), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192149,16 +192448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62262] = 4, + [62392] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2165), 1, + STATE(2167), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(4636), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 32, + ACTIONS(4638), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192191,16 +192490,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62308] = 4, + [62438] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2166), 1, + STATE(2168), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(2419), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 32, + ACTIONS(2417), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192233,16 +192532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62354] = 4, + [62484] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2167), 1, + STATE(2169), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1517), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 32, + ACTIONS(1519), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192275,16 +192574,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62400] = 4, + [62530] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2168), 1, + STATE(2170), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1521), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 32, + ACTIONS(1523), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192317,113 +192616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62446] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2169), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2533), 19, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62506] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2170), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 23, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62564] = 4, + [62576] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2171), 1, sym_comment, - ACTIONS(1619), 3, + ACTIONS(1525), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1706), 32, + ACTIONS(1527), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192456,61 +192658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62610] = 7, + [62622] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2172), 1, sym_comment, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 26, - anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62662] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2173), 1, - sym_comment, - ACTIONS(4623), 3, + ACTIONS(2152), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4625), 32, + ACTIONS(2150), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192543,16 +192700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62708] = 4, + [62668] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2174), 1, + STATE(2173), 1, sym_comment, - ACTIONS(4627), 3, + ACTIONS(2626), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4629), 32, + ACTIONS(2624), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192585,59 +192742,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62754] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2175), 1, - sym_comment, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2533), 28, - anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62802] = 4, + [62714] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2176), 1, + STATE(2174), 1, sym_comment, - ACTIONS(4631), 3, + ACTIONS(2447), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4633), 32, + ACTIONS(2445), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192670,52 +192784,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62848] = 16, + [62760] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4570), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4578), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(4598), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(4600), 1, anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, + ACTIONS(4640), 1, anon_sym_bit_DASHor2, - STATE(2177), 1, + STATE(2175), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4572), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4574), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4576), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 4, + ACTIONS(2509), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4613), 4, + ACTIONS(4592), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4594), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + ACTIONS(4588), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192724,16 +192838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [62918] = 4, + [62830] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2178), 1, + STATE(2176), 1, sym_comment, - ACTIONS(2114), 3, + ACTIONS(866), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2112), 32, + ACTIONS(908), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192766,16 +192880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62964] = 4, + [62876] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2179), 1, + STATE(2177), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2630), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 32, + ACTIONS(2628), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192808,16 +192922,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63010] = 4, + [62922] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2180), 1, + STATE(2178), 1, sym_comment, - ACTIONS(1876), 3, + ACTIONS(1604), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1874), 32, + ACTIONS(1706), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192850,16 +192964,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63056] = 4, + [62968] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2181), 1, + STATE(2179), 1, sym_comment, - ACTIONS(2507), 3, + ACTIONS(2515), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2505), 32, + ACTIONS(2513), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192892,16 +193006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63102] = 4, + [63014] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2182), 1, + STATE(2180), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(2132), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 32, + ACTIONS(2130), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192934,16 +193048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63148] = 4, + [63060] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2183), 1, + STATE(2181), 1, sym_comment, - ACTIONS(2617), 3, + ACTIONS(2128), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2615), 32, + ACTIONS(2126), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192976,189 +193090,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63194] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - ACTIONS(4645), 1, - anon_sym_and2, - STATE(2184), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63266] = 18, + [63106] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4570), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4578), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - ACTIONS(4645), 1, - anon_sym_and2, - ACTIONS(4647), 1, - anon_sym_xor2, - STATE(2185), 1, + STATE(2182), 1, sym_comment, - ACTIONS(2533), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4572), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4574), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4576), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63340] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2186), 1, - sym_comment, - ACTIONS(4607), 2, + ACTIONS(4590), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4596), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4592), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [63402] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2187), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2533), 25, + ACTIONS(2509), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -193171,115 +193132,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [63458] = 13, - ACTIONS(3), 1, + [63166] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2188), 1, + ACTIONS(4646), 1, + aux_sym_cmd_identifier_token6, + STATE(2183), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63522] = 14, + ACTIONS(4644), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4642), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [63214] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4570), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4578), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - STATE(2189), 1, + STATE(2184), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(2511), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4572), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4574), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4576), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4596), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 6, + ACTIONS(2509), 23, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4635), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -193287,115 +193219,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63588] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - STATE(2190), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63656] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2191), 1, - sym_comment, - ACTIONS(4649), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4651), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [63702] = 5, + [63272] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1014), 1, + ACTIONS(4652), 1, aux_sym_cmd_identifier_token6, - STATE(2192), 1, + STATE(2185), 1, sym_comment, - ACTIONS(1012), 5, + ACTIONS(4650), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1010), 29, + ACTIONS(4648), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -193425,16 +193273,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [63750] = 4, + [63320] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2193), 1, + STATE(2186), 1, + sym_comment, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2511), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2509), 26, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [63372] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2187), 1, sym_comment, - ACTIONS(2565), 3, + ACTIONS(1572), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2563), 32, + ACTIONS(1574), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193467,16 +193360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63796] = 4, + [63418] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2194), 1, + STATE(2188), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(2523), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 32, + ACTIONS(2521), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193509,20 +193402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63842] = 5, + [63464] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(1000), 1, aux_sym_cmd_identifier_token6, - STATE(2195), 1, + STATE(2189), 1, sym_comment, - ACTIONS(1006), 5, + ACTIONS(998), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1004), 29, + ACTIONS(996), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -193552,16 +193445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [63890] = 4, + [63512] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2196), 1, + STATE(2190), 1, sym_comment, - ACTIONS(2220), 3, + ACTIONS(2503), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2218), 32, + ACTIONS(2501), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193594,16 +193487,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63936] = 4, + [63558] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + aux_sym_cmd_identifier_token6, + STATE(2191), 1, + sym_comment, + ACTIONS(1014), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1012), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [63606] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2197), 1, + STATE(2192), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(2507), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 32, + ACTIONS(2505), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193636,62 +193572,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63982] = 4, + [63652] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(2198), 1, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + ACTIONS(4598), 1, + anon_sym_bit_DASHand2, + ACTIONS(4600), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4640), 1, + anon_sym_bit_DASHor2, + ACTIONS(4654), 1, + anon_sym_and2, + ACTIONS(4656), 1, + anon_sym_xor2, + STATE(2193), 1, sym_comment, - ACTIONS(2609), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2509), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4594), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4588), 8, anon_sym_in, - ACTIONS(2607), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [64028] = 5, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [63726] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4657), 1, + ACTIONS(4662), 1, aux_sym_cmd_identifier_token6, - STATE(2199), 1, + STATE(2194), 1, + sym_comment, + ACTIONS(4660), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4658), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [63774] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + STATE(2195), 1, + sym_comment, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4588), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [63836] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4668), 1, + aux_sym_cmd_identifier_token6, + STATE(2196), 1, sym_comment, - ACTIONS(4655), 5, + ACTIONS(4666), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4653), 29, + ACTIONS(4664), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -193721,20 +193764,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [64076] = 5, + [63884] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4663), 1, + ACTIONS(4674), 1, aux_sym_cmd_identifier_token6, - STATE(2200), 1, + STATE(2197), 1, sym_comment, - ACTIONS(4661), 5, + ACTIONS(4672), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4659), 29, + ACTIONS(4670), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -193764,124 +193807,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [64124] = 5, + [63932] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4665), 1, - sym__newline, - STATE(2201), 2, - aux_sym__repeat_newline, + STATE(2198), 1, sym_comment, - ACTIONS(1960), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(2519), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2517), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1955), 25, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63978] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2199), 1, + sym_comment, + ACTIONS(1882), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1880), 32, sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [64172] = 27, + [64024] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - ACTIONS(4668), 1, - anon_sym_GT2, - STATE(2202), 1, + STATE(2200), 1, sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4539), 1, - sym__collection_entry, - STATE(4871), 1, - sym__collection_body, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [64264] = 4, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2511), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2509), 28, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64072] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2201), 1, sym_comment, - ACTIONS(2224), 3, + ACTIONS(1860), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2222), 32, + ACTIONS(1858), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193914,16 +193976,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64310] = 4, + [64118] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2204), 1, + STATE(2202), 1, sym_comment, - ACTIONS(2539), 3, + ACTIONS(2463), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2537), 32, + ACTIONS(2461), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193956,16 +194018,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64356] = 4, + [64164] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2205), 1, + STATE(2203), 1, sym_comment, - ACTIONS(2204), 3, + ACTIONS(2857), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2202), 32, + ACTIONS(2859), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193990,7 +194052,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -193998,16 +194060,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64402] = 4, + [64210] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2206), 1, + STATE(2204), 1, sym_comment, - ACTIONS(2513), 3, + ACTIONS(2499), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2511), 32, + ACTIONS(2497), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194040,16 +194102,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64448] = 4, + [64256] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2207), 1, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + ACTIONS(4598), 1, + anon_sym_bit_DASHand2, + ACTIONS(4600), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4640), 1, + anon_sym_bit_DASHor2, + ACTIONS(4654), 1, + anon_sym_and2, + STATE(2205), 1, sym_comment, - ACTIONS(2593), 3, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2509), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4594), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4588), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [64328] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2206), 1, + sym_comment, + ACTIONS(2499), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2591), 32, + ACTIONS(2497), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194082,16 +194199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64494] = 4, + [64374] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2208), 1, + STATE(2207), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(1846), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 32, + ACTIONS(1844), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194124,16 +194241,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64540] = 4, + [64420] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2209), 1, + STATE(2208), 1, sym_comment, - ACTIONS(1868), 3, + ACTIONS(2467), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1866), 32, + ACTIONS(2465), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194166,16 +194283,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64586] = 4, + [64466] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2210), 1, + STATE(2209), 1, sym_comment, - ACTIONS(2196), 3, + ACTIONS(2547), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2194), 32, + ACTIONS(2545), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194208,16 +194325,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64632] = 4, + [64512] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2211), 1, + STATE(2210), 1, sym_comment, - ACTIONS(2517), 3, + ACTIONS(1874), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2515), 32, + ACTIONS(1872), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194250,102 +194367,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64678] = 11, + [64558] = 26, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - STATE(2212), 1, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4684), 1, + anon_sym_GT2, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + STATE(2211), 1, sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, + STATE(2212), 1, + aux_sym__collection_body, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [64647] = 25, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4703), 1, + anon_sym_null, + ACTIONS(4712), 1, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2533), 19, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [64738] = 18, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4720), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4723), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4729), 1, + sym_val_date, + ACTIONS(4732), 1, + anon_sym_DQUOTE, + ACTIONS(4735), 1, + anon_sym_SQUOTE, + ACTIONS(4738), 1, + anon_sym_BQUOTE, + ACTIONS(4741), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4744), 1, + sym_raw_string_begin, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4700), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4709), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4717), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4726), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2212), 2, + aux_sym__collection_body, + sym_comment, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4706), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [64734] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2810), 1, - anon_sym_DASH2, - ACTIONS(2822), 1, - anon_sym_PLUS2, - ACTIONS(2826), 1, - anon_sym_bit_DASHand2, - ACTIONS(2828), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2830), 1, - anon_sym_bit_DASHor2, - ACTIONS(2864), 1, - anon_sym_and2, - ACTIONS(2866), 1, - anon_sym_xor2, - ACTIONS(4670), 1, - anon_sym_or2, STATE(2213), 1, sym_comment, - ACTIONS(2808), 2, + ACTIONS(4751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2812), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2818), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2820), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2824), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2814), 4, + ACTIONS(4753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2816), 4, + ACTIONS(4755), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2806), 8, + ACTIONS(4747), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194354,53 +194519,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64811] = 18, + ACTIONS(4749), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [64785] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(2909), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(2919), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(2929), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(2931), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(2933), 1, anon_sym_bit_DASHor2, - ACTIONS(3890), 1, + ACTIONS(2935), 1, anon_sym_and2, - ACTIONS(3892), 1, + ACTIONS(2940), 1, anon_sym_xor2, - ACTIONS(4672), 1, + ACTIONS(4757), 1, anon_sym_or2, STATE(2214), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(2907), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(2911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(2915), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(2917), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(2921), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(2913), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(2927), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(2925), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194409,53 +194591,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64884] = 18, + [64858] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(4622), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(4624), 1, anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, + ACTIONS(4626), 1, anon_sym_bit_DASHor2, - ACTIONS(4645), 1, + ACTIONS(4628), 1, anon_sym_and2, - ACTIONS(4647), 1, + ACTIONS(4630), 1, anon_sym_xor2, - ACTIONS(4674), 1, + ACTIONS(4759), 1, anon_sym_or2, STATE(2215), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4602), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194464,53 +194646,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64957] = 18, + [64931] = 26, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4761), 1, + anon_sym_GT2, + STATE(2211), 1, + aux_sym__collection_body, + STATE(2216), 1, + sym_comment, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65020] = 26, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4763), 1, + anon_sym_GT2, + STATE(2217), 1, + sym_comment, + STATE(2218), 1, + aux_sym__collection_body, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65109] = 26, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4765), 1, + anon_sym_GT2, + STATE(2212), 1, + aux_sym__collection_body, + STATE(2218), 1, + sym_comment, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65198] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(3893), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(3895), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(3897), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(3899), 1, anon_sym_and2, - ACTIONS(4565), 1, + ACTIONS(3901), 1, anon_sym_xor2, - ACTIONS(4676), 1, + ACTIONS(4767), 1, anon_sym_or2, - STATE(2216), 1, + STATE(2219), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(3873), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194519,97 +194890,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65030] = 7, + [65271] = 26, ACTIONS(3), 1, anon_sym_POUND, - STATE(2217), 1, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4769), 1, + anon_sym_GT2, + STATE(2220), 1, sym_comment, + STATE(2221), 1, + aux_sym__collection_body, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65360] = 26, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4771), 1, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4684), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4686), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4678), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(4680), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [65081] = 18, + STATE(2212), 1, + aux_sym__collection_body, + STATE(2221), 1, + sym_comment, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65449] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(2964), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(2966), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHor2, - ACTIONS(2974), 1, + ACTIONS(3932), 1, anon_sym_and2, - ACTIONS(3024), 1, + ACTIONS(3934), 1, anon_sym_xor2, - ACTIONS(4688), 1, + ACTIONS(4773), 1, anon_sym_or2, - STATE(2218), 1, + STATE(2222), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2944), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194618,12 +195071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65154] = 4, + [65522] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2219), 1, + STATE(2223), 1, sym_comment, - ACTIONS(2098), 8, + ACTIONS(2148), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -194632,7 +195085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2096), 26, + ACTIONS(2146), 26, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -194659,53 +195112,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [65199] = 18, + [65567] = 26, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4775), 1, + anon_sym_GT2, + STATE(2224), 1, + sym_comment, + STATE(2227), 1, + aux_sym__collection_body, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65656] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(4570), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(4578), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(4598), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(4600), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(4640), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(4654), 1, anon_sym_and2, - ACTIONS(3932), 1, + ACTIONS(4656), 1, anon_sym_xor2, - ACTIONS(4690), 1, + ACTIONS(4777), 1, anon_sym_or2, - STATE(2220), 1, + STATE(2225), 1, sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(4572), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(4574), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(4576), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(4592), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(4594), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(4588), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194714,25 +195230,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65272] = 7, + [65729] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(2221), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + ACTIONS(3010), 1, + anon_sym_bit_DASHand2, + ACTIONS(3012), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3014), 1, + anon_sym_bit_DASHor2, + ACTIONS(3020), 1, + anon_sym_and2, + ACTIONS(3022), 1, + anon_sym_xor2, + ACTIONS(4779), 1, + anon_sym_or2, + STATE(2226), 1, sym_comment, - ACTIONS(4694), 2, + ACTIONS(2992), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4696), 4, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4698), 4, + ACTIONS(3006), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4692), 8, + ACTIONS(3000), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194741,181 +195285,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4680), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [65322] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4700), 1, - sym__entry_separator, - STATE(2222), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 30, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [65368] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4705), 1, - anon_sym_RBRACE, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4709), 1, - sym_raw_string_begin, - STATE(2222), 1, - aux_sym__types_body_repeat2, - STATE(2223), 1, - sym_comment, - ACTIONS(4703), 29, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [65418] = 25, + [65802] = 26, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(3835), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(3837), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(3839), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(3841), 1, sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(4678), 1, anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, + ACTIONS(4686), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4690), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(4692), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(4696), 1, sym_val_date, - STATE(2224), 1, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4781), 1, + anon_sym_GT2, + STATE(2212), 1, + aux_sym__collection_body, + STATE(2227), 1, sym_comment, - STATE(2246), 1, - aux_sym__collection_body_repeat1, - STATE(2386), 1, - aux_sym__types_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4439), 1, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, sym__collection_entry, - STATE(4928), 1, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, sym_val_bool, - ACTIONS(4577), 2, + ACTIONS(4676), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(4694), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, + STATE(5216), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(4680), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(2372), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [65504] = 7, + [65891] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4785), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(4789), 1, sym_raw_string_begin, - ACTIONS(4711), 1, - anon_sym_RBRACE, - STATE(2222), 1, - aux_sym__types_body_repeat2, - STATE(2225), 1, + STATE(2228), 1, sym_comment, - ACTIONS(4703), 29, + STATE(2231), 1, + aux_sym__types_body_repeat2, + ACTIONS(4783), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194945,15 +195391,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65554] = 5, + [65941] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_comment, + ACTIONS(4793), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4795), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4797), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4791), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(4749), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [65991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4713), 1, + ACTIONS(4799), 1, sym__newline, - STATE(2226), 2, + STATE(2230), 2, aux_sym__repeat_newline, sym_comment, - ACTIONS(1960), 7, + ACTIONS(1921), 7, anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -194961,7 +195450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_record_token1, - ACTIONS(1955), 24, + ACTIONS(1916), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -194986,20 +195475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [65600] = 7, + [66037] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(3690), 1, sym_raw_string_begin, - ACTIONS(4716), 1, - anon_sym_RBRACE, - STATE(2222), 1, - aux_sym__types_body_repeat2, - STATE(2227), 1, + ACTIONS(4802), 1, + sym__entry_separator, + STATE(2231), 2, sym_comment, - ACTIONS(4703), 29, + aux_sym__types_body_repeat2, + ACTIONS(3685), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195010,6 +195496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -195029,138 +195516,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65650] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2228), 1, - sym_comment, - ACTIONS(1478), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1480), 29, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [65693] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2229), 1, - sym_comment, - ACTIONS(1470), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1472), 29, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [65736] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2230), 1, - sym_comment, - ACTIONS(1474), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1476), 29, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [65779] = 7, + [66083] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4787), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4789), 1, sym_raw_string_begin, + ACTIONS(4805), 1, + anon_sym_RBRACE, STATE(2231), 1, - sym_comment, - STATE(2245), 1, aux_sym__types_body_repeat2, - ACTIONS(4720), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, + STATE(2232), 1, + sym_comment, + ACTIONS(4783), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195171,6 +195540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -195187,22 +195558,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [65828] = 7, + aux_sym_unquoted_token1, + [66133] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4787), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4789), 1, sym_raw_string_begin, - STATE(2232), 1, - sym_comment, - STATE(2245), 1, + ACTIONS(4807), 1, + anon_sym_RBRACE, + STATE(2231), 1, aux_sym__types_body_repeat2, - ACTIONS(4726), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, + STATE(2233), 1, + sym_comment, + ACTIONS(4783), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195213,6 +195583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -195229,17 +195601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [65877] = 4, + aux_sym_unquoted_token1, + [66183] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2233), 1, + STATE(2234), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1509), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1516), 29, + ACTIONS(1511), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195269,21 +195641,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [65920] = 7, + [66226] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4366), 1, + sym__newline, + ACTIONS(4370), 1, + anon_sym_LBRACK, + ACTIONS(4540), 1, + anon_sym_DOT_DOT, + STATE(2235), 1, + sym_comment, + ACTIONS(4373), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2857), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2859), 22, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [66277] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(3690), 1, sym_raw_string_begin, - STATE(2234), 1, + ACTIONS(4809), 1, + sym__entry_separator, + STATE(2236), 2, sym_comment, - STATE(2245), 1, aux_sym__types_body_repeat2, - ACTIONS(4728), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(3685), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195291,9 +195702,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -195311,21 +195724,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [65969] = 7, + [66322] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4816), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4818), 1, sym_raw_string_begin, - STATE(2235), 1, - sym_comment, - STATE(2245), 1, + STATE(2236), 1, aux_sym__types_body_repeat2, - ACTIONS(4730), 2, + STATE(2237), 1, + sym_comment, + ACTIONS(4814), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(4812), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195353,21 +195766,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66018] = 7, + [66371] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4816), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4818), 1, sym_raw_string_begin, STATE(2236), 1, - sym_comment, - STATE(2245), 1, aux_sym__types_body_repeat2, - ACTIONS(4730), 2, + STATE(2238), 1, + sym_comment, + ACTIONS(4820), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(4812), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195395,27 +195808,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66067] = 8, + [66420] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4822), 1, sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, - ACTIONS(4378), 1, - anon_sym_DOT_DOT, - STATE(2237), 1, + STATE(2239), 2, sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 5, + aux_sym__types_body_repeat1, + ACTIONS(3734), 7, + anon_sym__, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 22, + aux_sym_unquoted_token1, + ACTIONS(3736), 23, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -195423,6 +195832,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -195438,21 +195848,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66118] = 7, + [66465] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4816), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4818), 1, sym_raw_string_begin, - STATE(2238), 1, - sym_comment, - STATE(2245), 1, + STATE(2236), 1, aux_sym__types_body_repeat2, - ACTIONS(4720), 2, + STATE(2240), 1, + sym_comment, + ACTIONS(4814), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(4812), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195480,28 +195890,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66167] = 4, - ACTIONS(103), 1, + [66514] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2239), 1, + STATE(2241), 1, sym_comment, - ACTIONS(3734), 2, + ACTIONS(2148), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_record_token1, + ACTIONS(2146), 25, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 30, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + 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_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [66557] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2242), 1, + sym_comment, + ACTIONS(1517), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1519), 29, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym__, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [66600] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2243), 1, + sym_comment, + ACTIONS(1521), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1523), 29, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [66643] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + sym__entry_separator, + ACTIONS(4818), 1, + sym_raw_string_begin, + STATE(2236), 1, + aux_sym__types_body_repeat2, + STATE(2244), 1, + sym_comment, + ACTIONS(4825), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, + ACTIONS(4812), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -195518,19 +196048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [66210] = 6, + aux_sym__unquoted_in_list_token1, + [66692] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4787), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(4789), 1, sym_raw_string_begin, - STATE(2222), 1, + STATE(2231), 1, aux_sym__types_body_repeat2, - STATE(2240), 1, + STATE(2245), 1, sym_comment, - ACTIONS(4703), 29, + ACTIONS(4783), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195560,24 +196090,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [66257] = 5, - ACTIONS(3), 1, + [66739] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4732), 1, - sym__newline, - STATE(2241), 2, + ACTIONS(4816), 1, + sym__entry_separator, + ACTIONS(4818), 1, + sym_raw_string_begin, + STATE(2236), 1, + aux_sym__types_body_repeat2, + STATE(2246), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym__, + ACTIONS(4820), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3738), 23, - sym_raw_string_begin, + ACTIONS(4812), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195590,26 +196117,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66302] = 4, + aux_sym__unquoted_in_list_token1, + [66788] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2242), 1, + STATE(2247), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1505), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1545), 29, + ACTIONS(1507), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195639,16 +196171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66345] = 4, + [66831] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2243), 1, + STATE(2248), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1525), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1468), 29, + ACTIONS(1527), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195678,56 +196210,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66388] = 4, - ACTIONS(3), 1, + [66874] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2244), 1, + ACTIONS(4816), 1, + sym__entry_separator, + ACTIONS(4818), 1, + sym_raw_string_begin, + STATE(2236), 1, + aux_sym__types_body_repeat2, + STATE(2249), 1, sym_comment, - ACTIONS(2098), 7, - anon_sym_DOLLAR, + ACTIONS(4827), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(2096), 25, - sym_raw_string_begin, + ACTIONS(4812), 27, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [66431] = 5, + aux_sym__unquoted_in_list_token1, + [66923] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2250), 1, + sym_comment, + ACTIONS(1458), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1460), 29, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [66966] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3715), 1, + STATE(2251), 1, + sym_comment, + ACTIONS(3732), 2, sym_raw_string_begin, - ACTIONS(4735), 1, sym__entry_separator, - STATE(2245), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 29, + ACTIONS(3730), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195735,10 +196307,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -195756,80 +196329,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66476] = 23, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [67009] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2246), 1, + STATE(2252), 1, sym_comment, - STATE(2249), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4445), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4577), 2, + ACTIONS(3732), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3730), 29, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66556] = 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_list_token1, + [67051] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4738), 1, + ACTIONS(4829), 1, sym__newline, - STATE(2247), 2, + STATE(2253), 2, sym_comment, aux_sym__types_body_repeat1, - ACTIONS(3736), 6, + ACTIONS(3734), 6, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3738), 23, + ACTIONS(3736), 23, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -195853,15 +196407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66600] = 4, + [67095] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2248), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, + ACTIONS(4816), 1, sym__entry_separator, - ACTIONS(3732), 29, + ACTIONS(4818), 1, + sym_raw_string_begin, + STATE(2236), 1, + aux_sym__types_body_repeat2, + STATE(2254), 1, + sym_comment, + ACTIONS(4812), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195869,7 +196426,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -195891,125 +196447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66642] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_null, - ACTIONS(4750), 1, - anon_sym_DOT_DOT, - ACTIONS(4756), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4759), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4765), 1, - sym_val_date, - ACTIONS(4768), 1, - anon_sym_DQUOTE, - ACTIONS(4771), 1, - anon_sym_SQUOTE, - ACTIONS(4774), 1, - anon_sym_BQUOTE, - ACTIONS(4777), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4780), 1, - sym_raw_string_begin, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4729), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4741), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4753), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4762), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2249), 2, - sym_comment, - aux_sym__collection_body_repeat1, - STATE(4618), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4747), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66720] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2249), 1, - aux_sym__collection_body_repeat1, - STATE(2250), 1, - sym_comment, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4441), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66800] = 4, + [67141] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2251), 1, + STATE(2255), 1, sym_comment, - ACTIONS(2938), 7, + ACTIONS(2857), 7, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -196017,7 +196460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2940), 24, + ACTIONS(2859), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -196042,59 +196485,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66842] = 6, - ACTIONS(103), 1, + [67183] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2245), 1, - aux_sym__types_body_repeat2, - STATE(2252), 1, + STATE(2256), 1, sym_comment, - ACTIONS(4718), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66888] = 4, + STATE(3211), 1, + sym_redirection, + ACTIONS(4834), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4836), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(4832), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [67228] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2253), 1, + STATE(2257), 1, sym_comment, - ACTIONS(2938), 6, + ACTIONS(2857), 6, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 24, + ACTIONS(2859), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -196119,14 +196561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66929] = 6, + [67269] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2254), 1, + STATE(2258), 1, sym_comment, - STATE(3109), 1, + STATE(3210), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4834), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196135,7 +196577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4836), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196144,7 +196586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4783), 13, + ACTIONS(4838), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196158,14 +196600,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [66974] = 6, + [67314] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2255), 1, + STATE(2259), 1, sym_comment, - STATE(3079), 1, + STATE(3291), 1, + sym_redirection, + ACTIONS(4840), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4842), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(4838), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [67358] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2260), 1, + sym_comment, + STATE(3377), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4834), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196174,7 +196654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4836), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196183,7 +196663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4789), 13, + ACTIONS(4844), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196196,15 +196676,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [67019] = 6, + [67402] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2256), 1, + STATE(2261), 1, sym_comment, - STATE(3295), 1, + STATE(3365), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4834), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196213,7 +196692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4836), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196222,7 +196701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4791), 12, + ACTIONS(4846), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196235,7 +196714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [67063] = 25, + [67446] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196246,89 +196725,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4799), 1, + ACTIONS(4854), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2257), 1, + STATE(2262), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2776), 1, + STATE(2787), 1, sym__binary_predicate_parenthesized, - STATE(2777), 1, + STATE(2789), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3024), 1, aux_sym__repeat_newline, - STATE(3134), 1, + STATE(3149), 1, sym_val_closure, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67145] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2258), 1, - sym_comment, - ACTIONS(1556), 2, - anon_sym_EQ, - anon_sym_DOT_DOT2, - ACTIONS(1558), 27, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [67185] = 25, + [67528] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196339,60 +196782,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4799), 1, + ACTIONS(4854), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2257), 1, + STATE(2262), 1, aux_sym__repeat_newline, - STATE(2259), 1, + STATE(2263), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2763), 1, + STATE(2715), 1, sym__binary_predicate_parenthesized, - STATE(2770), 1, + STATE(2718), 1, sym_where_predicate, - STATE(3096), 1, + STATE(3148), 1, sym_val_closure, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67267] = 6, + [67610] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2260), 1, + STATE(2264), 1, sym_comment, - STATE(3230), 1, + STATE(3287), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4840), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196401,7 +196844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4842), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196410,7 +196853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4803), 12, + ACTIONS(4832), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196422,34 +196866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [67311] = 6, + [67654] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2261), 1, + STATE(2265), 1, sym_comment, - STATE(3334), 1, - sym_redirection, - ACTIONS(4805), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4807), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(4789), 12, - ts_builtin_sym_end, + ACTIONS(1572), 2, + anon_sym_EQ, + anon_sym_DOT_DOT2, + ACTIONS(1574), 27, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196461,33 +196888,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [67355] = 6, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [67694] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2262), 1, + ACTIONS(4858), 1, + anon_sym_QMARK2, + ACTIONS(4860), 1, + anon_sym_BANG, + STATE(445), 1, + sym__path_suffix, + STATE(2266), 1, sym_comment, - STATE(3229), 1, - sym_redirection, - ACTIONS(4805), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4807), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(4783), 12, - ts_builtin_sym_end, + ACTIONS(1432), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1434), 23, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196499,21 +196930,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [67399] = 7, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [67739] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4809), 1, - anon_sym_QMARK2, - ACTIONS(4811), 1, - anon_sym_BANG, - STATE(437), 1, - sym__path_suffix, - STATE(2263), 1, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + aux_sym_expr_unary_token1, + ACTIONS(4848), 1, + sym__newline, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(4852), 1, + anon_sym_DASH2, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, + sym__expr_unary_minus, + STATE(2267), 1, + sym_comment, + STATE(2278), 1, + aux_sym__repeat_newline, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2632), 1, + sym__where_predicate_lhs, + STATE(2702), 1, + sym__binary_predicate_parenthesized, + STATE(2703), 1, + sym_where_predicate, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + STATE(2213), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2819), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67815] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2686), 1, + aux_sym_expr_unary_token1, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4862), 1, + anon_sym_LPAREN, + ACTIONS(4864), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, + anon_sym_DASH2, + ACTIONS(4868), 1, + anon_sym_LBRACE, + STATE(1274), 1, + sym__expr_unary_minus, + STATE(2268), 1, sym_comment, - ACTIONS(1446), 2, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2622), 1, + sym__where_predicate_lhs, + STATE(2941), 1, + sym__binary_predicate, + STATE(2942), 1, + sym_where_predicate, + STATE(3327), 1, + sym_val_closure, + ACTIONS(2399), 2, + anon_sym_true, + anon_sym_false, + STATE(2229), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2874), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67891] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1444), 1, anon_sym_DOT_DOT2, + ACTIONS(4870), 1, anon_sym_DOT2, - ACTIONS(1448), 23, + STATE(446), 1, + sym_path, + STATE(2265), 1, + sym_cell_path, + STATE(2269), 1, + sym_comment, + STATE(2294), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1446), 22, anon_sym_if, anon_sym_in, sym__newline, @@ -196536,8 +197084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [67444] = 23, + [67937] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196548,49 +197095,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4854), 1, + anon_sym_LBRACE, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2264), 1, + STATE(2270), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2759), 1, - sym__binary_predicate_parenthesized, - STATE(2765), 1, + STATE(2696), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + STATE(2818), 1, + sym__binary_predicate, + STATE(3193), 1, + sym_val_closure, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67520] = 23, + [68013] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196601,49 +197148,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2264), 1, - aux_sym__repeat_newline, - STATE(2265), 1, + STATE(2271), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2749), 1, + STATE(2813), 1, sym__binary_predicate_parenthesized, - STATE(2750), 1, + STATE(2814), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67596] = 23, + [68089] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196654,49 +197201,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2266), 1, + STATE(2272), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2718), 1, + STATE(2700), 1, sym__binary_predicate_parenthesized, - STATE(2719), 1, + STATE(2701), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3024), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67672] = 23, + [68165] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196707,49 +197254,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2267), 1, + STATE(2273), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2672), 1, + STATE(2723), 1, sym__binary_predicate_parenthesized, - STATE(2673), 1, + STATE(2739), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3024), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67748] = 23, + [68241] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196760,49 +197307,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4848), 1, + sym__newline, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4799), 1, - anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2268), 1, + STATE(2274), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2743), 1, - sym__binary_predicate, - STATE(2744), 1, + STATE(2815), 1, + sym__binary_predicate_parenthesized, + STATE(2816), 1, sym_where_predicate, - STATE(3161), 1, - sym_val_closure, - ACTIONS(1937), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67824] = 23, + [68317] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196813,49 +197360,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2269), 1, + STATE(2275), 1, sym_comment, - STATE(2279), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2727), 1, + STATE(2825), 1, sym__binary_predicate_parenthesized, - STATE(2729), 1, + STATE(2826), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67900] = 23, + [68393] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196866,49 +197413,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2270), 1, + STATE(2276), 1, sym_comment, - STATE(2280), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2738), 1, + STATE(2831), 1, sym__binary_predicate_parenthesized, - STATE(2739), 1, + STATE(2832), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67976] = 23, + [68469] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196919,49 +197466,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2271), 1, + STATE(2277), 1, sym_comment, - STATE(2281), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2746), 1, + STATE(2704), 1, sym__binary_predicate_parenthesized, - STATE(2753), 1, + STATE(2708), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68052] = 23, + [68545] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196972,87 +197519,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2272), 1, + STATE(2278), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2754), 1, + STATE(2719), 1, sym__binary_predicate_parenthesized, - STATE(2755), 1, + STATE(2720), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3024), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, - sym__str_back_ticks, - [68128] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1432), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2258), 1, - sym_cell_path, - STATE(2273), 1, - sym_comment, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 22, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [68174] = 23, + sym__str_back_ticks, + [68621] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197063,49 +197572,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2274), 1, + STATE(2271), 1, + aux_sym__repeat_newline, + STATE(2279), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2771), 1, + STATE(2837), 1, sym__binary_predicate_parenthesized, - STATE(2772), 1, + STATE(2838), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68250] = 23, + [68697] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197116,49 +197625,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2275), 1, - sym_comment, - STATE(2289), 1, + STATE(2272), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2280), 1, + sym_comment, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2775), 1, + STATE(2841), 1, sym__binary_predicate_parenthesized, - STATE(2781), 1, + STATE(2842), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68326] = 23, + [68773] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197169,49 +197678,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2267), 1, - aux_sym__repeat_newline, - STATE(2276), 1, + STATE(2281), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2788), 1, + STATE(2740), 1, sym__binary_predicate_parenthesized, - STATE(2804), 1, + STATE(2743), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68402] = 23, + [68849] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197222,49 +197731,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2277), 1, - sym_comment, - STATE(2278), 1, + STATE(2274), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2282), 1, + sym_comment, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2646), 1, + STATE(2753), 1, sym__binary_predicate_parenthesized, - STATE(2680), 1, + STATE(2754), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68478] = 23, + [68925] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197275,49 +197784,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2278), 1, + STATE(2275), 1, + aux_sym__repeat_newline, + STATE(2283), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2676), 1, + STATE(2755), 1, sym__binary_predicate_parenthesized, - STATE(2677), 1, + STATE(2756), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68554] = 23, + [69001] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197328,49 +197837,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2279), 1, + STATE(2276), 1, + aux_sym__repeat_newline, + STATE(2284), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2649), 1, + STATE(2757), 1, sym__binary_predicate_parenthesized, - STATE(2650), 1, + STATE(2758), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68630] = 23, + [69077] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197381,49 +197890,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2280), 1, + STATE(2285), 1, sym_comment, - STATE(2370), 1, + STATE(2289), 1, + aux_sym__repeat_newline, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2654), 1, + STATE(2805), 1, sym__binary_predicate_parenthesized, - STATE(2655), 1, + STATE(2810), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68706] = 23, + [69153] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197434,49 +197943,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2281), 1, + STATE(2286), 1, sym_comment, - STATE(2370), 1, + STATE(2290), 1, + aux_sym__repeat_newline, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2658), 1, + STATE(2812), 1, sym__binary_predicate_parenthesized, - STATE(2659), 1, + STATE(2820), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68782] = 23, + [69229] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197487,90 +197996,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4848), 1, + sym__newline, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4821), 1, - anon_sym_LBRACE, - STATE(1294), 1, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2282), 1, + STATE(2287), 1, sym_comment, - STATE(2370), 1, + STATE(2291), 1, + aux_sym__repeat_newline, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2632), 1, sym__where_predicate_lhs, + STATE(2822), 1, + sym__binary_predicate_parenthesized, STATE(2823), 1, - sym__binary_predicate, - STATE(2827), 1, sym_where_predicate, - STATE(3287), 1, - sym_val_closure, - ACTIONS(2174), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68858] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(4823), 1, - anon_sym_DOT, - STATE(2283), 1, - sym_comment, - STATE(2409), 1, - sym__immediate_decimal, - ACTIONS(4825), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4827), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2503), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [68910] = 23, + [69305] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197581,49 +198049,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2284), 1, - sym_comment, - STATE(2288), 1, + STATE(2273), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2288), 1, + sym_comment, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2730), 1, + STATE(2844), 1, sym__binary_predicate_parenthesized, - STATE(2731), 1, + STATE(2845), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68986] = 23, + [69381] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197634,49 +198102,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2285), 1, + STATE(2289), 1, sym_comment, - STATE(2294), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2732), 1, + STATE(2846), 1, sym__binary_predicate_parenthesized, - STATE(2740), 1, + STATE(2853), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69062] = 23, + [69457] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197687,49 +198155,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2266), 1, - aux_sym__repeat_newline, - STATE(2286), 1, + STATE(2290), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2741), 1, + STATE(2856), 1, sym__binary_predicate_parenthesized, - STATE(2742), 1, + STATE(2857), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69138] = 23, + [69533] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197740,49 +198208,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2272), 1, - aux_sym__repeat_newline, - STATE(2287), 1, + STATE(2291), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2747), 1, + STATE(2860), 1, sym__binary_predicate_parenthesized, - STATE(2748), 1, + STATE(2861), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69214] = 23, + [69609] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197793,49 +198261,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2288), 1, + STATE(2277), 1, + aux_sym__repeat_newline, + STATE(2292), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2697), 1, + STATE(2866), 1, sym__binary_predicate_parenthesized, - STATE(2698), 1, + STATE(2867), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69290] = 23, + [69685] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197846,62 +198314,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2289), 1, + STATE(2281), 1, + aux_sym__repeat_newline, + STATE(2293), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2668), 1, + STATE(2705), 1, sym__binary_predicate_parenthesized, - STATE(2669), 1, + STATE(2706), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69366] = 7, + [69761] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1458), 1, + ACTIONS(1492), 1, anon_sym_DOT_DOT2, - ACTIONS(4813), 1, + ACTIONS(4870), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(446), 1, sym_path, - STATE(2290), 1, + STATE(2294), 1, sym_comment, - STATE(2291), 1, + STATE(2295), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 23, + ACTIONS(1494), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -197925,19 +198393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69410] = 6, + [69805] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1524), 1, + ACTIONS(1496), 1, anon_sym_DOT_DOT2, - ACTIONS(4829), 1, + ACTIONS(4872), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(446), 1, sym_path, - STATE(2291), 2, + STATE(2295), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 23, + ACTIONS(1498), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -197961,22 +198429,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69452] = 8, + [69847] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(1679), 1, anon_sym_DOT_DOT2, - ACTIONS(4813), 1, + ACTIONS(4870), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(446), 1, sym_path, - STATE(465), 1, + STATE(457), 1, sym_cell_path, - STATE(2290), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2292), 1, + STATE(2296), 1, sym_comment, - ACTIONS(1679), 22, + ACTIONS(1677), 22, anon_sym_if, sym__newline, anon_sym_SEMI, @@ -197999,23 +198467,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69498] = 8, + [69893] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, + ACTIONS(1649), 1, anon_sym_DOT_DOT2, - ACTIONS(4813), 1, + ACTIONS(4870), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(446), 1, sym_path, - STATE(466), 1, + STATE(455), 1, sym_cell_path, - STATE(2290), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2293), 1, + STATE(2297), 1, + sym_comment, + ACTIONS(1647), 22, + anon_sym_if, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [69939] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + ACTIONS(4875), 1, + anon_sym_DOT, + STATE(2298), 1, + sym_comment, + STATE(2471), 1, + sym__immediate_decimal, + ACTIONS(4877), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4879), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2553), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [69991] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + ACTIONS(4881), 1, + anon_sym_DOLLAR, + ACTIONS(4883), 1, + anon_sym_DOT, + STATE(2299), 1, + sym_comment, + STATE(2483), 1, + sym__immediate_decimal, + ACTIONS(4885), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4887), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2630), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [70042] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4889), 1, + anon_sym_DOT2, + STATE(2300), 1, + sym_comment, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2397), 1, + sym_path, + STATE(2426), 1, + sym_cell_path, + ACTIONS(1846), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1844), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [70087] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4891), 1, + anon_sym_QMARK2, + ACTIONS(4893), 1, + anon_sym_BANG, + STATE(2301), 1, + sym_comment, + STATE(2368), 1, + sym__path_suffix, + ACTIONS(1432), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1434), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [70130] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(2302), 1, + sym_comment, + STATE(2614), 1, + sym__immediate_decimal, + ACTIONS(4895), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4897), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(829), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [70179] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4889), 1, + anon_sym_DOT2, + STATE(2303), 1, + sym_comment, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2397), 1, + sym_path, + STATE(2434), 1, + sym_cell_path, + ACTIONS(4901), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4899), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [70224] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4889), 1, + anon_sym_DOT2, + STATE(2304), 1, + sym_comment, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2397), 1, + sym_path, + STATE(2424), 1, + sym_cell_path, + ACTIONS(1840), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1838), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [70269] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1627), 1, + anon_sym_DOT, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(2305), 1, + sym_comment, + STATE(2552), 1, + sym__immediate_decimal, + ACTIONS(1594), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1596), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2551), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1623), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [70318] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4889), 1, + anon_sym_DOT2, + STATE(2306), 1, + sym_comment, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2397), 1, + sym_path, + STATE(2415), 1, + sym_cell_path, + ACTIONS(1874), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1872), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [70363] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1697), 1, + anon_sym_BANG, + STATE(2307), 1, sym_comment, - ACTIONS(1641), 22, + ACTIONS(1450), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1452), 23, anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198037,7 +198882,411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69544] = 23, + [70402] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4889), 1, + anon_sym_DOT2, + STATE(2308), 1, + sym_comment, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2397), 1, + sym_path, + STATE(2435), 1, + sym_cell_path, + ACTIONS(1444), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1446), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [70447] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(2309), 1, + sym_comment, + STATE(2585), 1, + sym__immediate_decimal, + ACTIONS(4895), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4897), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(871), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [70496] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + aux_sym_expr_unary_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(4852), 1, + anon_sym_DASH2, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, + sym__expr_unary_minus, + STATE(2310), 1, + sym_comment, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2632), 1, + sym__where_predicate_lhs, + STATE(2781), 1, + sym__binary_predicate, + STATE(2793), 1, + sym_where_predicate, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + STATE(2213), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2819), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70566] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4903), 1, + anon_sym_DOT2, + STATE(2397), 1, + sym_path, + STATE(2311), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1498), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [70606] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2686), 1, + aux_sym_expr_unary_token1, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4862), 1, + anon_sym_LPAREN, + ACTIONS(4864), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, + anon_sym_DASH2, + STATE(1274), 1, + sym__expr_unary_minus, + STATE(2312), 1, + sym_comment, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2622), 1, + sym__where_predicate_lhs, + STATE(2899), 1, + sym__binary_predicate, + STATE(2904), 1, + sym_where_predicate, + ACTIONS(2399), 2, + anon_sym_true, + anon_sym_false, + STATE(2229), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2874), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70676] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2686), 1, + aux_sym_expr_unary_token1, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4862), 1, + anon_sym_LPAREN, + ACTIONS(4864), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, + anon_sym_DASH2, + STATE(1274), 1, + sym__expr_unary_minus, + STATE(2313), 1, + sym_comment, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2622), 1, + sym__where_predicate_lhs, + STATE(2879), 1, + sym_where_predicate, + STATE(2963), 1, + sym__binary_predicate, + ACTIONS(2399), 2, + anon_sym_true, + anon_sym_false, + STATE(2229), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2874), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70746] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + aux_sym_expr_unary_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(4852), 1, + anon_sym_DASH2, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, + sym__expr_unary_minus, + STATE(2314), 1, + sym_comment, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2632), 1, + sym__where_predicate_lhs, + STATE(2794), 1, + sym__binary_predicate, + STATE(2795), 1, + sym_where_predicate, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + STATE(2213), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2819), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70816] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + aux_sym_expr_unary_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(4852), 1, + anon_sym_DASH2, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, + sym__expr_unary_minus, + STATE(2315), 1, + sym_comment, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2632), 1, + sym__where_predicate_lhs, + STATE(2796), 1, + sym__binary_predicate, + STATE(2797), 1, + sym_where_predicate, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + STATE(2213), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2819), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70886] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + aux_sym_expr_unary_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(4852), 1, + anon_sym_DASH2, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, + sym__expr_unary_minus, + STATE(2316), 1, + sym_comment, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2632), 1, + sym__where_predicate_lhs, + STATE(2798), 1, + sym__binary_predicate, + STATE(2799), 1, + sym_where_predicate, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + STATE(2213), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2819), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70956] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198048,49 +199297,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2294), 1, + STATE(2317), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2703), 1, - sym__binary_predicate_parenthesized, - STATE(2712), 1, + STATE(2800), 1, + sym__binary_predicate, + STATE(2801), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69620] = 23, + [71026] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198101,105 +199346,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2274), 1, - aux_sym__repeat_newline, - STATE(2295), 1, + STATE(2318), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2751), 1, - sym__binary_predicate_parenthesized, - STATE(2752), 1, + STATE(2802), 1, + sym__binary_predicate, + STATE(2803), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69696] = 5, + [71096] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1700), 1, + STATE(2319), 1, + sym_comment, + ACTIONS(1505), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1507), 21, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, anon_sym_BANG, - STATE(2296), 1, + [71132] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2320), 1, sym_comment, - ACTIONS(1438), 2, - anon_sym_DOT_DOT2, + ACTIONS(1458), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_DOT2, - ACTIONS(1440), 23, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69735] = 10, + aux_sym__unquoted_in_record_token1, + ACTIONS(1460), 21, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [71168] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, + STATE(2321), 1, + sym_comment, + ACTIONS(1509), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1511), 21, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [71204] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4906), 1, anon_sym_DOT, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2297), 1, + ACTIONS(4908), 1, + aux_sym__immediate_decimal_token5, + STATE(2322), 1, sym_comment, - STATE(2502), 1, - sym__immediate_decimal, - ACTIONS(1592), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2501), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 16, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198216,108 +199509,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69784] = 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71244] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - ACTIONS(4834), 1, - anon_sym_DOT, - STATE(2298), 1, + STATE(2323), 1, sym_comment, - STATE(2436), 1, - sym__immediate_decimal, - ACTIONS(4836), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4838), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2580), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [69835] = 10, + ACTIONS(1517), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1519), 21, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [71280] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2299), 1, + STATE(2324), 1, sym_comment, - STATE(2533), 1, - sym__immediate_decimal, - ACTIONS(4840), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [69884] = 10, + ACTIONS(1521), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1523), 21, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [71316] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(2300), 1, - sym_comment, - STATE(2535), 1, + STATE(826), 1, sym__immediate_decimal, - ACTIONS(4840), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, + STATE(2325), 1, + sym_comment, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + ACTIONS(1631), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(825), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1631), 16, + ACTIONS(1623), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198334,29 +199615,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69933] = 10, + [71362] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4881), 1, anon_sym_DOLLAR, - STATE(2301), 1, + STATE(2326), 1, sym_comment, - STATE(2603), 1, + STATE(2677), 1, sym__immediate_decimal, - ACTIONS(4844), 2, + ACTIONS(4910), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, + ACTIONS(4912), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1311), 2, + STATE(1291), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 15, + ACTIONS(1584), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -198372,128 +199653,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69981] = 21, + [71410] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2302), 1, + STATE(2327), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2854), 1, - sym__binary_predicate, - STATE(2855), 1, - sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(1525), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1527), 21, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70051] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2303), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2861), 1, - sym__binary_predicate, - STATE(2862), 1, - sym_where_predicate, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70121] = 10, + anon_sym_QMARK2, + anon_sym_BANG, + [71446] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(2304), 1, - sym_comment, - STATE(2618), 1, + STATE(848), 1, sym__immediate_decimal, - ACTIONS(4844), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, + STATE(2328), 1, + sym_comment, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1343), 2, + ACTIONS(1631), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(847), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1631), 15, - ts_builtin_sym_end, + ACTIONS(1653), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198505,79 +199717,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70169] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2305), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2798), 1, - sym__binary_predicate, - STATE(2799), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70239] = 9, + [71492] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(722), 1, + STATE(864), 1, sym__immediate_decimal, - STATE(2306), 1, + STATE(2329), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1631), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(721), 2, + STATE(849), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 16, + ACTIONS(1667), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198594,27 +199759,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70285] = 9, + [71538] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(737), 1, + STATE(869), 1, sym__immediate_decimal, - STATE(2307), 1, + STATE(2330), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1631), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(736), 2, + STATE(867), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1667), 16, + ACTIONS(1673), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198631,27 +199796,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70331] = 9, + [71584] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(4881), 1, anon_sym_DOLLAR, - STATE(739), 1, - sym__immediate_decimal, - STATE(2308), 1, + STATE(2331), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + STATE(2670), 1, + sym__immediate_decimal, + ACTIONS(4910), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(738), 2, + ACTIONS(4912), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1343), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 16, + ACTIONS(1633), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198663,32 +199831,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70377] = 9, + [71632] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(1699), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_DOLLAR, - STATE(741), 1, - sym__immediate_decimal, - STATE(2309), 1, + STATE(2332), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + STATE(2629), 1, + sym__immediate_decimal, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(740), 2, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2628), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 16, + ACTIONS(1623), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198700,186 +199869,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70423] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2310), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2800), 1, - sym__binary_predicate, - STATE(2801), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70493] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2311), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2802), 1, - sym__binary_predicate, - STATE(2803), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70563] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2312), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2805), 1, - sym__binary_predicate, - STATE(2808), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70633] = 13, + [71680] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1584), 1, sym__space, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(3212), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(4914), 1, anon_sym_DOT, - ACTIONS(4850), 1, + ACTIONS(4916), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, + ACTIONS(4918), 1, aux_sym__immediate_decimal_token2, - STATE(2313), 1, + STATE(2333), 1, sym_comment, - STATE(2509), 1, + STATE(2563), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(4920), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2608), 2, + STATE(2652), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 13, + ACTIONS(1588), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198893,30 +199913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [70687] = 10, + [71734] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(1687), 1, - anon_sym_DOT, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(2314), 1, - sym_comment, - STATE(2579), 1, - sym__immediate_decimal, - ACTIONS(1655), 2, + ACTIONS(4922), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2578), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 15, - ts_builtin_sym_end, + ACTIONS(4924), 1, + aux_sym__immediate_decimal_token5, + STATE(2334), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198928,10 +199937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70735] = 21, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71774] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198942,94 +199958,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2686), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2315), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2809), 1, - sym__binary_predicate, - STATE(2810), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70805] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4862), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4864), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(1274), 1, sym__expr_unary_minus, - STATE(2316), 1, + STATE(2335), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2622), 1, sym__where_predicate_lhs, - STATE(2812), 1, - sym__binary_predicate, - STATE(2813), 1, + STATE(2888), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(2921), 1, + sym__binary_predicate, + ACTIONS(2399), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2229), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2874), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70875] = 21, + [71844] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199040,94 +200007,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(2686), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4862), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(4864), 1, anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4866), 1, anon_sym_DASH2, - STATE(1294), 1, + STATE(1274), 1, sym__expr_unary_minus, - STATE(2317), 1, + STATE(2336), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2622), 1, sym__where_predicate_lhs, - STATE(2864), 1, + STATE(2880), 1, sym__binary_predicate, - STATE(2865), 1, + STATE(2956), 1, sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(2399), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2229), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2874), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70945] = 21, + [71914] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2318), 1, + ACTIONS(4889), 1, + anon_sym_DOT2, + STATE(2311), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2337), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2890), 1, - sym_where_predicate, - STATE(2915), 1, - sym__binary_predicate, - ACTIONS(2174), 2, + STATE(2397), 1, + sym_path, + ACTIONS(1492), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1494), 19, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71015] = 21, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [71956] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199138,45 +200091,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(2686), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4862), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(4864), 1, anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4866), 1, anon_sym_DASH2, - STATE(1294), 1, + STATE(1274), 1, sym__expr_unary_minus, - STATE(2319), 1, + STATE(2338), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2622), 1, sym__where_predicate_lhs, - STATE(2856), 1, + STATE(2929), 1, sym__binary_predicate, - STATE(2858), 1, + STATE(2959), 1, sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(2399), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2229), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2874), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71085] = 21, + [72026] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199187,134 +200140,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(2686), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4862), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(4864), 1, anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4866), 1, anon_sym_DASH2, - STATE(1294), 1, + STATE(1274), 1, sym__expr_unary_minus, - STATE(2320), 1, + STATE(2339), 1, sym_comment, - STATE(2370), 1, + STATE(2419), 1, sym_val_string, - STATE(2389), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2622), 1, sym__where_predicate_lhs, - STATE(2859), 1, - sym__binary_predicate, - STATE(2860), 1, + STATE(2873), 1, sym_where_predicate, - ACTIONS(2174), 2, + STATE(2905), 1, + sym__binary_predicate, + ACTIONS(2399), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2229), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2874), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71155] = 6, - ACTIONS(3), 1, + [72096] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4856), 1, - anon_sym_DOT, - ACTIONS(4858), 1, - aux_sym__immediate_decimal_token5, - STATE(2321), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, + ACTIONS(1584), 1, + sym__space, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(741), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(3205), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71195] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4860), 1, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(4926), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4862), 1, - aux_sym__immediate_decimal_token5, - STATE(2322), 1, + ACTIONS(4928), 1, + aux_sym__immediate_decimal_token2, + STATE(2340), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71235] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(1342), 1, + STATE(2765), 1, sym__immediate_decimal, - STATE(2323), 1, - sym_comment, - ACTIONS(1657), 2, + ACTIONS(4930), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1341), 2, + STATE(3038), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 15, - ts_builtin_sym_end, + ACTIONS(1588), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199326,20 +200215,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [71280] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [72147] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4934), 1, + anon_sym_COLON, + STATE(2341), 1, + sym_comment, + STATE(2437), 1, + sym__collection_annotation, + ACTIONS(4936), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4932), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72186] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4934), 1, + anon_sym_COLON, + STATE(2342), 1, + sym_comment, + STATE(2438), 1, + sym__collection_annotation, + ACTIONS(4940), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4938), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72225] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4942), 1, + anon_sym_BANG, + STATE(2343), 1, + sym_comment, + ACTIONS(1450), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1452), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72262] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(4946), 1, + anon_sym_LT, + STATE(2344), 1, + sym_comment, + ACTIONS(4948), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4944), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72299] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4950), 1, aux_sym__immediate_decimal_token5, - STATE(2324), 1, + STATE(2345), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(757), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199361,32 +200379,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71317] = 12, + [72336] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1623), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(4850), 1, + ACTIONS(4916), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, + ACTIONS(4918), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4866), 1, + ACTIONS(4952), 1, anon_sym_DOT, - STATE(2325), 1, + STATE(2346), 1, sym_comment, - STATE(2607), 1, + STATE(2651), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(4920), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2606), 2, + STATE(2650), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 13, + ACTIONS(1625), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199400,35 +200418,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [71368] = 13, + [72387] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4868), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4870), 1, + ACTIONS(4956), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, + ACTIONS(4958), 1, aux_sym__immediate_decimal_token2, - STATE(2326), 1, + STATE(2347), 1, sym_comment, - STATE(2560), 1, + STATE(2595), 1, sym__immediate_decimal, - ACTIONS(1596), 2, + ACTIONS(1584), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(4960), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2706), 2, + STATE(2697), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 11, + ACTIONS(1588), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199440,20 +200458,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [71421] = 6, + [72440] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4876), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4878), 1, - aux_sym__immediate_decimal_token5, - STATE(2327), 1, + ACTIONS(4964), 1, + anon_sym_AT2, + STATE(2348), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, + STATE(2432), 1, + sym_param_completer, + ACTIONS(4966), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4962), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72479] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(1724), 1, sym__unquoted_pattern, - ACTIONS(749), 20, - ts_builtin_sym_end, + ACTIONS(4968), 1, + anon_sym_DOT_DOT2, + ACTIONS(4972), 1, + sym_filesize_unit, + ACTIONS(4974), 1, + sym_duration_unit, + STATE(2349), 1, + sym_comment, + STATE(4718), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4970), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(908), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199465,22 +200523,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71460] = 6, + [72526] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4976), 1, + anon_sym_LT, + STATE(2350), 1, + sym_comment, + ACTIONS(4948), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4944), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72563] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4880), 1, + ACTIONS(4978), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4980), 1, aux_sym__immediate_decimal_token5, - STATE(2328), 1, + STATE(2351), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -199506,32 +200593,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71499] = 12, - ACTIONS(103), 1, + [72602] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4884), 1, + ACTIONS(4982), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, - aux_sym__immediate_decimal_token2, - STATE(2329), 1, + ACTIONS(4984), 1, + aux_sym__immediate_decimal_token5, + STATE(2352), 1, sym_comment, - STATE(2713), 1, - sym__immediate_decimal, - ACTIONS(4888), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3013), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 13, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199543,34 +200618,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [71550] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [72641] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1633), 1, sym__space, - ACTIONS(1615), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(3212), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(4884), 1, + ACTIONS(4926), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, + ACTIONS(4928), 1, aux_sym__immediate_decimal_token2, - STATE(2330), 1, + STATE(2353), 1, sym_comment, - STATE(2708), 1, + STATE(2770), 1, sym__immediate_decimal, - ACTIONS(4888), 2, + ACTIONS(4930), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2982), 2, + STATE(3096), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 13, + ACTIONS(1635), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199584,27 +200665,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [71601] = 10, + [72692] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(4890), 1, - anon_sym_DOT_DOT2, - ACTIONS(4894), 1, - sym_filesize_unit, - ACTIONS(4896), 1, - sym_duration_unit, - STATE(2331), 1, + ACTIONS(4881), 1, + anon_sym_DOLLAR, + STATE(1288), 1, + sym__immediate_decimal, + STATE(2354), 1, sym_comment, - STATE(4739), 1, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1712), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1287), 2, sym__expr_parenthesized_immediate, - ACTIONS(4892), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 16, + sym_val_variable, + ACTIONS(1623), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199616,32 +200698,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71648] = 9, + [72737] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4881), 1, anon_sym_DOLLAR, STATE(1337), 1, sym__immediate_decimal, - STATE(2332), 1, + STATE(2355), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1712), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, STATE(1336), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1667), 15, + ACTIONS(1653), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199657,27 +200737,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71693] = 9, + [72782] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4881), 1, anon_sym_DOLLAR, - STATE(1271), 1, + STATE(1339), 1, sym__immediate_decimal, - STATE(2333), 1, + STATE(2356), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1712), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1269), 2, + STATE(1338), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 15, + ACTIONS(1667), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199693,27 +200773,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71738] = 9, + [72827] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4881), 1, anon_sym_DOLLAR, - STATE(1340), 1, + STATE(1341), 1, sym__immediate_decimal, - STATE(2334), 1, + STATE(2357), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1712), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1339), 2, + STATE(1340), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 15, + ACTIONS(1673), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199729,12 +200809,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71783] = 5, + [72872] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4858), 1, + ACTIONS(4942), 1, + anon_sym_QMARK2, + STATE(2358), 1, + sym_comment, + ACTIONS(1450), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1452), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72909] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4908), 1, aux_sym__immediate_decimal_token5, - STATE(2335), 1, + STATE(2359), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -199761,49 +200873,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71820] = 4, - ACTIONS(3), 1, + [72946] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2336), 1, + ACTIONS(4986), 1, + anon_sym_DOT, + ACTIONS(4988), 1, + aux_sym__immediate_decimal_token5, + STATE(2360), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(741), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71854] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4898), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4900), 1, - aux_sym__immediate_decimal_token5, - STATE(2337), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 19, + ACTIONS(739), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199817,34 +200903,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [71892] = 10, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [72984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + STATE(2361), 1, + sym_comment, + ACTIONS(1517), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1519), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73018] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__space, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - ACTIONS(4902), 1, - anon_sym_DOT_DOT2, - ACTIONS(4906), 1, - sym_filesize_unit, - ACTIONS(4908), 1, - sym_duration_unit, - STATE(2338), 1, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(4990), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4992), 1, + aux_sym__immediate_decimal_token2, + STATE(2362), 1, sym_comment, - STATE(4775), 1, + STATE(3036), 1, + sym__immediate_decimal, + ACTIONS(4920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3035), 2, sym__expr_parenthesized_immediate, - ACTIONS(4904), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 15, - ts_builtin_sym_end, + sym_val_variable, + ACTIONS(1625), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199856,18 +200970,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [71938] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [73066] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2339), 1, + STATE(2363), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 21, + ACTIONS(1525), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1527), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73100] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2364), 1, + sym_comment, + ACTIONS(1521), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1523), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73134] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + sym__space, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(4990), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4992), 1, + aux_sym__immediate_decimal_token2, + STATE(2365), 1, + sym_comment, + STATE(3089), 1, + sym__immediate_decimal, + ACTIONS(4920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3087), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1655), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199881,41 +201069,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71972] = 12, + [73182] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1667), 1, + sym__space, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(4870), 1, + ACTIONS(4990), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, + ACTIONS(4992), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4910), 1, - anon_sym_DOT, - STATE(2340), 1, + STATE(2366), 1, sym_comment, - STATE(2705), 1, + STATE(3091), 1, sym__immediate_decimal, - ACTIONS(1582), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4874), 2, + ACTIONS(4920), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2704), 2, + STATE(3090), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 11, + ACTIONS(1669), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199927,30 +201104,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [72022] = 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + [73230] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3169), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(4994), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, + ACTIONS(4996), 1, aux_sym__immediate_decimal_token2, - STATE(2341), 1, + STATE(2367), 1, sym_comment, - STATE(2981), 1, + STATE(2917), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(1584), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4998), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2979), 2, + STATE(3223), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 13, + ACTIONS(1588), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199962,17 +201144,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [72070] = 4, + [73280] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2342), 1, + STATE(2368), 1, + sym_comment, + ACTIONS(1529), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1531), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73314] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5000), 1, + anon_sym_DOT, + ACTIONS(5002), 1, + aux_sym__immediate_decimal_token5, + STATE(2369), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1752), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(1750), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199992,32 +201206,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72104] = 11, + [73352] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1667), 1, + ACTIONS(1673), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(4990), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, + ACTIONS(4992), 1, aux_sym__immediate_decimal_token2, - STATE(2343), 1, + STATE(2370), 1, sym_comment, - STATE(3008), 1, + STATE(3095), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(4920), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3006), 2, + STATE(3093), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 13, + ACTIONS(1675), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200031,30 +201243,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72152] = 11, - ACTIONS(103), 1, + [73400] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, - aux_sym__immediate_decimal_token2, - STATE(2344), 1, + ACTIONS(1810), 1, + sym__unquoted_pattern, + ACTIONS(5004), 1, + anon_sym_DOT_DOT2, + ACTIONS(5008), 1, + sym_filesize_unit, + ACTIONS(5010), 1, + sym_duration_unit, + STATE(2371), 1, sym_comment, - STATE(3010), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3074), 2, + STATE(4754), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 13, + ACTIONS(5006), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(908), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [73446] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2372), 1, + sym_comment, + ACTIONS(1505), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1507), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73480] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2373), 1, + sym_comment, + ACTIONS(5014), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5012), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73514] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2374), 1, + sym_comment, + ACTIONS(5018), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5016), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73548] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2375), 1, + sym_comment, + ACTIONS(5022), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5020), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73582] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2376), 1, + sym_comment, + ACTIONS(5026), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5024), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73616] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2377), 1, + sym_comment, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [73650] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2378), 1, + sym_comment, + ACTIONS(1458), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1460), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73684] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2379), 1, + sym_comment, + ACTIONS(1509), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1511), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73718] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2380), 1, + sym_comment, + ACTIONS(789), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(791), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200068,30 +201541,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72200] = 11, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [73752] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1675), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(3169), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(4994), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, + ACTIONS(4996), 1, aux_sym__immediate_decimal_token2, - STATE(2345), 1, + STATE(2381), 1, sym_comment, - STATE(3012), 1, + STATE(2876), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(1633), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4998), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3011), 2, + STATE(3169), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 13, + ACTIONS(1635), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200103,35 +201587,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [72248] = 12, + [73802] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4916), 1, + ACTIONS(4956), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, + ACTIONS(4958), 1, aux_sym__immediate_decimal_token2, - STATE(2346), 1, + ACTIONS(5028), 1, + anon_sym_DOT, + STATE(2382), 1, sym_comment, - STATE(2875), 1, + STATE(2865), 1, sym__immediate_decimal, - ACTIONS(1596), 2, + ACTIONS(1623), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4920), 2, + ACTIONS(4960), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3199), 2, + STATE(2863), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 11, + ACTIONS(1625), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200143,17 +201625,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [72298] = 5, + [73852] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4922), 1, + STATE(2383), 1, + sym_comment, + ACTIONS(5032), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5030), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73886] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2384), 1, + sym_comment, + ACTIONS(5036), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5034), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73920] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2385), 1, + sym_comment, + ACTIONS(5040), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5038), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73954] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2386), 1, + sym_comment, + ACTIONS(5044), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5042), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73988] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5046), 1, aux_sym__immediate_decimal_token5, - STATE(2347), 1, + STATE(2387), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 20, + ACTIONS(757), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200174,19 +201776,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72334] = 6, + [74024] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4924), 1, - anon_sym_DOT, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token5, - STATE(2348), 1, + STATE(2388), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(4948), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4944), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74058] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2389), 1, + sym_comment, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 19, + ACTIONS(749), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200206,21 +201834,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [72372] = 7, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [74092] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(724), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2349), 1, + ACTIONS(5048), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5050), 1, + aux_sym__immediate_decimal_token5, + STATE(2390), 1, sym_comment, - ACTIONS(1862), 19, - anon_sym_if, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200233,29 +201865,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [72412] = 6, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [74130] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4930), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4932), 1, - aux_sym__immediate_decimal_token5, - STATE(2350), 1, + ACTIONS(5052), 1, + anon_sym_DOT2, + STATE(446), 1, + sym_path, + STATE(833), 1, + sym_cell_path, + STATE(2294), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2391), 1, sym_comment, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(1876), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200268,23 +201895,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [72450] = 7, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [74170] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + STATE(2392), 1, + sym_comment, + ACTIONS(5056), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5054), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74204] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(446), 1, sym_path, - STATE(735), 1, + STATE(846), 1, sym_cell_path, - STATE(2290), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2351), 1, + STATE(2393), 1, sym_comment, - ACTIONS(1878), 19, + ACTIONS(1868), 19, anon_sym_if, sym__newline, anon_sym_SEMI, @@ -200304,23 +201964,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72490] = 6, - ACTIONS(103), 1, + [74244] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4934), 1, - anon_sym_DOT, - ACTIONS(4936), 1, + ACTIONS(5058), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token5, - STATE(2352), 1, + STATE(2394), 1, sym_comment, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200334,52 +201990,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [72528] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4916), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, - aux_sym__immediate_decimal_token2, - STATE(2353), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74282] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2395), 1, sym_comment, - STATE(2894), 1, - sym__immediate_decimal, - ACTIONS(1631), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3138), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [72578] = 5, + ACTIONS(1533), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1535), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74316] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2396), 1, + sym_comment, + ACTIONS(5064), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5062), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74350] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2397), 1, + sym_comment, + ACTIONS(1513), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1515), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74384] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4882), 1, + ACTIONS(4980), 1, aux_sym__immediate_decimal_token5, - STATE(2354), 1, + STATE(2398), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -200405,15 +202117,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72614] = 4, + [74420] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2355), 1, + ACTIONS(5066), 1, + anon_sym_QMARK2, + ACTIONS(5068), 1, + anon_sym_BANG, + STATE(744), 1, + sym__path_suffix, + STATE(2399), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1432), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, + anon_sym_DOT2, + ACTIONS(1434), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200429,36 +202147,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72647] = 11, + [74459] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2400), 1, + sym_comment, + ACTIONS(5072), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5070), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74492] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(5074), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, + ACTIONS(5076), 1, aux_sym__immediate_decimal_token2, - STATE(2356), 1, + STATE(2401), 1, sym_comment, - STATE(3132), 1, + STATE(3264), 1, sym__immediate_decimal, - ACTIONS(1675), 2, + ACTIONS(1623), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(4960), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3125), 2, + STATE(3262), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 11, + ACTIONS(1625), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200470,24 +202214,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [72694] = 6, + [74539] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_DOT, - ACTIONS(4944), 1, - aux_sym__immediate_decimal_token5, - STATE(2357), 1, + ACTIONS(3169), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(5074), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5076), 1, + aux_sym__immediate_decimal_token2, + STATE(2402), 1, sym_comment, - ACTIONS(741), 7, + STATE(3160), 1, + sym__immediate_decimal, + ACTIONS(1673), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 13, + ACTIONS(4960), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3159), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1675), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200499,33 +202250,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [72731] = 11, + [74586] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(5074), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, + ACTIONS(5076), 1, aux_sym__immediate_decimal_token2, - STATE(2358), 1, + STATE(2403), 1, sym_comment, - STATE(3195), 1, + STATE(3154), 1, sym__immediate_decimal, - ACTIONS(1582), 2, + ACTIONS(1667), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(4960), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3182), 2, + STATE(3150), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 11, + ACTIONS(1669), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200537,22 +202286,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [72778] = 7, - ACTIONS(3), 1, + [74633] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_QMARK2, - ACTIONS(4948), 1, - anon_sym_BANG, - STATE(784), 1, - sym__path_suffix, - STATE(2359), 1, + ACTIONS(5078), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5080), 1, + aux_sym__immediate_decimal_token5, + STATE(2404), 1, sym_comment, - ACTIONS(1446), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 17, + ACTIONS(749), 7, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200564,22 +202315,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [72817] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [74670] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token5, - STATE(2360), 1, - sym_comment, - ACTIONS(1738), 2, + ACTIONS(1444), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 19, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(434), 1, + sym_cell_path, + STATE(827), 1, + sym_path, + STATE(2405), 1, + sym_comment, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1446), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200591,68 +202345,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [72852] = 5, - ACTIONS(103), 1, + [74711] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4950), 1, - sym__entry_separator, - STATE(2361), 2, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3317), 1, + anon_sym_LPAREN2, + ACTIONS(3799), 1, + anon_sym_DOLLAR, + ACTIONS(5084), 1, + anon_sym_DOT, + ACTIONS(5086), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5088), 1, + aux_sym__immediate_decimal_token2, + STATE(2406), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 19, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_GT2, + STATE(2682), 1, + sym__immediate_decimal, + ACTIONS(1588), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5090), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2943), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [74762] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2407), 1, + sym_comment, + ACTIONS(5094), 3, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [72887] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4955), 1, - anon_sym_GT2, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, + ACTIONS(5092), 19, sym_raw_string_begin, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2362), 1, - sym_comment, - ACTIONS(4953), 18, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -200660,59 +202417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [72926] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(4961), 1, - anon_sym_DOT_DOT2, - ACTIONS(4965), 1, - sym_filesize_unit, - ACTIONS(4967), 1, - sym_duration_unit, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2363), 1, - sym_comment, - STATE(4625), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4963), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [72973] = 8, + [74795] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DOT_DOT2, - ACTIONS(4971), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(932), 1, - sym_cell_path, - STATE(2364), 1, + STATE(2408), 1, sym_comment, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1679), 17, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200728,21 +202441,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73014] = 6, + sym_filesize_unit, + sym_duration_unit, + [74828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4973), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4975), 1, - aux_sym__immediate_decimal_token5, - STATE(2365), 1, + STATE(2409), 1, + sym_comment, + ACTIONS(5098), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5096), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74861] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2410), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(789), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 18, + ACTIONS(791), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200761,17 +202502,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73051] = 5, + sym_filesize_unit, + sym_duration_unit, + [74894] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4977), 1, - aux_sym__immediate_decimal_token5, - STATE(2366), 1, + STATE(2411), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(5102), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5100), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74927] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1679), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 19, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(827), 1, + sym_path, + STATE(955), 1, + sym_cell_path, + STATE(2412), 1, + sym_comment, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1677), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200783,30 +202561,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73086] = 8, + [74968] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, + ACTIONS(1649), 1, anon_sym_DOT_DOT2, - ACTIONS(4971), 1, + ACTIONS(5082), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(827), 1, sym_path, STATE(935), 1, sym_cell_path, - STATE(2367), 1, + STATE(2413), 1, sym_comment, - STATE(2387), 1, + STATE(2473), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1641), 17, + ACTIONS(1647), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200824,24 +202599,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73127] = 6, + [75009] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2414), 1, + sym_comment, + ACTIONS(5106), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5104), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75042] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2415), 1, + sym_comment, + ACTIONS(2638), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2636), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75075] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4979), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4981), 1, + ACTIONS(5108), 1, aux_sym__immediate_decimal_token5, - STATE(2368), 1, + STATE(2416), 1, sym_comment, - ACTIONS(749), 7, - ts_builtin_sym_end, + ACTIONS(757), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(747), 13, + ACTIONS(755), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200853,22 +202683,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [73164] = 6, - ACTIONS(3), 1, + [75110] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4983), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - aux_sym__immediate_decimal_token5, - STATE(2369), 1, + ACTIONS(3169), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(5074), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5076), 1, + aux_sym__immediate_decimal_token2, + STATE(2417), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 18, + STATE(3147), 1, + sym__immediate_decimal, + ACTIONS(1653), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4960), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3131), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1655), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200880,27 +202723,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + [75157] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5110), 1, + anon_sym_DOT, + ACTIONS(5112), 1, + aux_sym__immediate_decimal_token5, + STATE(2418), 1, + sym_comment, + ACTIONS(741), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73201] = 7, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75194] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1663), 1, + ACTIONS(1643), 1, anon_sym_QMARK2, - ACTIONS(1665), 1, + ACTIONS(1645), 1, anon_sym_BANG, - STATE(2370), 1, + STATE(2419), 1, sym_comment, - STATE(2496), 1, + STATE(2554), 1, sym__path_suffix, - ACTIONS(4989), 2, + ACTIONS(5116), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4987), 17, + ACTIONS(5114), 17, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -200918,12 +202786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_DOT2, - [73240] = 5, + [75233] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4936), 1, + ACTIONS(4988), 1, aux_sym__immediate_decimal_token5, - STATE(2371), 1, + STATE(2420), 1, sym_comment, ACTIONS(741), 6, sym__space, @@ -200948,30 +202816,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [73275] = 7, - ACTIONS(103), 1, + [75268] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, + STATE(2421), 1, + sym_comment, + ACTIONS(5120), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5118), 19, sym_raw_string_begin, - ACTIONS(4991), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2372), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75301] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5002), 1, + aux_sym__immediate_decimal_token5, + STATE(2422), 1, + sym_comment, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75336] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2423), 1, sym_comment, - ACTIONS(4953), 18, + ACTIONS(5124), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5122), 19, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -200979,31 +202904,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, + [75369] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2424), 1, + sym_comment, + ACTIONS(1874), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - [73314] = 7, - ACTIONS(103), 1, + ACTIONS(1872), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75402] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, + ACTIONS(5126), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5128), 1, + aux_sym__immediate_decimal_token5, + STATE(2425), 1, + sym_comment, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 18, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75439] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2426), 1, + sym_comment, + ACTIONS(2519), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2517), 19, sym_raw_string_begin, - ACTIONS(4993), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2373), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75472] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2427), 1, sym_comment, - ACTIONS(4953), 18, + ACTIONS(5132), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5130), 19, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75505] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2428), 1, + sym_comment, + ACTIONS(5136), 3, anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5134), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75538] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5138), 1, + aux_sym__immediate_decimal_token5, + STATE(2429), 1, + sym_comment, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75573] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2430), 1, + sym_comment, + ACTIONS(5142), 3, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5140), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -201011,23 +203110,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, + [75606] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2431), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [75639] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2432), 1, + sym_comment, + ACTIONS(5146), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - [73353] = 7, + ACTIONS(5144), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75672] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5148), 1, anon_sym_QMARK2, - ACTIONS(4997), 1, + ACTIONS(5150), 1, anon_sym_BANG, - STATE(2374), 1, + STATE(2433), 1, sym_comment, - STATE(2476), 1, + STATE(2519), 1, sym__path_suffix, - ACTIONS(1446), 3, + ACTIONS(1432), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1448), 16, + ACTIONS(1434), 16, anon_sym_EQ, sym_identifier, sym__newline, @@ -201044,15 +203200,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73392] = 4, + [75711] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2375), 1, + STATE(2434), 1, + sym_comment, + ACTIONS(1846), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1844), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75744] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2435), 1, + sym_comment, + ACTIONS(1572), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1574), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75777] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5152), 1, + anon_sym_DOT, + ACTIONS(5154), 1, + aux_sym__immediate_decimal_token5, + STATE(2436), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1752), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 20, + ACTIONS(1750), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201071,32 +203289,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73425] = 7, - ACTIONS(103), 1, + [75814] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, + STATE(2437), 1, + sym_comment, + ACTIONS(5158), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5156), 19, sym_raw_string_begin, - ACTIONS(4999), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2376), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75847] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2438), 1, sym_comment, - ACTIONS(4953), 18, + ACTIONS(5162), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5160), 19, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -201104,32 +203347,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73464] = 11, + [75880] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(908), 1, + sym__space, + ACTIONS(1714), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token2, - STATE(2377), 1, + ACTIONS(5164), 1, + anon_sym_DOT_DOT2, + ACTIONS(5168), 1, + sym_filesize_unit, + ACTIONS(5170), 1, + sym_duration_unit, + ACTIONS(5172), 1, + sym__unquoted_pattern, + STATE(2439), 1, sym_comment, - STATE(3111), 1, - sym__immediate_decimal, - ACTIONS(1667), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3110), 2, + STATE(4710), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 11, + ACTIONS(5166), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201141,54 +203381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [73511] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5001), 1, - anon_sym_DOT, - ACTIONS(5003), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, - aux_sym__immediate_decimal_token2, - STATE(2378), 1, - sym_comment, - STATE(2637), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2913), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [73562] = 4, + anon_sym_RBRACE, + [75927] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2379), 1, + STATE(2440), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 20, - ts_builtin_sym_end, + ACTIONS(1738), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201200,29 +203403,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73595] = 5, + [75959] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_DOT2, + STATE(446), 1, + sym_path, + STATE(2441), 1, + sym_comment, + STATE(2444), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5176), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5174), 16, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [75997] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5009), 1, - aux_sym__immediate_decimal_token5, - STATE(2380), 1, + STATE(2442), 1, sym_comment, - ACTIONS(773), 6, + ACTIONS(791), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(771), 15, + ACTIONS(789), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201238,58 +203470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [73630] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token2, - STATE(2381), 1, - sym_comment, - STATE(3121), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3112), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [73677] = 8, + [76029] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1432), 1, + ACTIONS(1496), 1, anon_sym_DOT_DOT2, - ACTIONS(4971), 1, + ACTIONS(5178), 1, anon_sym_DOT2, - STATE(453), 1, - sym_cell_path, - STATE(783), 1, + STATE(827), 1, sym_path, - STATE(2382), 1, + STATE(2443), 2, sym_comment, - STATE(2387), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 17, + ACTIONS(1498), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201307,57 +203500,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73718] = 12, + [76065] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5013), 1, - aux_sym__immediate_decimal_token2, - STATE(2383), 1, + ACTIONS(1842), 1, + anon_sym_DOT2, + STATE(431), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(446), 1, + sym_path, + STATE(2444), 1, sym_comment, - STATE(2994), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3221), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [73766] = 6, + ACTIONS(5183), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5181), 16, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [76103] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5019), 1, + ACTIONS(5112), 1, aux_sym__immediate_decimal_token5, - STATE(2384), 1, + STATE(2445), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(741), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201369,82 +203558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [73802] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2385), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 19, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73834] = 5, + [76137] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5021), 1, - sym__newline, - STATE(2386), 2, + STATE(2446), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3738), 16, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [73868] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1458), 1, + ACTIONS(1818), 2, anon_sym_DOT_DOT2, - ACTIONS(4971), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(2387), 1, - sym_comment, - STATE(2407), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 17, - ts_builtin_sym_end, + sym__unquoted_pattern, + ACTIONS(1816), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201456,29 +203580,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73906] = 8, + [76169] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5185), 1, anon_sym_DOT2, - STATE(2388), 1, + STATE(2447), 1, sym_comment, - STATE(2430), 1, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(2603), 1, sym_path, - STATE(2615), 1, + STATE(2676), 1, sym_cell_path, - ACTIONS(1641), 3, + ACTIONS(1446), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 14, + ACTIONS(1444), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201493,46 +203620,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [73946] = 7, + [76209] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2389), 1, + STATE(2448), 1, sym_comment, - STATE(2417), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(5028), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5026), 16, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [73984] = 4, + ACTIONS(1856), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76241] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2390), 1, + STATE(2449), 1, sym_comment, - ACTIONS(1514), 2, + ACTIONS(1505), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1516), 19, + ACTIONS(1507), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201552,19 +203676,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [74016] = 4, + [76273] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3317), 1, + anon_sym_LPAREN2, + ACTIONS(3799), 1, + anon_sym_DOLLAR, + ACTIONS(5086), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5088), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5187), 1, + anon_sym_DOT, + STATE(2450), 1, + sym_comment, + STATE(2937), 1, + sym__immediate_decimal, + ACTIONS(1625), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5090), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2935), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1623), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [76321] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2391), 1, + ACTIONS(5189), 1, + aux_sym__immediate_decimal_token5, + STATE(2451), 1, sym_comment, - ACTIONS(851), 6, + ACTIONS(757), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(849), 15, + ACTIONS(755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201576,37 +203739,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [74048] = 12, + [76355] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR, - ACTIONS(5003), 1, + ACTIONS(5191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, + ACTIONS(5193), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5030), 1, - anon_sym_DOT, - STATE(2392), 1, + STATE(2452), 1, sym_comment, - STATE(2909), 1, + STATE(3016), 1, sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(1635), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(5195), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2906), 2, + STATE(3281), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 9, + ACTIONS(1633), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201616,22 +203777,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [74096] = 5, + [76403] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4944), 1, - aux_sym__immediate_decimal_token5, - STATE(2393), 1, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2453), 1, sym_comment, - ACTIONS(741), 7, - ts_builtin_sym_end, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2603), 1, + sym_path, + STATE(2668), 1, + sym_cell_path, + ACTIONS(1677), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 13, + ACTIONS(1679), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201643,26 +203806,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74130] = 8, + [76443] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2394), 1, + STATE(2454), 1, sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2627), 1, - sym_cell_path, - ACTIONS(1434), 3, + ACTIONS(749), 6, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201677,23 +203836,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [74170] = 6, + sym__unquoted_pattern, + [76475] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - ACTIONS(5034), 1, + STATE(2455), 1, + sym_comment, + ACTIONS(1458), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1460), 19, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [76507] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5197), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5199), 1, aux_sym__immediate_decimal_token5, - STATE(2395), 1, + STATE(2456), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(747), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(741), 13, + ACTIONS(749), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201707,23 +203895,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74206] = 6, + [76543] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5036), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5038), 1, + ACTIONS(5201), 1, + anon_sym_DOT, + ACTIONS(5203), 1, aux_sym__immediate_decimal_token5, - STATE(2396), 1, + STATE(2457), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(739), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(749), 13, + ACTIONS(741), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201737,85 +203925,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74242] = 11, - ACTIONS(103), 1, + [76579] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(5040), 1, - anon_sym_DOT_DOT2, - ACTIONS(5044), 1, - sym_filesize_unit, - ACTIONS(5046), 1, - sym_duration_unit, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(2397), 1, + ACTIONS(3799), 1, + anon_sym_DOLLAR, + ACTIONS(5191), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5193), 1, + aux_sym__immediate_decimal_token2, + STATE(2458), 1, sym_comment, - STATE(4725), 1, + STATE(3013), 1, + sym__immediate_decimal, + ACTIONS(1588), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3269), 2, sym__expr_parenthesized_immediate, - ACTIONS(968), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5042), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [74288] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2398), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 19, + sym_val_variable, + ACTIONS(1584), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74320] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [76627] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5050), 1, - aux_sym__immediate_decimal_token5, - STATE(2399), 1, + STATE(2459), 1, sym_comment, - ACTIONS(773), 7, - ts_builtin_sym_end, + ACTIONS(757), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(771), 13, + ACTIONS(755), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201827,17 +203985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [74354] = 4, + [76659] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2400), 1, + STATE(2460), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1517), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 19, + anon_sym_DOT2, + ACTIONS(1519), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201849,23 +204010,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74386] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [76691] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2401), 1, + STATE(2461), 1, sym_comment, - ACTIONS(1872), 2, + ACTIONS(1521), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 19, + anon_sym_DOT2, + ACTIONS(1523), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201877,54 +204038,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74418] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [76723] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2402), 1, - sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [74454] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2403), 1, - sym_comment, - ACTIONS(1474), 2, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(5205), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1476), 19, + ACTIONS(5209), 1, + sym_filesize_unit, + ACTIONS(5211), 1, + sym_duration_unit, + ACTIONS(5213), 1, + sym__unquoted_pattern, + STATE(2462), 1, + sym_comment, + STATE(4785), 1, + sym__expr_parenthesized_immediate, + ACTIONS(908), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5207), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201936,29 +204080,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74486] = 7, + [76769] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5052), 1, - anon_sym_QMARK2, - ACTIONS(5054), 1, - anon_sym_BANG, - STATE(2404), 1, + ACTIONS(5215), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token5, + STATE(2463), 1, sym_comment, - STATE(2566), 1, - sym__path_suffix, - ACTIONS(1448), 3, + ACTIONS(1750), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 15, + ACTIONS(1752), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201972,52 +204108,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [74524] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4985), 1, - aux_sym__immediate_decimal_token5, - STATE(2405), 1, - sym_comment, - ACTIONS(1738), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 18, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74558] = 7, - ACTIONS(3), 1, + [76805] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5056), 1, - anon_sym_DOT_DOT2, - STATE(2406), 1, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2464), 1, sym_comment, - ACTIONS(5058), 2, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2603), 1, + sym_path, + STATE(2638), 1, + sym_cell_path, + ACTIONS(1647), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 16, + ACTIONS(1649), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202031,22 +204141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74596] = 6, + anon_sym_DOT_DOT2, + [76845] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1524), 1, - anon_sym_DOT_DOT2, - ACTIONS(5060), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(2407), 2, + ACTIONS(5154), 1, + aux_sym__immediate_decimal_token5, + STATE(2465), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 17, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202062,17 +204168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74632] = 4, + [76879] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2408), 1, + STATE(2466), 1, sym_comment, - ACTIONS(1466), 2, + ACTIONS(1525), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1468), 19, + ACTIONS(1527), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202092,50 +204199,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [74664] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5063), 1, - anon_sym_DOT_DOT2, - STATE(2409), 1, - sym_comment, - ACTIONS(5065), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74702] = 4, + [76911] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2410), 1, + ACTIONS(5219), 1, + anon_sym_QMARK2, + ACTIONS(5221), 1, + anon_sym_BANG, + STATE(2467), 1, sym_comment, - ACTIONS(749), 6, + STATE(2579), 1, + sym__path_suffix, + ACTIONS(1434), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(1432), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202150,17 +204229,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74734] = 4, + anon_sym_DOT2, + [76949] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2411), 1, - sym_comment, - ACTIONS(1470), 2, - anon_sym_DOT_DOT2, + ACTIONS(5052), 1, anon_sym_DOT2, - ACTIONS(1472), 19, - ts_builtin_sym_end, + STATE(446), 1, + sym_path, + STATE(937), 1, + sym_cell_path, + STATE(2294), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2468), 1, + sym_comment, + ACTIONS(1838), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202172,31 +204255,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74766] = 8, - ACTIONS(103), 1, + [76987] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5052), 1, anon_sym_DOT2, - STATE(2412), 1, - sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(446), 1, sym_path, - STATE(2601), 1, + STATE(942), 1, sym_cell_path, - ACTIONS(1679), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 14, + STATE(2294), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2469), 1, + sym_comment, + ACTIONS(1848), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202209,22 +204287,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [74806] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77025] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(5052), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(446), 1, sym_path, - STATE(930), 1, + STATE(956), 1, sym_cell_path, - STATE(2290), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2413), 1, + STATE(2470), 1, sym_comment, - ACTIONS(1882), 17, + ACTIONS(1872), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202242,20 +204323,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74844] = 7, + [77063] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(923), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2414), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(5223), 1, + anon_sym_DOT_DOT2, + STATE(2471), 1, sym_comment, - ACTIONS(1850), 17, + ACTIONS(5225), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2011), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202268,25 +204350,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74882] = 7, + [77101] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(5052), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(446), 1, sym_path, - STATE(936), 1, + STATE(897), 1, sym_cell_path, - STATE(2290), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2415), 1, + STATE(2472), 1, sym_comment, - ACTIONS(1858), 17, + ACTIONS(1844), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202304,20 +204385,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74920] = 7, + [77139] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(1492), 1, + anon_sym_DOT_DOT2, + ACTIONS(5082), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(827), 1, sym_path, - STATE(899), 1, - sym_cell_path, - STATE(2290), 1, + STATE(2443), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2416), 1, + STATE(2473), 1, sym_comment, - ACTIONS(1866), 17, + ACTIONS(1494), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202329,90 +204411,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74958] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(420), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(2417), 1, - sym_comment, - ACTIONS(5069), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5067), 16, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [74996] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5013), 1, - aux_sym__immediate_decimal_token2, - STATE(2418), 1, - sym_comment, - STATE(2991), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3351), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [75044] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77177] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5071), 1, + ACTIONS(5227), 1, aux_sym__immediate_decimal_token5, - STATE(2419), 1, + STATE(2474), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1818), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 18, + ACTIONS(1816), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202431,16 +204445,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75078] = 4, - ACTIONS(3), 1, + [77211] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2420), 1, + ACTIONS(5229), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5231), 1, + aux_sym__immediate_decimal_token5, + STATE(2475), 1, sym_comment, - ACTIONS(1478), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1480), 19, - ts_builtin_sym_end, + ACTIONS(1738), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1740), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202452,26 +204471,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [75110] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77247] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2421), 1, - sym_comment, - ACTIONS(773), 6, - sym__space, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, anon_sym_LPAREN2, + ACTIONS(5233), 1, + anon_sym_DOT_DOT2, + STATE(2476), 1, + sym_comment, + ACTIONS(5235), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 15, + ACTIONS(2001), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202485,17 +204503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75142] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77285] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2422), 1, + STATE(2477), 1, sym_comment, - ACTIONS(1543), 2, + ACTIONS(1509), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1545), 19, + ACTIONS(1511), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202515,21 +204534,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [75174] = 6, + [77317] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5073), 1, - anon_sym_DOT, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2423), 1, + ACTIONS(5237), 1, + anon_sym_DOT2, + STATE(2603), 1, + sym_path, + STATE(2478), 2, sym_comment, - ACTIONS(1736), 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1498), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 15, + ACTIONS(1496), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202544,17 +204563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75210] = 4, - ACTIONS(3), 1, + [77352] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2424), 1, + ACTIONS(5240), 1, + aux_sym__immediate_decimal_token5, + STATE(2479), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 18, - ts_builtin_sym_end, + ACTIONS(1816), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1818), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202566,31 +204587,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75241] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77385] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2425), 1, + ACTIONS(2156), 1, + anon_sym_BANG, + STATE(2480), 1, sym_comment, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2701), 1, - sym_cell_path, - ACTIONS(1434), 4, + ACTIONS(1450), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1452), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202602,21 +204614,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [75280] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77418] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2426), 1, + STATE(2481), 1, sym_comment, - ACTIONS(851), 7, - ts_builtin_sym_end, + ACTIONS(1460), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(849), 13, + ACTIONS(1458), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202628,33 +204640,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75311] = 11, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77449] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(5242), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, + ACTIONS(5244), 1, aux_sym__immediate_decimal_token2, - STATE(2427), 1, + STATE(2482), 1, sym_comment, - STATE(3279), 1, + STATE(3280), 1, sym__immediate_decimal, - ACTIONS(1669), 2, + ACTIONS(1675), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(5090), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3275), 2, + STATE(3279), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1667), 9, + ACTIONS(1673), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -202664,65 +204680,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75356] = 11, + [77494] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2428), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(5246), 1, + anon_sym_DOT_DOT2, + STATE(2483), 1, sym_comment, - STATE(3304), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3285), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 9, - anon_sym_EQ, + ACTIONS(5248), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2011), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [75401] = 11, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77531] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(5242), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, + ACTIONS(5244), 1, aux_sym__immediate_decimal_token2, - STATE(2429), 1, + STATE(2484), 1, sym_comment, - STATE(3220), 1, + STATE(3390), 1, sym__immediate_decimal, - ACTIONS(1677), 2, + ACTIONS(1625), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(5090), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3305), 2, + STATE(3382), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 9, + ACTIONS(1623), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -202732,22 +204744,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75446] = 7, + [77576] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, + STATE(2485), 1, sym_comment, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - ACTIONS(1460), 3, + ACTIONS(749), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77607] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(5250), 1, + anon_sym_DOT, + ACTIONS(5252), 1, + aux_sym__immediate_decimal_token5, + STATE(2486), 1, + sym_comment, + ACTIONS(1750), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202761,23 +204796,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [77642] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5254), 1, + anon_sym_QMARK2, + STATE(2487), 1, + sym_comment, + ACTIONS(1450), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - [75483] = 6, + anon_sym_DOT2, + ACTIONS(1452), 16, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77675] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5083), 1, - anon_sym_DOT, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - STATE(2431), 1, + STATE(2488), 1, sym_comment, - ACTIONS(1736), 5, - ts_builtin_sym_end, + ACTIONS(1519), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, + ACTIONS(1517), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202789,27 +204849,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75518] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77706] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2432), 1, - sym_comment, + ACTIONS(5256), 1, + anon_sym_QMARK2, + ACTIONS(5258), 1, + anon_sym_BANG, STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2756), 1, - sym_cell_path, - ACTIONS(1679), 4, + sym_comment, + STATE(2661), 1, + sym__path_suffix, + ACTIONS(1434), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 12, + ACTIONS(1432), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202822,22 +204884,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [75557] = 7, - ACTIONS(3), 1, + anon_sym_DOT2, + [77743] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5087), 1, + ACTIONS(908), 1, + sym__space, + ACTIONS(4119), 1, anon_sym_DOT_DOT2, - STATE(2433), 1, + ACTIONS(5168), 1, + sym_filesize_unit, + ACTIONS(5170), 1, + sym_duration_unit, + ACTIONS(5172), 1, + sym__unquoted_pattern, + STATE(2490), 1, sym_comment, - ACTIONS(5089), 2, + ACTIONS(4121), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 15, - ts_builtin_sym_end, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202849,24 +204915,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [75594] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [77784] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3317), 1, + anon_sym_LPAREN2, + ACTIONS(3799), 1, + anon_sym_DOLLAR, + ACTIONS(5242), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5244), 1, + aux_sym__immediate_decimal_token2, + STATE(2491), 1, + sym_comment, + STATE(3401), 1, + sym__immediate_decimal, + ACTIONS(1655), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5090), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3400), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1653), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77829] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5091), 1, - anon_sym_DOT2, - STATE(2542), 1, - sym_path, - STATE(2434), 2, + STATE(2492), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, + ACTIONS(757), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202878,21 +204976,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [75629] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1728), 1, sym__unquoted_pattern, - ACTIONS(5094), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5096), 1, - aux_sym__immediate_decimal_token5, - STATE(2435), 1, + [77860] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2493), 1, sym_comment, - ACTIONS(1726), 17, + ACTIONS(1523), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1521), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202906,65 +205001,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [75664] = 7, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77891] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5098), 1, + ACTIONS(5262), 1, anon_sym_DOT_DOT2, - STATE(2436), 1, + ACTIONS(5266), 1, + sym_filesize_unit, + ACTIONS(5268), 1, + sym_duration_unit, + ACTIONS(5270), 1, + sym__unquoted_pattern_in_record, + STATE(2494), 1, sym_comment, - ACTIONS(5100), 2, + STATE(4703), 1, + sym__expr_parenthesized_immediate, + ACTIONS(866), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5264), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 15, - ts_builtin_sym_end, + ACTIONS(908), 10, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [75701] = 11, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77936] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(5242), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, + ACTIONS(5244), 1, aux_sym__immediate_decimal_token2, - STATE(2437), 1, + STATE(2495), 1, sym_comment, - STATE(3347), 1, + STATE(3278), 1, sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(1669), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(5090), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3345), 2, + STATE(3277), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 9, + ACTIONS(1667), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -202974,16 +205073,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75746] = 4, - ACTIONS(3), 1, + [77981] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2438), 1, + ACTIONS(5272), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5274), 1, + aux_sym__immediate_decimal_token5, + STATE(2496), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 18, + ACTIONS(1738), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1740), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202995,45 +205100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75777] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2439), 1, - sym_comment, - ACTIONS(2938), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(2940), 17, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [75808] = 4, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78016] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2440), 1, + STATE(2497), 1, sym_comment, - ACTIONS(773), 7, + ACTIONS(791), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -203041,7 +205115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(771), 13, + ACTIONS(789), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203055,16 +205129,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75839] = 4, + [78047] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2441), 1, + STATE(2498), 1, + sym_comment, + ACTIONS(1511), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1509), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78078] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2499), 1, sym_comment, - ACTIONS(1516), 3, + ACTIONS(1507), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1514), 17, + ACTIONS(1505), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203082,21 +205183,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [75870] = 5, + [78109] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5034), 1, + ACTIONS(5276), 1, aux_sym__immediate_decimal_token5, - STATE(2442), 1, + STATE(2500), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(755), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(741), 13, + ACTIONS(757), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -203110,22 +205211,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75903] = 6, + [78142] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5102), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5104), 1, - aux_sym__immediate_decimal_token5, - STATE(2443), 1, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2478), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2501), 1, sym_comment, - ACTIONS(1726), 5, - ts_builtin_sym_end, + STATE(2603), 1, + sym_path, + ACTIONS(1494), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 13, + ACTIONS(1492), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203137,80 +205238,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75938] = 11, - ACTIONS(3), 1, + [78179] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5108), 1, - anon_sym_DOT_DOT2, - ACTIONS(5112), 1, - sym_filesize_unit, - ACTIONS(5114), 1, - sym_duration_unit, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, - STATE(2444), 1, + ACTIONS(5278), 1, + anon_sym_DOT, + ACTIONS(5280), 1, + aux_sym__immediate_decimal_token5, + STATE(2502), 1, sym_comment, - STATE(4649), 1, - sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5110), 2, + ACTIONS(1750), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 10, - anon_sym_EQ, + ACTIONS(1752), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [75983] = 5, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78214] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_QMARK2, - STATE(2445), 1, + ACTIONS(5203), 1, + aux_sym__immediate_decimal_token5, + STATE(2503), 1, sym_comment, - ACTIONS(1438), 3, + ACTIONS(739), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 16, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(741), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76016] = 4, + [78247] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2446), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2504), 1, sym_comment, - ACTIONS(1545), 3, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + STATE(2772), 1, + sym_cell_path, + ACTIONS(1677), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 17, + ACTIONS(1679), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203222,24 +205328,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76047] = 6, + [78286] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5120), 1, - anon_sym_DOT, - ACTIONS(5122), 1, - aux_sym__immediate_decimal_token5, - STATE(2447), 1, + STATE(2505), 1, sym_comment, - ACTIONS(1736), 17, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203251,31 +205350,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [76082] = 9, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78317] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(4965), 1, - sym_filesize_unit, - ACTIONS(4967), 1, - sym_duration_unit, - ACTIONS(4969), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - STATE(2448), 1, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(5284), 1, + anon_sym_DOT_DOT2, + STATE(2506), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(5286), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 13, + ACTIONS(2001), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203287,21 +205383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [76123] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78354] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5124), 1, - aux_sym__immediate_decimal_token5, - STATE(2449), 1, + STATE(2507), 1, sym_comment, - ACTIONS(1802), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203313,24 +205407,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76156] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2450), 1, - sym_comment, - ACTIONS(749), 7, - ts_builtin_sym_end, - sym__space, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 13, + [78385] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2508), 1, + sym_comment, + ACTIONS(1856), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203342,18 +205434,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76187] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78416] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2451), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2509), 1, sym_comment, - ACTIONS(1472), 3, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + STATE(2807), 1, + sym_cell_path, + ACTIONS(1647), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 17, + ACTIONS(1649), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203365,50 +205470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76218] = 5, + [78455] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5126), 1, + ACTIONS(1740), 1, + sym__unquoted_pattern, + ACTIONS(5288), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5290), 1, aux_sym__immediate_decimal_token5, - STATE(2452), 1, - sym_comment, - ACTIONS(771), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(773), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76251] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2453), 1, + STATE(2510), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 18, - ts_builtin_sym_end, + ACTIONS(1738), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203420,22 +205494,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76282] = 4, + [78490] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2454), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2511), 1, sym_comment, - ACTIONS(1480), 3, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + STATE(2750), 1, + sym_cell_path, + ACTIONS(1446), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1478), 17, + ACTIONS(1444), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203447,29 +205530,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, + [78529] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5254), 1, anon_sym_BANG, + STATE(2512), 1, + sym_comment, + ACTIONS(1450), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_DOT2, - [76313] = 7, + ACTIONS(1452), 16, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78562] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5128), 1, - anon_sym_QMARK2, - ACTIONS(5130), 1, - anon_sym_BANG, - STATE(2455), 1, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token5, + STATE(2513), 1, sym_comment, - STATE(2609), 1, - sym__path_suffix, - ACTIONS(1448), 4, - ts_builtin_sym_end, + ACTIONS(1750), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 13, + ACTIONS(1752), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203481,27 +205583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [76350] = 8, + sym__unquoted_pattern, + [78595] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2456), 1, + STATE(2514), 1, sym_comment, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2761), 1, - sym_cell_path, - ACTIONS(1641), 4, - ts_builtin_sym_end, + ACTIONS(1527), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 12, + ACTIONS(1525), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203513,17 +205608,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - [76389] = 4, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78626] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2457), 1, + ACTIONS(1818), 1, + sym__unquoted_pattern, + ACTIONS(5292), 1, + aux_sym__immediate_decimal_token5, + STATE(2515), 1, sym_comment, - ACTIONS(1468), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 17, + ACTIONS(1816), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203537,20 +205637,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76420] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [78658] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2458), 1, + STATE(2516), 1, sym_comment, - ACTIONS(1476), 3, + ACTIONS(1511), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1474), 17, + ACTIONS(1509), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203562,23 +205663,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [76451] = 5, + [78688] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2164), 1, - anon_sym_BANG, - STATE(2459), 1, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(5294), 1, + anon_sym_DOT, + ACTIONS(5296), 1, + aux_sym__immediate_decimal_token5, + STATE(2517), 1, sym_comment, - ACTIONS(1438), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 17, + ACTIONS(1750), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203594,21 +205694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76484] = 5, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [78722] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2460), 1, + ACTIONS(5300), 1, + anon_sym_DOT_DOT2, + STATE(2518), 1, sym_comment, - ACTIONS(1736), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5302), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 15, + ACTIONS(5298), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203622,20 +205719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76517] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78754] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_BANG, - STATE(2461), 1, + STATE(2519), 1, sym_comment, - ACTIONS(1438), 3, + ACTIONS(1529), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1440), 16, + ACTIONS(1531), 16, anon_sym_EQ, sym_identifier, sym__newline, @@ -203652,17 +205748,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76550] = 4, + [78784] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(864), 1, + sym_raw_string_begin, + ACTIONS(3217), 1, + anon_sym_DQUOTE, + ACTIONS(3219), 1, + anon_sym_SQUOTE, + ACTIONS(3221), 1, + anon_sym_BQUOTE, + ACTIONS(3223), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3225), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(5304), 1, + sym__unquoted_naive, + STATE(2520), 1, + sym_comment, + STATE(3009), 1, + sym__inter_single_quotes, + STATE(3012), 1, + sym__inter_double_quotes, + STATE(2499), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3086), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [78836] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5306), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5308), 1, + aux_sym__immediate_decimal_token5, + STATE(2521), 1, + sym_comment, + ACTIONS(1740), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78870] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2462), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, sym_comment, - ACTIONS(1545), 4, + STATE(2532), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + ACTIONS(1494), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 15, + ACTIONS(1492), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203675,20 +205842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76580] = 4, + [78906] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2463), 1, + STATE(2523), 1, sym_comment, - ACTIONS(1476), 4, - ts_builtin_sym_end, + ACTIONS(1816), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1474), 15, + ACTIONS(1818), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203700,58 +205864,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76610] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(5132), 1, - sym__unquoted_naive, - STATE(2464), 1, - sym_comment, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2967), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [76662] = 4, + sym__unquoted_pattern, + [78936] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2465), 1, + ACTIONS(5310), 1, + anon_sym_QMARK2, + STATE(2524), 1, sym_comment, - ACTIONS(1516), 4, - ts_builtin_sym_end, + ACTIONS(1452), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1514), 15, + ACTIONS(1450), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203763,25 +205891,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, anon_sym_DOT2, - [76692] = 7, + [78968] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1274), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2466), 1, + ACTIONS(5300), 1, + anon_sym_DOT_DOT2, + STATE(2525), 1, sym_comment, - ACTIONS(1866), 15, - ts_builtin_sym_end, + ACTIONS(5302), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5298), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203793,56 +205917,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76728] = 14, + [79000] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5144), 1, - anon_sym_LPAREN, - ACTIONS(5146), 1, - anon_sym_DASH2, - STATE(2467), 1, + ACTIONS(5300), 1, + anon_sym_DOT_DOT2, + STATE(2526), 1, sym_comment, - STATE(2621), 1, - sym_flag_capsule, - STATE(2623), 1, - aux_sym_parameter_repeat1, - STATE(3374), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5136), 7, - sym_identifier, + ACTIONS(5302), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5298), 16, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [76778] = 4, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79032] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2468), 1, + STATE(2527), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(1854), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 15, + ACTIONS(1856), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203858,26 +205975,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76808] = 9, + [79062] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(4119), 1, anon_sym_DOT_DOT2, - ACTIONS(5044), 1, + ACTIONS(5209), 1, sym_filesize_unit, - ACTIONS(5046), 1, + ACTIONS(5211), 1, sym_duration_unit, - ACTIONS(5048), 1, + ACTIONS(5213), 1, sym__unquoted_pattern, - STATE(2469), 1, + STATE(2528), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(908), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4141), 2, + ACTIONS(4121), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 11, + ACTIONS(866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203889,20 +206006,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [76848] = 7, + [79102] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5312), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(827), 1, sym_path, - STATE(1292), 1, + STATE(1315), 1, sym_cell_path, - STATE(2387), 1, + STATE(2473), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2470), 1, + STATE(2529), 1, sym_comment, - ACTIONS(1850), 15, + ACTIONS(1868), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203918,16 +206035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76884] = 5, + [79138] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(5148), 1, - aux_sym__immediate_decimal_token5, - STATE(2471), 1, + ACTIONS(5300), 1, + anon_sym_DOT_DOT2, + STATE(2530), 1, sym_comment, - ACTIONS(1802), 17, + ACTIONS(5302), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1706), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203944,73 +206062,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [76916] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2472), 1, - sym_comment, - ACTIONS(1480), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1478), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76946] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2473), 1, - sym_comment, - ACTIONS(849), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(851), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76976] = 7, + [79170] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5312), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(827), 1, sym_path, - STATE(1272), 1, + STATE(1266), 1, sym_cell_path, - STATE(2387), 1, + STATE(2473), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2474), 1, + STATE(2531), 1, sym_comment, - ACTIONS(1858), 15, + ACTIONS(1838), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204026,17 +206091,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77012] = 5, - ACTIONS(3), 1, + [79206] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2475), 1, + ACTIONS(5314), 1, + anon_sym_DOT2, + STATE(2663), 1, + sym_path, + STATE(2532), 2, sym_comment, - ACTIONS(5154), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1498), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + ACTIONS(1496), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204048,21 +206118,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77044] = 4, + anon_sym_DOT_DOT2, + [79240] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2476), 1, + STATE(2533), 1, sym_comment, - ACTIONS(1520), 3, + ACTIONS(1533), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1522), 16, + ACTIONS(1535), 16, anon_sym_EQ, sym_identifier, sym__newline, @@ -204079,46 +206145,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77074] = 7, + [79270] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1273), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2477), 1, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1778), 1, + anon_sym_LPAREN, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(5319), 1, + sym__unquoted_naive, + STATE(876), 1, + sym__inter_single_quotes, + STATE(878), 1, + sym__inter_double_quotes, + STATE(2534), 1, sym_comment, - ACTIONS(1862), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77110] = 5, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3164), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [79322] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, + ACTIONS(5321), 1, + anon_sym_DOT, + ACTIONS(5323), 1, + aux_sym__immediate_decimal_token5, + STATE(2535), 1, + sym_comment, + ACTIONS(1752), 4, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(2478), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1750), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [79356] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2536), 1, sym_comment, - ACTIONS(5154), 2, + ACTIONS(1507), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 16, + ACTIONS(1505), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204130,52 +206232,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77142] = 7, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79386] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5312), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(827), 1, sym_path, - STATE(1320), 1, + STATE(1310), 1, sym_cell_path, - STATE(2387), 1, + STATE(2473), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2479), 1, - sym_comment, - ACTIONS(1882), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77178] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5156), 1, - anon_sym_DOT, - ACTIONS(5158), 1, - aux_sym__immediate_decimal_token5, - STATE(2480), 1, + STATE(2537), 1, sym_comment, - ACTIONS(1736), 16, + ACTIONS(1872), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204191,75 +206265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [77212] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2481), 1, - sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77244] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5160), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5162), 1, - aux_sym__immediate_decimal_token5, - STATE(2482), 1, - sym_comment, - ACTIONS(1728), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77278] = 4, + [79422] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2483), 1, + STATE(2538), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(755), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(749), 13, + ACTIONS(757), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -204273,91 +206291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77308] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(5166), 1, - sym__unquoted_naive, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(2484), 1, - sym_comment, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3209), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77360] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(97), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(5168), 1, - anon_sym_LPAREN, - ACTIONS(5170), 1, - anon_sym_DOLLAR, - ACTIONS(5172), 1, - sym__unquoted_naive, - STATE(1325), 1, - sym__inter_single_quotes, - STATE(1326), 1, - sym__inter_double_quotes, - STATE(2485), 1, - sym_comment, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3310), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77412] = 4, + [79452] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2486), 1, + STATE(2539), 1, sym_comment, - ACTIONS(1472), 4, + ACTIONS(1527), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 15, + ACTIONS(1525), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204373,47 +206317,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [77442] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2487), 1, - sym_comment, - ACTIONS(1870), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77472] = 6, + [79482] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_DOT, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2488), 1, + STATE(2540), 1, sym_comment, - ACTIONS(1738), 4, + ACTIONS(789), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(1736), 13, + ACTIONS(791), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -204427,23 +206343,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77506] = 7, + [79512] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, + STATE(2541), 1, sym_comment, - STATE(2492), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, ACTIONS(1460), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 12, + ACTIONS(1458), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204456,17 +206366,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [77542] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79542] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2490), 1, - sym_comment, - ACTIONS(1468), 4, - ts_builtin_sym_end, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2001), 1, sym__space, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(5325), 1, + anon_sym_DOT_DOT2, + STATE(2542), 1, + sym_comment, + ACTIONS(5327), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 15, + ACTIONS(2003), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204478,29 +206397,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [77572] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [79580] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2491), 1, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(5252), 1, + aux_sym__immediate_decimal_token5, + STATE(2543), 1, sym_comment, - STATE(2511), 1, + ACTIONS(1750), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [79612] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5312), 1, + anon_sym_DOT2, + STATE(827), 1, sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2868), 1, + STATE(1312), 1, sym_cell_path, - ACTIONS(1643), 2, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2544), 1, + sym_comment, + ACTIONS(1876), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79648] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2545), 1, + sym_comment, + ACTIONS(747), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1641), 13, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(749), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -204510,24 +206478,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77610] = 6, + [79678] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5180), 1, - anon_sym_DOT2, - STATE(2611), 1, - sym_path, - STATE(2492), 2, + STATE(2546), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 4, + ACTIONS(1519), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 12, + ACTIONS(1517), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204540,20 +206504,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [77644] = 5, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79708] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - STATE(2493), 1, + ACTIONS(5312), 1, + anon_sym_DOT2, + STATE(827), 1, + sym_path, + STATE(1324), 1, + sym_cell_path, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2547), 1, sym_comment, - ACTIONS(1736), 5, + ACTIONS(1848), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204565,145 +206533,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77676] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2494), 1, - sym_comment, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2863), 1, - sym_cell_path, - ACTIONS(1432), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1434), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77714] = 15, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79744] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(3263), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(3265), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(5329), 1, anon_sym_LPAREN, - ACTIONS(3681), 1, + ACTIONS(5331), 1, anon_sym_DOLLAR, - ACTIONS(5183), 1, + ACTIONS(5333), 1, sym__unquoted_naive, - STATE(2495), 1, - sym_comment, - STATE(3091), 1, + STATE(1308), 1, sym__inter_single_quotes, - STATE(3098), 1, + STATE(1317), 1, sym__inter_double_quotes, - STATE(2472), 4, + STATE(2548), 1, + sym_comment, + STATE(501), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3092), 4, + STATE(3311), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [77766] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2496), 1, - sym_comment, - ACTIONS(5187), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5185), 17, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_DOT2, - [77796] = 5, + [79796] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2497), 1, - sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77828] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2498), 1, + STATE(2549), 1, sym_comment, - STATE(2511), 1, + STATE(2562), 1, sym_path, - STATE(2556), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2900), 1, + STATE(2889), 1, sym_cell_path, - ACTIONS(1681), 2, + ACTIONS(1444), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1679), 13, + ACTIONS(1446), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -204717,16 +206603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77866] = 5, + [79834] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5122), 1, - aux_sym__immediate_decimal_token5, - STATE(2499), 1, + ACTIONS(5337), 1, + anon_sym_DOT_DOT2, + STATE(2550), 1, sym_comment, - ACTIONS(1736), 17, + ACTIONS(5339), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2134), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204743,18 +206630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [77898] = 5, + [79866] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5189), 1, + ACTIONS(5341), 1, anon_sym_DOT_DOT2, - STATE(2500), 1, + STATE(2551), 1, sym_comment, - ACTIONS(5191), 2, + ACTIONS(5343), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 16, + ACTIONS(2066), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204771,17 +206657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77930] = 5, + [79898] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5193), 1, + ACTIONS(5345), 1, anon_sym_DOT_DOT2, - STATE(2501), 1, + STATE(2552), 1, sym_comment, - ACTIONS(5195), 2, + ACTIONS(5347), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 16, + ACTIONS(2074), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204798,17 +206684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77962] = 5, + [79930] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5197), 1, + ACTIONS(5349), 1, anon_sym_DOT_DOT2, - STATE(2502), 1, + STATE(2553), 1, sym_comment, - ACTIONS(5199), 2, + ACTIONS(5351), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 16, + ACTIONS(2082), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204825,17 +206711,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77994] = 5, + [79962] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5201), 1, - anon_sym_DOT_DOT2, - STATE(2503), 1, + STATE(2554), 1, sym_comment, - ACTIONS(5203), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 16, + ACTIONS(5355), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5353), 17, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_DOT2, + [79992] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + sym__unquoted_pattern, + ACTIONS(5357), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5359), 1, + aux_sym__immediate_decimal_token5, + STATE(2555), 1, + sym_comment, + ACTIONS(1738), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204847,24 +206761,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78026] = 6, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [80026] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(5205), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5207), 1, + ACTIONS(5280), 1, aux_sym__immediate_decimal_token5, - STATE(2504), 1, + STATE(2556), 1, sym_comment, - ACTIONS(1726), 16, + ACTIONS(1750), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1752), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204876,27 +206790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [78060] = 8, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [80058] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5209), 1, - anon_sym_DOT_DOT2, - STATE(2505), 1, + STATE(2557), 1, sym_comment, - ACTIONS(5211), 2, + ACTIONS(1523), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 13, + ACTIONS(1521), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204908,20 +206814,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [78098] = 5, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80088] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5213), 1, + ACTIONS(5310), 1, anon_sym_BANG, - STATE(2506), 1, + STATE(2558), 1, sym_comment, - ACTIONS(1440), 3, + ACTIONS(1452), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 15, + ACTIONS(1450), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204937,102 +206845,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [78130] = 4, + [80120] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(2507), 1, - sym_comment, - ACTIONS(771), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(773), 13, + ACTIONS(1474), 1, + anon_sym_COMMA, + ACTIONS(5363), 1, anon_sym_EQ, + ACTIONS(5365), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(5367), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78160] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2508), 1, - sym_comment, - ACTIONS(1535), 3, + ACTIONS(5369), 1, + anon_sym_LPAREN, + ACTIONS(5371), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1537), 16, - anon_sym_EQ, + STATE(2559), 1, + sym_comment, + STATE(2669), 1, + sym_flag_capsule, + STATE(2672), 1, + aux_sym_parameter_repeat1, + STATE(3436), 1, + aux_sym_parameter_repeat2, + STATE(4167), 1, + aux_sym__repeat_newline, + STATE(3319), 2, + sym_param_type, + sym_param_value, + ACTIONS(5361), 7, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78190] = 8, - ACTIONS(103), 1, + [80170] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5215), 1, - anon_sym_DOT_DOT2, - STATE(2509), 1, + ACTIONS(978), 1, + sym_raw_string_begin, + ACTIONS(3181), 1, + anon_sym_DQUOTE, + ACTIONS(3183), 1, + anon_sym_SQUOTE, + ACTIONS(3185), 1, + anon_sym_BQUOTE, + ACTIONS(3187), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3189), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(5373), 1, + sym__unquoted_naive, + STATE(2560), 1, sym_comment, - ACTIONS(5217), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [78228] = 5, + STATE(3250), 1, + sym__inter_single_quotes, + STATE(3253), 1, + sym__inter_double_quotes, + STATE(2536), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3187), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [80222] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5219), 1, + ACTIONS(5375), 1, aux_sym__immediate_decimal_token5, - STATE(2510), 1, + STATE(2561), 1, sym_comment, - ACTIONS(1802), 5, + ACTIONS(1816), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 13, + ACTIONS(1818), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205046,16 +206945,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [78260] = 4, + [80254] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2511), 1, + STATE(2562), 1, sym_comment, - ACTIONS(1462), 3, + ACTIONS(1513), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1464), 16, + ACTIONS(1515), 16, anon_sym_EQ, sym_identifier, sym__newline, @@ -205072,18 +206971,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78290] = 5, + [80284] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_QMARK2, - STATE(2512), 1, - sym_comment, - ACTIONS(1440), 3, + ACTIONS(2011), 1, sym__space, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(5377), 1, + anon_sym_DOT_DOT2, + STATE(2563), 1, + sym_comment, + ACTIONS(5379), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 15, + ACTIONS(2013), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205097,48 +207001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78322] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1279), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2513), 1, - sym_comment, - ACTIONS(1878), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78358] = 4, + [80322] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2514), 1, + STATE(2564), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1738), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, + ACTIONS(1740), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205154,152 +207027,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [78388] = 5, + [80352] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2515), 1, - sym_comment, - ACTIONS(1706), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78419] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1858), 1, - sym__space, - ACTIONS(5024), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2516), 1, - sym_comment, - STATE(2542), 1, + STATE(2562), 1, sym_path, - STATE(2932), 1, + STATE(2565), 1, + sym_comment, + STATE(2570), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2878), 1, sym_cell_path, - ACTIONS(1860), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [78456] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5223), 1, + ACTIONS(1649), 2, anon_sym_DASH2, - STATE(2517), 1, - sym_comment, - ACTIONS(5221), 17, + anon_sym_DOT_DOT2, + ACTIONS(1647), 13, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78485] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_BANG, - STATE(2518), 1, - sym_comment, - ACTIONS(1440), 4, - ts_builtin_sym_end, - sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78516] = 8, - ACTIONS(103), 1, + [80390] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__space, - ACTIONS(5024), 1, + ACTIONS(5312), 1, anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2519), 1, - sym_comment, - STATE(2542), 1, + STATE(827), 1, sym_path, - STATE(3025), 1, + STATE(1320), 1, sym_cell_path, - ACTIONS(1868), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [78553] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2520), 1, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2566), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, + ACTIONS(1844), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205315,96 +207086,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78584] = 8, - ACTIONS(103), 1, + [80426] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - ACTIONS(5233), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2521), 1, - sym_comment, - STATE(2542), 1, + STATE(2562), 1, sym_path, - STATE(3003), 1, - sym_cell_path, - ACTIONS(5231), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [78621] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(2522), 1, - sym_comment, - ACTIONS(2501), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [78650] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2523), 1, + STATE(2567), 1, sym_comment, - ACTIONS(1964), 16, + STATE(2570), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2934), 1, + sym_cell_path, + ACTIONS(1679), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1677), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78681] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [80464] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2622), 1, sym__unquoted_pattern, - STATE(2524), 1, + STATE(2568), 1, sym_comment, - ACTIONS(994), 16, + ACTIONS(1706), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205421,67 +207142,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78712] = 5, + [80495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5235), 1, - aux_sym__immediate_decimal_token5, - STATE(2525), 1, - sym_comment, - ACTIONS(1804), 4, - sym_identifier, + ACTIONS(5102), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 13, + STATE(2569), 1, + sym_comment, + ACTIONS(5100), 17, anon_sym_EQ, + sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78743] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + [80524] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5239), 1, - anon_sym_DASH2, - STATE(2526), 1, + ACTIONS(5335), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2570), 1, sym_comment, - ACTIONS(5237), 17, + STATE(2634), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1492), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1494), 13, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78772] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [80559] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2597), 1, sym__unquoted_pattern, - STATE(2527), 1, + STATE(2571), 1, sym_comment, - ACTIONS(2635), 16, + ACTIONS(2591), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205498,16 +207221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78803] = 5, + [80590] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1856), 1, sym__unquoted_pattern, - STATE(2528), 1, + STATE(2572), 1, sym_comment, - ACTIONS(2575), 16, + ACTIONS(1854), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205524,18 +207245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78834] = 4, + anon_sym_LPAREN2, + [80619] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2529), 1, + STATE(2573), 1, sym_comment, - ACTIONS(1802), 5, + ACTIONS(1854), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 13, + ACTIONS(1856), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205549,14 +207271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [78863] = 4, + [80648] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5243), 1, + ACTIONS(5072), 1, anon_sym_DASH2, - STATE(2530), 1, + STATE(2574), 1, sym_comment, - ACTIONS(5241), 17, + ACTIONS(5070), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -205574,18 +207296,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [78892] = 4, + [80677] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2531), 1, - sym_comment, - ACTIONS(1726), 5, - ts_builtin_sym_end, + ACTIONS(5185), 1, + anon_sym_DOT2, + ACTIONS(5383), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 13, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2575), 1, + sym_comment, + STATE(2603), 1, + sym_path, + STATE(3049), 1, + sym_cell_path, + ACTIONS(5381), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205597,18 +207323,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78921] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [80714] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2532), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(2576), 1, sym_comment, - ACTIONS(1537), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 15, + ACTIONS(2525), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205622,18 +207348,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78950] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80745] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2533), 1, + STATE(2577), 1, sym_comment, - ACTIONS(1974), 16, + STATE(4719), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205650,16 +207377,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78981] = 5, + [80776] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, + ACTIONS(5323), 1, + aux_sym__immediate_decimal_token5, + STATE(2578), 1, + sym_comment, + ACTIONS(1752), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1750), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - STATE(2534), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [80807] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2579), 1, sym_comment, - ACTIONS(2523), 16, + ACTIONS(1531), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1529), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205673,19 +207426,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79012] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [80836] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2535), 1, + ACTIONS(1868), 1, + sym__space, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2580), 1, sym_comment, - ACTIONS(2567), 16, + STATE(2603), 1, + sym_path, + STATE(2996), 1, + sym_cell_path, + ACTIONS(1870), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205699,21 +207457,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79043] = 4, + [80873] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2536), 1, + ACTIONS(5387), 1, + aux_sym__immediate_decimal_token5, + STATE(2581), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1818), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1472), 15, + sym__unquoted_pattern_in_record, + ACTIONS(1816), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -205723,53 +207480,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79072] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2537), 1, - sym_comment, - ACTIONS(4682), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4684), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4686), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4678), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [79105] = 8, + [80904] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5185), 1, anon_sym_DOT2, - ACTIONS(5247), 1, + ACTIONS(5391), 1, sym__space, - STATE(2430), 1, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2538), 1, + STATE(2582), 1, sym_comment, - STATE(2542), 1, + STATE(2603), 1, sym_path, - STATE(3037), 1, + STATE(3111), 1, sym_cell_path, - ACTIONS(5245), 13, + ACTIONS(5389), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205783,22 +207512,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79142] = 8, + [80941] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5185), 1, anon_sym_DOT2, - ACTIONS(5251), 1, + ACTIONS(5395), 1, sym__space, - STATE(2430), 1, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2539), 1, + STATE(2583), 1, sym_comment, - STATE(2542), 1, + STATE(2603), 1, sym_path, - STATE(3036), 1, + STATE(3051), 1, sym_cell_path, - ACTIONS(5249), 13, + ACTIONS(5393), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205812,66 +207541,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79179] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5255), 1, - anon_sym_DASH2, - STATE(2540), 1, - sym_comment, - ACTIONS(5253), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [79208] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5259), 1, - anon_sym_DASH2, - STATE(2541), 1, - sym_comment, - ACTIONS(5257), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [79237] = 4, + [80978] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2542), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(5397), 1, + anon_sym_DOT_DOT2, + STATE(2584), 1, sym_comment, - ACTIONS(1464), 3, + ACTIONS(2001), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(5399), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 15, + ACTIONS(2003), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205883,23 +207570,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [79266] = 6, - ACTIONS(103), 1, + [81015] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5261), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5263), 1, - aux_sym__immediate_decimal_token5, - STATE(2543), 1, - sym_comment, - ACTIONS(1726), 2, - sym__space, + ACTIONS(2587), 1, anon_sym_LPAREN2, - ACTIONS(1728), 14, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(2585), 1, + sym_comment, + ACTIONS(2583), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205913,48 +207593,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [79299] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81046] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2544), 1, - sym_comment, - ACTIONS(1474), 3, - anon_sym_DASH2, + ACTIONS(5401), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1476), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + STATE(2586), 1, + sym_comment, + ACTIONS(5403), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79328] = 8, + ACTIONS(5298), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81077] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5267), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2545), 1, + ACTIONS(5405), 1, + anon_sym_QMARK2, + STATE(2587), 1, sym_comment, - STATE(3016), 1, - sym_cell_path, - ACTIONS(5265), 13, + ACTIONS(1452), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1450), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205966,18 +207646,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [79365] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [81108] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(2546), 1, + STATE(2588), 1, sym_comment, - ACTIONS(1018), 16, + ACTIONS(2533), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205994,16 +207674,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79396] = 5, - ACTIONS(3), 1, + [81139] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2547), 1, + ACTIONS(1872), 1, + sym__space, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2589), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + STATE(2603), 1, + sym_path, + STATE(3103), 1, + sym_cell_path, + ACTIONS(1874), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206017,19 +207703,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79427] = 4, + [81176] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2548), 1, + STATE(2590), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1505), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1480), 15, + ACTIONS(1507), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -206045,22 +207728,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [79456] = 8, + [81205] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5185), 1, anon_sym_DOT2, - ACTIONS(5273), 1, + ACTIONS(5409), 1, sym__space, - STATE(2430), 1, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2549), 1, + STATE(2591), 1, sym_comment, - STATE(3005), 1, + STATE(2603), 1, + sym_path, + STATE(3011), 1, sym_cell_path, - ACTIONS(5271), 13, + ACTIONS(5407), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206074,19 +207757,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79493] = 6, + [81242] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5275), 1, - anon_sym_DOT, - ACTIONS(5277), 1, - aux_sym__immediate_decimal_token5, - STATE(2550), 1, - sym_comment, - ACTIONS(1736), 2, + ACTIONS(1838), 1, sym__space, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2592), 1, + sym_comment, + STATE(2603), 1, + sym_path, + STATE(3052), 1, + sym_cell_path, + ACTIONS(1840), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [81279] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5142), 1, + anon_sym_DASH2, + STATE(2593), 1, + sym_comment, + ACTIONS(5140), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81308] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1714), 1, anon_sym_LPAREN2, - ACTIONS(1738), 14, + STATE(2594), 1, + sym_comment, + STATE(4719), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206100,20 +207834,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [79526] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81339] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_QMARK2, - STATE(2551), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(5411), 1, + anon_sym_DOT_DOT2, + STATE(2595), 1, sym_comment, - ACTIONS(1440), 4, + ACTIONS(2011), 2, ts_builtin_sym_end, sym__space, + ACTIONS(5413), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 13, + ACTIONS(2013), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206125,49 +207866,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [79557] = 4, - ACTIONS(3), 1, + [81376] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2552), 1, + STATE(2596), 1, sym_comment, - ACTIONS(1514), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1516), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(1535), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1533), 15, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79586] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1882), 1, - sym__space, - ACTIONS(5024), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2553), 1, + [81405] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2597), 1, sym_comment, - STATE(2968), 1, - sym_cell_path, - ACTIONS(1884), 13, + ACTIONS(1018), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206181,22 +207914,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79623] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81436] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1878), 1, + ACTIONS(1848), 1, sym__space, - ACTIONS(5024), 1, + ACTIONS(5185), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2554), 1, + STATE(2598), 1, sym_comment, - STATE(2987), 1, + STATE(2603), 1, + sym_path, + STATE(3045), 1, sym_cell_path, - ACTIONS(1880), 13, + ACTIONS(1851), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206210,17 +207946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79660] = 5, - ACTIONS(3), 1, + [81473] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5158), 1, + ACTIONS(5415), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5417), 1, aux_sym__immediate_decimal_token5, - STATE(2555), 1, + STATE(2599), 1, sym_comment, - ACTIONS(1736), 16, - ts_builtin_sym_end, + ACTIONS(1738), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1740), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206232,54 +207970,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [79691] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - sym_comment, - STATE(2575), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1458), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1460), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [79726] = 8, + anon_sym_RBRACE, + sym__unquoted_pattern, + [81506] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(1876), 1, sym__space, - ACTIONS(5024), 1, + ACTIONS(5185), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2557), 1, + STATE(2600), 1, sym_comment, - STATE(2931), 1, + STATE(2603), 1, + sym_path, + STATE(2983), 1, sym_cell_path, - ACTIONS(1864), 13, + ACTIONS(1878), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206293,14 +208002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79763] = 4, + [81543] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(2558), 1, + STATE(2601), 1, sym_comment, - ACTIONS(1726), 17, + ACTIONS(1004), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206317,19 +208028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [79792] = 4, + [81574] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2559), 1, + STATE(2602), 1, sym_comment, - ACTIONS(1870), 5, + ACTIONS(1738), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 13, + ACTIONS(1740), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206343,24 +208053,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [79821] = 8, + [81603] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5279), 1, - anon_sym_DOT_DOT2, - STATE(2560), 1, + STATE(2603), 1, sym_comment, - ACTIONS(1974), 2, - ts_builtin_sym_end, + ACTIONS(1515), 3, sym__space, - ACTIONS(5281), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 11, + ACTIONS(1513), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206372,43 +208074,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [79858] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2561), 1, - sym_comment, - ACTIONS(1543), 3, - anon_sym_DASH2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1545), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79887] = 5, + [81632] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2562), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2604), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, - ts_builtin_sym_end, + STATE(4719), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206420,44 +208099,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79918] = 6, + [81663] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2563), 1, + STATE(2605), 1, sym_comment, - ACTIONS(4694), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4696), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4698), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4692), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [79951] = 5, + ACTIONS(1458), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1460), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [81692] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, + ACTIONS(5401), 1, anon_sym_DOT_DOT2, - STATE(2564), 1, + STATE(2606), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5403), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1706), 15, @@ -206476,45 +208155,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79982] = 8, - ACTIONS(103), 1, + [81723] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5283), 1, - anon_sym_DOT_DOT2, - STATE(2565), 1, + ACTIONS(5120), 1, + anon_sym_DASH2, + STATE(2607), 1, sym_comment, - ACTIONS(1964), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5285), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 11, + ACTIONS(5118), 17, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [80019] = 4, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81752] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2566), 1, - sym_comment, - ACTIONS(1522), 3, + ACTIONS(5185), 1, + anon_sym_DOT2, + ACTIONS(5421), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 15, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2603), 1, + sym_path, + STATE(2608), 1, + sym_comment, + STATE(3100), 1, + sym_cell_path, + ACTIONS(5419), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206528,18 +208209,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + [81789] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2609), 1, + sym_comment, + ACTIONS(1509), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [80048] = 5, + ACTIONS(1511), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [81818] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2567), 1, + ACTIONS(1818), 1, + sym__unquoted_pattern, + ACTIONS(5423), 1, + aux_sym__immediate_decimal_token5, + STATE(2610), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(1816), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206551,21 +208256,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80079] = 4, + anon_sym_LPAREN2, + [81849] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2568), 1, + STATE(2611), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1517), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1468), 15, + ACTIONS(1519), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -206581,64 +208285,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [80108] = 4, + [81878] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(2569), 1, + STATE(2612), 1, sym_comment, - ACTIONS(1802), 17, + ACTIONS(1521), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1523), 15, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80137] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [81907] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DASH2, - STATE(2570), 1, + STATE(2613), 1, sym_comment, - ACTIONS(5287), 17, + ACTIONS(1525), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1527), 15, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [80166] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [81936] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(2571), 1, + STATE(2614), 1, sym_comment, - ACTIONS(1870), 17, + ACTIONS(2011), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206655,17 +208361,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [81967] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2615), 1, + sym_comment, + ACTIONS(1816), 5, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, - [80195] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1818), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [81996] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(5291), 1, - aux_sym__immediate_decimal_token5, - STATE(2572), 1, + ACTIONS(5401), 1, + anon_sym_DOT_DOT2, + STATE(2616), 1, sym_comment, - ACTIONS(1802), 16, + ACTIONS(5403), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5298), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206681,23 +208412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80226] = 8, - ACTIONS(103), 1, + [82027] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1850), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2573), 1, + ACTIONS(1740), 1, + sym__unquoted_pattern, + STATE(2617), 1, sym_comment, - STATE(3050), 1, - sym_cell_path, - ACTIONS(1853), 13, + ACTIONS(1738), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206711,18 +208433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80263] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [82056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2574), 1, + ACTIONS(2387), 1, + sym__unquoted_pattern, + STATE(2618), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, - ts_builtin_sym_end, + ACTIONS(2385), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206734,48 +208456,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80294] = 6, + anon_sym_LPAREN2, + [82085] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5293), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - ACTIONS(1524), 2, + ACTIONS(5124), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(2575), 2, + STATE(2619), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 13, + ACTIONS(5122), 17, anon_sym_EQ, sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [80327] = 5, - ACTIONS(3), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82114] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5296), 1, - anon_sym_DOT_DOT2, - STATE(2576), 1, + ACTIONS(1844), 1, + sym__space, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2603), 1, + sym_path, + STATE(2620), 1, + sym_comment, + STATE(2990), 1, + sym_cell_path, + ACTIONS(1846), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82151] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5405), 1, + anon_sym_BANG, + STATE(2621), 1, sym_comment, - ACTIONS(5298), 2, + ACTIONS(1452), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 15, - ts_builtin_sym_end, + ACTIONS(1450), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206787,46 +208540,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80358] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [82182] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2577), 1, + STATE(2622), 1, sym_comment, - ACTIONS(1738), 4, - sym_identifier, + ACTIONS(4793), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4795), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4797), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4791), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [82215] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5136), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 13, + STATE(2623), 1, + sym_comment, + ACTIONS(5134), 17, anon_sym_EQ, + sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [80389] = 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82244] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5300), 1, + ACTIONS(5401), 1, anon_sym_DOT_DOT2, - STATE(2578), 1, + STATE(2624), 1, sym_comment, - ACTIONS(5302), 2, + ACTIONS(5403), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 15, + ACTIONS(5298), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206842,17 +208620,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80420] = 5, + [82275] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5304), 1, + ACTIONS(5425), 1, anon_sym_DOT_DOT2, - STATE(2579), 1, + STATE(2625), 1, sym_comment, - ACTIONS(5306), 2, + ACTIONS(5427), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 15, + ACTIONS(2134), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206868,18 +208646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80451] = 5, + [82306] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5308), 1, - anon_sym_DOT_DOT2, - STATE(2580), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(2626), 1, sym_comment, - ACTIONS(5310), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 15, - ts_builtin_sym_end, + ACTIONS(2001), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206891,19 +208667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80482] = 5, + [82337] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2581), 1, + ACTIONS(1818), 1, + sym__unquoted_pattern, + STATE(2627), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(1816), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206920,20 +208696,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80513] = 6, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [82366] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5312), 1, - anon_sym_DOT, - ACTIONS(5314), 1, - aux_sym__immediate_decimal_token5, - STATE(2582), 1, + ACTIONS(5429), 1, + anon_sym_DOT_DOT2, + STATE(2628), 1, sym_comment, - ACTIONS(1736), 3, + ACTIONS(5431), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2066), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206945,15 +208720,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [80545] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82397] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(2583), 1, + ACTIONS(5433), 1, + anon_sym_DOT_DOT2, + STATE(2629), 1, sym_comment, - ACTIONS(1802), 16, + ACTIONS(5435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2074), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206969,56 +208749,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80573] = 12, + [82428] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5318), 1, - anon_sym_DASH2, - STATE(2584), 1, - sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3394), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5316), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [80617] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2585), 1, + ACTIONS(5437), 1, + anon_sym_DOT_DOT2, + STATE(2630), 1, sym_comment, - STATE(2611), 1, - sym_path, - STATE(3086), 1, - sym_cell_path, - ACTIONS(5247), 2, + ACTIONS(5439), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2082), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5245), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207030,17 +208772,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [80653] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82459] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5441), 1, + anon_sym_DOT, + ACTIONS(5443), 1, aux_sym__immediate_decimal_token5, - STATE(2586), 1, + STATE(2631), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1750), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1804), 14, + ACTIONS(1752), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207055,16 +208802,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [80683] = 5, + [82492] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, + STATE(2632), 1, + sym_comment, + ACTIONS(4751), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4755), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4747), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [82525] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1752), 1, sym__unquoted_pattern, - STATE(2587), 1, + ACTIONS(5296), 1, + aux_sym__immediate_decimal_token5, + STATE(2633), 1, sym_comment, - ACTIONS(1706), 15, + ACTIONS(1750), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207080,16 +208854,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80713] = 4, + anon_sym_LPAREN2, + [82556] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2588), 1, - sym_comment, - ACTIONS(1804), 3, + ACTIONS(5445), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + ACTIONS(1496), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 14, + STATE(2634), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1498), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -207101,51 +208880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [80741] = 4, - ACTIONS(3), 1, + [82589] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2589), 1, + STATE(2635), 1, sym_comment, - ACTIONS(1872), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, + ACTIONS(1858), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [80769] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5322), 1, + ACTIONS(1860), 14, sym__newline, - ACTIONS(5324), 1, - sym__space, - ACTIONS(5328), 1, - anon_sym_COLON2, - ACTIONS(5330), 1, - anon_sym_EQ2, - STATE(2590), 1, - sym_comment, - STATE(2840), 1, - aux_sym_attribute_repeat1, - STATE(4319), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5326), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207156,16 +208903,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - [80807] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [82617] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(2591), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2636), 1, sym_comment, - ACTIONS(1870), 16, + STATE(2663), 1, + sym_path, + STATE(3138), 1, + sym_cell_path, + ACTIONS(5383), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5381), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207177,52 +208934,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80835] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_DASH2, - STATE(2592), 1, - sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3384), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5332), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [80879] = 5, + [82653] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - STATE(2593), 1, + STATE(2637), 1, sym_comment, - STATE(4777), 1, + STATE(4755), 1, sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, + ACTIONS(5385), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207238,23 +208959,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80909] = 8, + [82683] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2594), 1, + STATE(2638), 1, sym_comment, - STATE(2611), 1, - sym_path, - STATE(3197), 1, - sym_cell_path, - ACTIONS(1878), 2, - ts_builtin_sym_end, + ACTIONS(1768), 3, sym__space, - ACTIONS(1880), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1770), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207266,15 +208980,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [80945] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [82711] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(2595), 1, + ACTIONS(5448), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5450), 1, + aux_sym__immediate_decimal_token5, + STATE(2639), 1, sym_comment, - ACTIONS(1726), 16, + ACTIONS(1738), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1740), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207286,20 +209008,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80973] = 4, - ACTIONS(103), 1, + sym__unquoted_pattern, + [82743] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2596), 1, + ACTIONS(1856), 1, + sym__unquoted_pattern, + STATE(2640), 1, sym_comment, - ACTIONS(1874), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1876), 14, + ACTIONS(1854), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207311,23 +209029,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81001] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [82771] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5454), 1, sym__space, - ACTIONS(5340), 1, + ACTIONS(5456), 1, anon_sym_EQ2, - ACTIONS(5342), 1, + ACTIONS(5458), 1, sym_short_flag_identifier, - STATE(2597), 1, + STATE(2641), 1, sym_comment, - STATE(3073), 1, + STATE(3048), 1, sym__flag_equals_value, - ACTIONS(5336), 13, + ACTIONS(5452), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207341,19 +209060,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81035] = 6, + [82805] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, + ACTIONS(5462), 1, sym__space, - ACTIONS(5348), 1, + ACTIONS(5464), 1, anon_sym_DOT_DOT2, - STATE(2598), 1, + STATE(2642), 1, sym_comment, - ACTIONS(5350), 2, + ACTIONS(5466), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5344), 13, + ACTIONS(5460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207367,44 +209086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81067] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2599), 1, - sym_comment, - STATE(2611), 1, - sym_path, - STATE(3212), 1, - sym_cell_path, - ACTIONS(1866), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1868), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [81103] = 5, + [82837] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(2600), 1, + STATE(2643), 1, sym_comment, - ACTIONS(2575), 15, + ACTIONS(2533), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207420,16 +209111,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81133] = 4, + [82867] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1474), 1, + anon_sym_COMMA, + ACTIONS(5363), 1, + anon_sym_EQ, + ACTIONS(5365), 1, + sym__newline, + ACTIONS(5367), 1, + anon_sym_COLON, + ACTIONS(5470), 1, + anon_sym_DASH2, + STATE(2644), 1, + sym_comment, + STATE(2690), 1, + aux_sym_parameter_repeat1, + STATE(3435), 1, + aux_sym_parameter_repeat2, + STATE(4167), 1, + aux_sym__repeat_newline, + STATE(3319), 2, + sym_param_type, + sym_param_value, + ACTIONS(5468), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [82911] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2601), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2645), 1, sym_comment, - ACTIONS(1641), 3, + STATE(2663), 1, + sym_path, + STATE(3179), 1, + sym_cell_path, + ACTIONS(5391), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 14, + ACTIONS(5389), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207441,26 +209171,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81161] = 8, + [82947] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5282), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2522), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2602), 1, + STATE(2646), 1, sym_comment, - STATE(2611), 1, + STATE(2663), 1, sym_path, - STATE(3143), 1, + STATE(3190), 1, sym_cell_path, - ACTIONS(1882), 2, + ACTIONS(1838), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1884), 11, + ACTIONS(1840), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207472,16 +209199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [81197] = 5, + [82983] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2597), 1, sym__unquoted_pattern, - STATE(2603), 1, + STATE(2647), 1, sym_comment, - ACTIONS(1974), 15, + ACTIONS(2591), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207497,19 +209224,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81227] = 6, + [83013] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1706), 1, sym__space, - ACTIONS(5348), 1, + ACTIONS(5464), 1, anon_sym_DOT_DOT2, - STATE(2604), 1, + STATE(2648), 1, sym_comment, - ACTIONS(5350), 2, + ACTIONS(5466), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 13, + ACTIONS(1604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207523,19 +209250,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81259] = 6, + [83045] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2134), 1, sym__space, - ACTIONS(5352), 1, + ACTIONS(5472), 1, anon_sym_DOT_DOT2, - STATE(2605), 1, + STATE(2649), 1, sym_comment, - ACTIONS(5354), 2, + ACTIONS(5474), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 13, + ACTIONS(2136), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207549,19 +209276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81291] = 6, + [83077] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(2066), 1, sym__space, - ACTIONS(5356), 1, + ACTIONS(5476), 1, anon_sym_DOT_DOT2, - STATE(2606), 1, + STATE(2650), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(5478), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 13, + ACTIONS(2068), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207575,19 +209302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81323] = 6, + [83109] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(2074), 1, sym__space, - ACTIONS(5360), 1, + ACTIONS(5480), 1, anon_sym_DOT_DOT2, - STATE(2607), 1, + STATE(2651), 1, sym_comment, - ACTIONS(5362), 2, + ACTIONS(5482), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 13, + ACTIONS(2076), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207601,19 +209328,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81355] = 6, + [83141] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2082), 1, sym__space, - ACTIONS(5364), 1, + ACTIONS(5484), 1, anon_sym_DOT_DOT2, - STATE(2608), 1, + STATE(2652), 1, sym_comment, - ACTIONS(5366), 2, + ACTIONS(5486), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 13, + ACTIONS(2084), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83173] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2653), 1, + sym_comment, + ACTIONS(1856), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1854), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [83201] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5488), 1, + sym__newline, + ACTIONS(5490), 1, + sym__space, + ACTIONS(5494), 1, + anon_sym_COLON2, + ACTIONS(5496), 1, + anon_sym_EQ2, + STATE(2654), 1, + sym_comment, + STATE(2913), 1, + aux_sym_attribute_repeat1, + STATE(4369), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5492), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [83239] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2655), 1, + sym_comment, + STATE(2663), 1, + sym_path, + STATE(3145), 1, + sym_cell_path, + ACTIONS(1868), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1870), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207625,19 +209435,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [81387] = 4, + [83275] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2609), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2656), 1, sym_comment, - ACTIONS(1522), 4, + STATE(2663), 1, + sym_path, + STATE(3140), 1, + sym_cell_path, + ACTIONS(5395), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 13, + ACTIONS(5393), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207649,43 +209463,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81415] = 4, + [83311] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2610), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(2657), 1, sym_comment, - ACTIONS(1728), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(2001), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81443] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83341] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2611), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2658), 1, sym_comment, - ACTIONS(1464), 4, + STATE(2663), 1, + sym_path, + STATE(3195), 1, + sym_cell_path, + ACTIONS(1876), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 13, + ACTIONS(1878), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207697,46 +209516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81471] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1966), 1, - anon_sym_DASH2, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5368), 1, - anon_sym_DOT_DOT2, - STATE(2612), 1, - sym_comment, - ACTIONS(5370), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [81507] = 5, + [83377] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2581), 1, anon_sym_LPAREN2, - STATE(2613), 1, + STATE(2659), 1, sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, + ACTIONS(2525), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207752,17 +209541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81537] = 5, + [83407] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1724), 1, sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2614), 1, + STATE(2660), 1, sym_comment, - ACTIONS(2523), 15, - ts_builtin_sym_end, + ACTIONS(908), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207774,19 +209560,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81567] = 4, + [83435] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2615), 1, + STATE(2661), 1, sym_comment, - ACTIONS(1822), 3, + ACTIONS(1531), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 14, + ACTIONS(1529), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207798,18 +209587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [81595] = 4, + anon_sym_DOT2, + [83463] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2616), 1, + STATE(2662), 1, sym_comment, - ACTIONS(1876), 2, + ACTIONS(1860), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1874), 15, + ACTIONS(1858), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -207825,23 +209613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [81623] = 8, + [83491] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2617), 1, + STATE(2663), 1, sym_comment, - STATE(3084), 1, - sym_cell_path, - ACTIONS(1862), 2, + ACTIONS(1515), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1864), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1513), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207853,16 +209635,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [81659] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [83519] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2387), 1, sym__unquoted_pattern, - STATE(2618), 1, + STATE(2664), 1, sym_comment, - ACTIONS(2567), 15, + ACTIONS(2385), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207878,17 +209660,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81689] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2639), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2619), 1, + [83547] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + sym__space, + ACTIONS(5456), 1, + anon_sym_EQ2, + ACTIONS(5498), 1, + sym_long_flag_identifier, + STATE(2665), 1, sym_comment, - ACTIONS(2635), 15, - ts_builtin_sym_end, + STATE(3053), 1, + sym__flag_equals_value, + ACTIONS(4280), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207900,17 +209686,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [81719] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83581] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2620), 1, + ACTIONS(5500), 1, + anon_sym_DOT, + ACTIONS(5502), 1, + aux_sym__immediate_decimal_token5, + STATE(2666), 1, sym_comment, - ACTIONS(968), 16, + ACTIONS(1750), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1752), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207922,53 +209713,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [81747] = 12, + sym__unquoted_pattern, + [83613] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5374), 1, - anon_sym_DASH2, - STATE(2584), 1, - aux_sym_parameter_repeat1, - STATE(2621), 1, + STATE(2667), 1, sym_comment, - STATE(3391), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5372), 7, + ACTIONS(1740), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 14, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [81791] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [83641] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2622), 1, + STATE(2668), 1, sym_comment, - ACTIONS(1886), 3, + ACTIONS(1647), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1888), 14, + ACTIONS(1649), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207983,31 +209762,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [81819] = 12, + [83669] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1474), 1, anon_sym_COMMA, - ACTIONS(5138), 1, + ACTIONS(5363), 1, anon_sym_EQ, - ACTIONS(5140), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(5142), 1, + ACTIONS(5367), 1, anon_sym_COLON, - ACTIONS(5378), 1, + ACTIONS(5506), 1, anon_sym_DASH2, - STATE(2623), 1, + STATE(2669), 1, sym_comment, - STATE(2787), 1, + STATE(2694), 1, aux_sym_parameter_repeat1, - STATE(3367), 1, + STATE(3430), 1, aux_sym_parameter_repeat2, - STATE(4189), 1, + STATE(4167), 1, aux_sym__repeat_newline, - STATE(3256), 2, + STATE(3319), 2, sym_param_type, sym_param_value, - ACTIONS(5376), 7, + ACTIONS(5504), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -208015,47 +209794,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [81863] = 4, + [83713] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2624), 1, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(2670), 1, sym_comment, - ACTIONS(1888), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1886), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(2583), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81891] = 8, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83743] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5282), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2522), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2663), 1, sym_path, - STATE(2625), 1, + STATE(2671), 1, sym_comment, - STATE(3094), 1, + STATE(3132), 1, sym_cell_path, - ACTIONS(1858), 2, + ACTIONS(5409), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1860), 11, + ACTIONS(5407), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208067,16 +209847,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [81927] = 5, + [83779] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(1474), 1, + anon_sym_COMMA, + ACTIONS(5363), 1, + anon_sym_EQ, + ACTIONS(5365), 1, + sym__newline, + ACTIONS(5367), 1, + anon_sym_COLON, + ACTIONS(5510), 1, + anon_sym_DASH2, + STATE(2672), 1, + sym_comment, + STATE(2809), 1, + aux_sym_parameter_repeat1, + STATE(3431), 1, + aux_sym_parameter_repeat2, + STATE(4167), 1, + aux_sym__repeat_newline, + STATE(3319), 2, + sym_param_type, + sym_param_value, + ACTIONS(5508), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83823] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1714), 1, anon_sym_LPAREN2, - STATE(2626), 1, + STATE(2673), 1, sym_comment, - ACTIONS(1964), 15, + STATE(4755), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208092,47 +209904,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81957] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2627), 1, - sym_comment, - ACTIONS(1558), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1556), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81985] = 8, + [83853] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5282), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2522), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2663), 1, sym_path, - STATE(2628), 1, + STATE(2674), 1, sym_comment, - STATE(3122), 1, + STATE(3191), 1, sym_cell_path, - ACTIONS(5233), 2, + ACTIONS(1848), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5231), 11, + ACTIONS(1851), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208144,20 +209932,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [82021] = 6, + [83889] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5380), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5382), 1, + ACTIONS(5443), 1, aux_sym__immediate_decimal_token5, - STATE(2629), 1, + STATE(2675), 1, sym_comment, - ACTIONS(1726), 3, - ts_builtin_sym_end, + ACTIONS(1750), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1728), 12, + ACTIONS(1752), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208169,24 +209954,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, sym__unquoted_pattern, - [82053] = 8, + [83919] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2630), 1, + STATE(2676), 1, sym_comment, - STATE(3097), 1, - sym_cell_path, - ACTIONS(5251), 2, - ts_builtin_sym_end, + ACTIONS(1574), 3, sym__space, - ACTIONS(5249), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208198,48 +209978,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [82089] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5386), 1, - anon_sym_DASH2, - STATE(2592), 1, - aux_sym_parameter_repeat1, - STATE(2631), 1, - sym_comment, - STATE(3363), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5384), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [82133] = 5, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [83947] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - STATE(2632), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(2677), 1, sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, + ACTIONS(2011), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208255,23 +210006,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82163] = 8, + [83977] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5282), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2522), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2663), 1, sym_path, - STATE(2633), 1, + STATE(2678), 1, sym_comment, - STATE(3213), 1, + STATE(3167), 1, sym_cell_path, - ACTIONS(1850), 2, + ACTIONS(1872), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1853), 11, + ACTIONS(1874), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208283,20 +210034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [82199] = 7, - ACTIONS(103), 1, + [84013] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4303), 1, - sym__space, - ACTIONS(5340), 1, - anon_sym_EQ2, - ACTIONS(5388), 1, - sym_long_flag_identifier, - STATE(2634), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2679), 1, sym_comment, - STATE(2933), 1, - sym__flag_equals_value, - ACTIONS(4301), 13, + STATE(4755), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208308,25 +210056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [82233] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84043] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2635), 1, + STATE(2680), 1, sym_comment, - STATE(3123), 1, - sym_cell_path, - ACTIONS(5273), 2, - ts_builtin_sym_end, + ACTIONS(1880), 3, sym__space, - ACTIONS(5271), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1882), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208338,23 +210080,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [82269] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [84071] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2636), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2681), 1, sym_comment, - STATE(3124), 1, - sym_cell_path, - ACTIONS(5267), 2, + ACTIONS(1018), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5265), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208366,23 +210105,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [82305] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84101] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1976), 1, + ACTIONS(2013), 1, anon_sym_DASH2, - ACTIONS(1978), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2021), 1, sym__unquoted_pattern_in_record, - ACTIONS(5390), 1, + ACTIONS(5512), 1, anon_sym_DOT_DOT2, - STATE(2637), 1, + STATE(2682), 1, sym_comment, - ACTIONS(5392), 2, + ACTIONS(5514), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 11, + ACTIONS(2011), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -208394,17 +210136,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [82341] = 5, - ACTIONS(103), 1, + [84137] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5277), 1, - aux_sym__immediate_decimal_token5, - STATE(2638), 1, + ACTIONS(1818), 1, + sym__unquoted_pattern, + STATE(2683), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, + ACTIONS(1816), 16, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(1738), 14, + [84165] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + sym__unquoted_pattern, + STATE(2684), 1, + sym_comment, + ACTIONS(1738), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208416,19 +210180,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [84193] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2003), 1, + anon_sym_DASH2, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(5516), 1, + anon_sym_DOT_DOT2, + STATE(2685), 1, + sym_comment, + ACTIONS(5518), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2001), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [82371] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [84229] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(2639), 1, + STATE(2686), 1, sym_comment, - ACTIONS(994), 15, + ACTIONS(1004), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208444,17 +210237,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82401] = 4, + [84259] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2687), 1, + sym_comment, + ACTIONS(1882), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1880), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [84287] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2688), 1, + sym_comment, + ACTIONS(1818), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1816), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [84315] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2640), 1, + STATE(2689), 1, sym_comment, - ACTIONS(1537), 4, + ACTIONS(1535), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 13, + ACTIONS(1533), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208468,17 +210309,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [82429] = 5, + [84343] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2641), 1, + ACTIONS(1474), 1, + anon_sym_COMMA, + ACTIONS(5363), 1, + anon_sym_EQ, + ACTIONS(5365), 1, + sym__newline, + ACTIONS(5367), 1, + anon_sym_COLON, + ACTIONS(5522), 1, + anon_sym_DASH2, + STATE(2690), 1, sym_comment, - ACTIONS(1018), 15, + STATE(2809), 1, + aux_sym_parameter_repeat1, + STATE(3429), 1, + aux_sym_parameter_repeat2, + STATE(4167), 1, + aux_sym__repeat_newline, + STATE(3319), 2, + sym_param_type, + sym_param_value, + ACTIONS(5520), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [84387] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + STATE(2691), 1, + sym_comment, + STATE(3178), 1, + sym_cell_path, + ACTIONS(5421), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5419), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208490,17 +210369,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82459] = 4, + [84423] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, sym__unquoted_pattern, - STATE(2642), 1, + STATE(2692), 1, sym_comment, - ACTIONS(2501), 16, + ACTIONS(1706), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208516,15 +210394,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [82487] = 4, + [84453] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + STATE(2693), 1, + sym_comment, + STATE(3217), 1, + sym_cell_path, + ACTIONS(1844), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1846), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [84489] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(1474), 1, + anon_sym_COMMA, + ACTIONS(5363), 1, + anon_sym_EQ, + ACTIONS(5365), 1, + sym__newline, + ACTIONS(5367), 1, + anon_sym_COLON, + ACTIONS(5526), 1, + anon_sym_DASH2, + STATE(2694), 1, + sym_comment, + STATE(2809), 1, + aux_sym_parameter_repeat1, + STATE(3444), 1, + aux_sym_parameter_repeat2, + STATE(4167), 1, aux_sym__repeat_newline, - STATE(2643), 1, + STATE(3319), 2, + sym_param_type, + sym_param_value, + ACTIONS(5524), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [84533] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5528), 1, + aux_sym__immediate_decimal_token5, + STATE(2695), 1, sym_comment, - ACTIONS(5394), 15, + ACTIONS(1816), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1818), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208537,20 +210477,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [84563] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5532), 1, anon_sym_and2, + ACTIONS(5534), 1, anon_sym_xor2, + ACTIONS(5536), 1, anon_sym_or2, - [82514] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2644), 1, + STATE(2696), 1, sym_comment, - ACTIONS(1886), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1888), 12, + ACTIONS(5530), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208562,21 +210502,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [82541] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84594] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5396), 1, + ACTIONS(5538), 1, anon_sym_DOT_DOT2, - STATE(2645), 1, + STATE(2697), 1, sym_comment, - ACTIONS(1706), 2, + ACTIONS(2082), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5398), 2, + ACTIONS(5540), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 11, + ACTIONS(2084), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208588,20 +210529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [82572] = 7, + [84625] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5546), 1, anon_sym_xor2, - STATE(2646), 1, - sym_comment, - STATE(2678), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5400), 12, + STATE(2698), 1, + sym_comment, + ACTIONS(5542), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208614,18 +210554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [82605] = 6, + [84656] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2647), 1, + STATE(2699), 1, sym_comment, - ACTIONS(5406), 13, + ACTIONS(5548), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208638,20 +210574,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [82636] = 6, + [84683] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5550), 1, + sym__newline, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2648), 1, + STATE(2700), 1, sym_comment, - ACTIONS(5412), 13, - sym__newline, + STATE(2727), 1, + aux_sym__repeat_newline, + ACTIONS(5553), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208663,16 +210600,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [82667] = 4, + [84714] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2643), 1, - aux_sym__repeat_newline, - STATE(2649), 1, - sym_comment, - ACTIONS(5418), 15, + ACTIONS(5557), 1, sym__newline, + ACTIONS(5562), 1, + anon_sym_and2, + STATE(2701), 1, + sym_comment, + STATE(2730), 1, + aux_sym__repeat_newline, + ACTIONS(5560), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208684,18 +210625,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82694] = 4, + [84745] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2650), 1, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5564), 1, + sym__newline, + STATE(2702), 1, sym_comment, - STATE(2684), 1, + STATE(2721), 1, aux_sym__repeat_newline, - ACTIONS(5420), 15, - sym__newline, + ACTIONS(5567), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208707,43 +210650,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82721] = 6, + [84776] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5422), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5424), 1, - aux_sym__immediate_decimal_token5, - STATE(2651), 1, - sym_comment, - ACTIONS(1728), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 11, - anon_sym_EQ, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5569), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [82752] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2652), 1, + STATE(2703), 1, sym_comment, - ACTIONS(5426), 15, - sym__newline, + STATE(2722), 1, + aux_sym__repeat_newline, + ACTIONS(5572), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208755,17 +210675,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82779] = 4, + [84807] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2653), 1, + STATE(2704), 1, sym_comment, - ACTIONS(5428), 15, + STATE(2735), 1, + aux_sym__repeat_newline, + ACTIONS(5574), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208781,18 +210700,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82806] = 6, + [84834] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5430), 1, + ACTIONS(2903), 1, sym__newline, - STATE(2654), 1, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2705), 1, sym_comment, - STATE(2685), 1, + STATE(2744), 1, aux_sym__repeat_newline, - ACTIONS(5418), 13, + ACTIONS(5567), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208804,20 +210725,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [82837] = 6, + [84867] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5433), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(5436), 1, + ACTIONS(5562), 1, anon_sym_and2, - STATE(2655), 1, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2706), 1, sym_comment, - STATE(2686), 1, + STATE(2747), 1, aux_sym__repeat_newline, - ACTIONS(5420), 13, + ACTIONS(5572), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208829,18 +210751,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [82868] = 5, - ACTIONS(3), 1, + [84900] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2656), 1, + STATE(2707), 1, sym_comment, - ACTIONS(5426), 14, + ACTIONS(1858), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1860), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208852,19 +210774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [82897] = 5, + anon_sym_DOT_DOT2, + [84927] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2657), 1, + STATE(2708), 1, sym_comment, - ACTIONS(5428), 14, + STATE(2736), 1, + aux_sym__repeat_newline, + ACTIONS(5580), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208877,22 +210795,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82926] = 7, + [84954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2658), 1, - sym_comment, - STATE(2687), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5418), 12, + STATE(2709), 1, + sym_comment, + ACTIONS(5582), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208904,21 +210818,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [82959] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, anon_sym_and2, - ACTIONS(5438), 1, anon_sym_xor2, - STATE(2659), 1, + anon_sym_or2, + [84981] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(5586), 1, + sym__space, + STATE(2710), 1, sym_comment, - STATE(2688), 1, - aux_sym__repeat_newline, - ACTIONS(5420), 12, + STATE(4712), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5584), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208930,19 +210845,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [82992] = 6, + anon_sym_RBRACE, + [85012] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2660), 1, + STATE(2711), 1, sym_comment, - ACTIONS(5426), 13, + ACTIONS(5588), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208955,19 +210868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [83023] = 6, + [85041] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2661), 1, + STATE(2712), 1, sym_comment, - ACTIONS(5428), 13, + ACTIONS(5548), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208980,15 +210892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [83054] = 4, - ACTIONS(3), 1, + [85070] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2662), 1, + STATE(2713), 1, sym_comment, - ACTIONS(5440), 15, + ACTIONS(1880), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1882), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209000,18 +210916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [83081] = 4, + anon_sym_DOT_DOT2, + [85097] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2663), 1, + STATE(2714), 1, sym_comment, - ACTIONS(5442), 15, + ACTIONS(5592), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209027,17 +210940,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83108] = 5, + [85124] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5555), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2664), 1, + ACTIONS(5576), 1, + anon_sym_xor2, + ACTIONS(5596), 1, + anon_sym_or2, + STATE(2715), 1, sym_comment, - ACTIONS(5440), 14, - sym__newline, + STATE(2791), 1, + aux_sym__repeat_newline, + ACTIONS(5594), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209049,18 +210967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [83137] = 5, - ACTIONS(3), 1, + [85159] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2665), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(2094), 1, + sym__space, + STATE(2716), 1, sym_comment, - ACTIONS(5442), 14, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2096), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209073,20 +210991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [83166] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [85190] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2666), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(2098), 1, + sym__space, + STATE(2717), 1, sym_comment, - ACTIONS(5440), 13, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2100), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209099,20 +211016,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [83197] = 6, + anon_sym_RBRACE, + [85221] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5562), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5578), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2667), 1, + ACTIONS(5600), 1, + anon_sym_or2, + STATE(2718), 1, sym_comment, - ACTIONS(5442), 13, - sym__newline, + STATE(2792), 1, + aux_sym__repeat_newline, + ACTIONS(5598), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209124,16 +211044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [83228] = 4, + [85256] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2668), 1, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5602), 1, + sym__newline, + STATE(2719), 1, sym_comment, - STATE(2689), 1, + STATE(2737), 1, aux_sym__repeat_newline, - ACTIONS(5444), 15, - sym__newline, + ACTIONS(5574), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209145,18 +211067,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83255] = 4, + [85287] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2669), 1, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5605), 1, + sym__newline, + STATE(2720), 1, sym_comment, - STATE(2690), 1, + STATE(2738), 1, aux_sym__repeat_newline, - ACTIONS(5446), 15, - sym__newline, + ACTIONS(5580), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209168,17 +211092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83282] = 4, + [85318] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5590), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2670), 1, + STATE(2721), 1, sym_comment, - ACTIONS(5448), 15, + ACTIONS(5582), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209191,17 +211116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83309] = 4, + [85347] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5544), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2671), 1, + STATE(2722), 1, sym_comment, - ACTIONS(5450), 15, + ACTIONS(5592), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209214,21 +211140,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83336] = 6, + [85376] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5452), 1, + ACTIONS(2903), 1, sym__newline, - STATE(2672), 1, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2723), 1, sym_comment, - STATE(2691), 1, + STATE(2731), 1, aux_sym__repeat_newline, - ACTIONS(5444), 13, + ACTIONS(5553), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209240,20 +211167,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [83367] = 6, - ACTIONS(3), 1, + [85409] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5455), 1, - sym__newline, - STATE(2673), 1, + STATE(2724), 1, sym_comment, - STATE(2692), 1, - aux_sym__repeat_newline, - ACTIONS(5446), 13, + ACTIONS(1738), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1740), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209265,18 +211189,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [83398] = 5, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85436] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2674), 1, + STATE(2725), 1, sym_comment, - ACTIONS(5448), 14, + ACTIONS(5608), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209289,18 +211211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83427] = 5, + [85463] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2675), 1, + STATE(2726), 1, sym_comment, - ACTIONS(5450), 14, + ACTIONS(5610), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209313,22 +211234,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83456] = 7, + [85490] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2676), 1, - sym_comment, - STATE(2693), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5444), 12, + STATE(2727), 1, + sym_comment, + ACTIONS(5608), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209340,21 +211259,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [83489] = 7, - ACTIONS(3), 1, + [85519] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(2102), 1, + sym__space, + STATE(2728), 1, + sym_comment, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2104), 13, sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2677), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [85550] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2729), 1, sym_comment, - STATE(2694), 1, - aux_sym__repeat_newline, - ACTIONS(5446), 12, + ACTIONS(1816), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1818), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209366,19 +211307,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [83522] = 6, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85577] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2678), 1, + STATE(2730), 1, sym_comment, - ACTIONS(5448), 13, + ACTIONS(5610), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209391,19 +211331,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [83553] = 6, + [85606] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5612), 1, anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2679), 1, + STATE(2731), 1, sym_comment, - ACTIONS(5450), 13, + ACTIONS(5608), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209417,20 +211358,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83584] = 7, - ACTIONS(3), 1, + [85637] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, + STATE(2732), 1, + sym_comment, + ACTIONS(1854), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1856), 14, sym__newline, - ACTIONS(5436), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85664] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5546), 1, anon_sym_xor2, - STATE(2679), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2680), 1, + STATE(2733), 1, sym_comment, - ACTIONS(5458), 12, + ACTIONS(5610), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209443,18 +211406,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83617] = 6, + [85695] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, sym__space, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5460), 1, - anon_sym_DOT, - STATE(2681), 1, + STATE(2734), 1, + sym_comment, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2108), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [85726] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2735), 1, sym_comment, - ACTIONS(1738), 13, + ACTIONS(5614), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209467,21 +211451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [83648] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85753] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5462), 1, - anon_sym_DOT_DOT2, - STATE(2682), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2736), 1, sym_comment, - ACTIONS(2152), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5464), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 11, + ACTIONS(5616), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209493,39 +211473,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [83679] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5466), 1, - anon_sym_DOT, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token5, - STATE(2683), 1, - sym_comment, - ACTIONS(1738), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [83710] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85780] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5590), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2684), 1, + STATE(2737), 1, sym_comment, - ACTIONS(5470), 15, + ACTIONS(5614), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209538,19 +211499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83737] = 5, + [85809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5544), 1, anon_sym_and2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2685), 1, + STATE(2738), 1, sym_comment, - ACTIONS(5394), 14, + ACTIONS(5616), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209565,17 +211525,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [83766] = 5, + [85838] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5562), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2733), 1, aux_sym__repeat_newline, - STATE(2686), 1, + STATE(2739), 1, sym_comment, - ACTIONS(5470), 14, - sym__newline, + ACTIONS(5560), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209587,21 +211550,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [83795] = 6, + [85871] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5576), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2687), 1, + STATE(2740), 1, sym_comment, - ACTIONS(5394), 13, - sym__newline, + STATE(2741), 1, + aux_sym__repeat_newline, + ACTIONS(5574), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209614,18 +211577,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83826] = 6, + [85904] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5612), 1, anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2688), 1, + STATE(2741), 1, sym_comment, - ACTIONS(5470), 13, + ACTIONS(5614), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209639,14 +211602,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83857] = 4, + [85935] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5544), 1, + anon_sym_and2, + ACTIONS(5546), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2689), 1, + STATE(2742), 1, sym_comment, - ACTIONS(5472), 15, + ACTIONS(5616), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209659,18 +211626,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [83884] = 4, + [85966] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2742), 1, aux_sym__repeat_newline, - STATE(2690), 1, + STATE(2743), 1, sym_comment, - ACTIONS(5474), 15, - sym__newline, + ACTIONS(5580), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209682,19 +211652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [83911] = 5, + [85999] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5590), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5612), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2691), 1, + STATE(2744), 1, sym_comment, - ACTIONS(5472), 14, + ACTIONS(5582), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209707,18 +211677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [83940] = 5, - ACTIONS(3), 1, + [86030] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2692), 1, + ACTIONS(1706), 1, + sym__space, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(2745), 1, sym_comment, - ACTIONS(5474), 14, + ACTIONS(1604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209731,20 +211702,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [83969] = 6, + anon_sym_RBRACE, + [86061] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5612), 1, anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2693), 1, + STATE(2746), 1, sym_comment, - ACTIONS(5472), 13, + ACTIONS(5588), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209758,18 +211728,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [84000] = 6, + [86092] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5546), 1, anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2694), 1, + STATE(2747), 1, sym_comment, - ACTIONS(5474), 13, + ACTIONS(5592), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209783,18 +211753,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [84031] = 6, + [86123] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(5502), 1, + aux_sym__immediate_decimal_token5, + STATE(2748), 1, + sym_comment, + ACTIONS(1750), 3, + ts_builtin_sym_end, sym__space, - ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(1752), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - STATE(2695), 1, + [86152] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2001), 1, + sym__space, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(2749), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(2003), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209808,18 +211802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84062] = 5, + [86183] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5314), 1, - aux_sym__immediate_decimal_token5, - STATE(2696), 1, + STATE(2750), 1, sym_comment, - ACTIONS(1736), 3, + ACTIONS(1574), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209831,15 +211824,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [84091] = 4, + anon_sym_DOT_DOT2, + [86210] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2697), 1, - sym_comment, - STATE(2806), 1, + ACTIONS(5590), 1, + anon_sym_and2, + ACTIONS(5612), 1, + anon_sym_xor2, + ACTIONS(5620), 1, + anon_sym_or2, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5476), 15, + STATE(2751), 1, + sym_comment, + ACTIONS(5618), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209852,17 +211851,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + [86243] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5544), 1, anon_sym_and2, + ACTIONS(5546), 1, anon_sym_xor2, + ACTIONS(5624), 1, anon_sym_or2, - [84118] = 4, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2752), 1, + sym_comment, + ACTIONS(5622), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [86276] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2698), 1, + STATE(2753), 1, sym_comment, - STATE(2807), 1, + STATE(2817), 1, aux_sym__repeat_newline, - ACTIONS(5478), 15, + ACTIONS(5626), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209878,18 +211900,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84145] = 6, - ACTIONS(103), 1, + [86303] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2699), 1, + STATE(2754), 1, sym_comment, - ACTIONS(1966), 13, + STATE(2824), 1, + aux_sym__repeat_newline, + ACTIONS(5628), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209902,16 +211920,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [84176] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86330] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2700), 1, - sym_comment, - ACTIONS(5480), 15, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5630), 1, sym__newline, + STATE(2755), 1, + sym_comment, + STATE(2829), 1, + aux_sym__repeat_newline, + ACTIONS(5626), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209923,21 +211946,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84203] = 4, - ACTIONS(103), 1, + [86361] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2701), 1, - sym_comment, - ACTIONS(1558), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1556), 12, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5633), 1, sym__newline, + STATE(2756), 1, + sym_comment, + STATE(2830), 1, + aux_sym__repeat_newline, + ACTIONS(5628), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209948,16 +211970,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [84230] = 4, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86392] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2702), 1, - sym_comment, - ACTIONS(5482), 15, + ACTIONS(2903), 1, sym__newline, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2757), 1, + sym_comment, + STATE(2835), 1, + aux_sym__repeat_newline, + ACTIONS(5626), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209969,21 +211998,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [84257] = 6, + [86425] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5484), 1, + ACTIONS(2903), 1, sym__newline, - STATE(2703), 1, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2758), 1, sym_comment, - STATE(2811), 1, + STATE(2836), 1, aux_sym__repeat_newline, - ACTIONS(5476), 13, + ACTIONS(5628), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209995,22 +212024,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [84288] = 6, - ACTIONS(103), 1, + [86458] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5487), 1, - anon_sym_DOT_DOT2, - STATE(2704), 1, + ACTIONS(5544), 1, + anon_sym_and2, + ACTIONS(5546), 1, + anon_sym_xor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2759), 1, sym_comment, - ACTIONS(2100), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5489), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 11, + ACTIONS(5548), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210022,20 +212048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [84319] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_or2, + [86489] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5491), 1, - anon_sym_DOT_DOT2, - STATE(2705), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2760), 1, sym_comment, - ACTIONS(2076), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5493), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 11, + ACTIONS(5636), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210047,20 +212069,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [84350] = 6, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86516] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5495), 1, + ACTIONS(5638), 1, anon_sym_DOT_DOT2, - STATE(2706), 1, + STATE(2761), 1, sym_comment, - ACTIONS(2120), 2, + ACTIONS(1706), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5497), 2, + ACTIONS(5640), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 11, + ACTIONS(1604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210072,18 +212098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [84381] = 6, - ACTIONS(103), 1, + [86547] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, - sym__space, - STATE(2707), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2762), 1, sym_comment, - ACTIONS(2577), 13, + ACTIONS(5642), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210096,19 +212118,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [84412] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86574] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(2708), 1, + ACTIONS(2533), 1, + sym__space, + STATE(2763), 1, sym_comment, - ACTIONS(1976), 13, + ACTIONS(2535), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210122,18 +212146,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84443] = 5, - ACTIONS(103), 1, + [86605] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token5, - STATE(2709), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2764), 1, sym_comment, - ACTIONS(1802), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 12, + ACTIONS(5644), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210145,19 +212165,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [84472] = 6, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86632] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, + ACTIONS(2011), 1, sym__space, - ACTIONS(2629), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - STATE(2710), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(2765), 1, sym_comment, - ACTIONS(2525), 13, + ACTIONS(2013), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210171,18 +212194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84503] = 6, + [86663] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5501), 1, - sym__space, - STATE(2711), 1, + ACTIONS(5646), 1, + aux_sym__immediate_decimal_token5, + STATE(2766), 1, sym_comment, - STATE(2840), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 13, + ACTIONS(1816), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1818), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210194,20 +212217,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [84534] = 6, + sym__unquoted_pattern, + [86692] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5503), 1, - sym__newline, - STATE(2712), 1, + STATE(2767), 1, sym_comment, - STATE(2814), 1, - aux_sym__repeat_newline, - ACTIONS(5478), 13, + ACTIONS(5298), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210219,20 +212236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84565] = 6, + [86717] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2525), 1, sym__space, - ACTIONS(2631), 1, + ACTIONS(2581), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2713), 1, + STATE(2768), 1, sym_comment, - ACTIONS(2569), 13, + ACTIONS(2527), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210246,16 +212265,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84596] = 5, + [86748] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2714), 1, + STATE(2769), 1, sym_comment, - ACTIONS(5480), 14, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210268,18 +212283,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84625] = 5, - ACTIONS(3), 1, + [86773] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2715), 1, + ACTIONS(2583), 1, + sym__space, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(2770), 1, sym_comment, - ACTIONS(5482), 14, + ACTIONS(2585), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210292,17 +212311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [84654] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [86804] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2716), 1, + STATE(2771), 1, sym_comment, - ACTIONS(2501), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 14, + ACTIONS(5298), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210316,19 +212331,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [84681] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86829] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__space, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2717), 1, + STATE(2772), 1, sym_comment, - ACTIONS(2637), 13, + ACTIONS(1647), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1649), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210340,22 +212356,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [84712] = 7, + anon_sym_DOT_DOT2, + [86856] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2647), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2718), 1, + STATE(2773), 1, sym_comment, - ACTIONS(5476), 12, + ACTIONS(5642), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210367,21 +212379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [84745] = 7, + [86885] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2648), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2719), 1, + STATE(2774), 1, sym_comment, - ACTIONS(5478), 12, + ACTIONS(5542), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210393,19 +212401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [84778] = 6, + [86912] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2720), 1, + STATE(2775), 1, sym_comment, - ACTIONS(5480), 13, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210418,22 +212422,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [84809] = 7, - ACTIONS(103), 1, + [86937] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - ACTIONS(5508), 1, - sym_short_flag_identifier, - STATE(2721), 1, + STATE(2776), 1, sym_comment, - STATE(3126), 1, - sym__flag_equals_value, - ACTIONS(5338), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5336), 11, + ACTIONS(5298), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210445,18 +212443,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [84842] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86962] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + STATE(2777), 1, + sym_comment, + ACTIONS(2385), 2, sym__space, - ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2722), 1, - sym_comment, - ACTIONS(996), 13, + ACTIONS(2387), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210470,18 +212470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84873] = 6, + sym__unquoted_pattern, + [86989] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(2591), 1, sym__space, - ACTIONS(2583), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2597), 1, sym__unquoted_pattern, - STATE(2723), 1, + STATE(2778), 1, sym_comment, - ACTIONS(1016), 13, + ACTIONS(2593), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210495,18 +212496,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84904] = 6, - ACTIONS(3), 1, + [87020] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2724), 1, + ACTIONS(5648), 1, + anon_sym_DOT_DOT2, + STATE(2779), 1, sym_comment, - ACTIONS(5482), 13, + ACTIONS(2134), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5650), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2136), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210518,22 +212521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [84935] = 7, + [87051] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - ACTIONS(5512), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2725), 1, + STATE(2780), 1, sym_comment, - ACTIONS(5510), 12, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210546,20 +212539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [84968] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5414), 1, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(5416), 1, anon_sym_xor2, - ACTIONS(5516), 1, anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2726), 1, + [87076] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2781), 1, sym_comment, - ACTIONS(5514), 12, + ACTIONS(5652), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210572,14 +212561,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85001] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87101] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2652), 1, - aux_sym__repeat_newline, - STATE(2727), 1, + ACTIONS(5654), 1, + anon_sym_EQ2, + ACTIONS(5656), 1, + sym_short_flag_identifier, + STATE(2782), 1, sym_comment, - ACTIONS(5518), 15, + STATE(3220), 1, + sym__flag_equals_value, + ACTIONS(5454), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5452), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210591,24 +212591,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [85028] = 6, + [87134] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5396), 1, + ACTIONS(5638), 1, anon_sym_DOT_DOT2, - STATE(2728), 1, + STATE(2783), 1, sym_comment, - ACTIONS(5346), 2, + ACTIONS(5462), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5398), 2, + ACTIONS(5640), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5344), 11, + ACTIONS(5460), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210620,14 +212616,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [85059] = 4, + [87165] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2653), 1, + ACTIONS(5658), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5660), 1, + aux_sym__immediate_decimal_token5, + STATE(2784), 1, + sym_comment, + ACTIONS(1740), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [87196] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5590), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2729), 1, + STATE(2785), 1, sym_comment, - ACTIONS(5520), 15, + ACTIONS(5636), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210640,17 +212663,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85086] = 4, - ACTIONS(3), 1, + [87225] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2700), 1, - aux_sym__repeat_newline, - STATE(2730), 1, + ACTIONS(5496), 1, + anon_sym_EQ2, + ACTIONS(5662), 1, + sym__space, + STATE(2786), 1, sym_comment, - ACTIONS(5522), 15, + STATE(2913), 1, + aux_sym_attribute_repeat1, + ACTIONS(5492), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210663,18 +212689,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + [87256] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5555), 1, anon_sym_and2, + ACTIONS(5576), 1, anon_sym_xor2, + ACTIONS(5596), 1, anon_sym_or2, - [85113] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2702), 1, + STATE(2751), 1, aux_sym__repeat_newline, - STATE(2731), 1, + STATE(2787), 1, sym_comment, - ACTIONS(5524), 15, - sym__newline, + ACTIONS(5664), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210686,21 +212717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [85140] = 6, + [87291] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5526), 1, - sym__newline, - STATE(2714), 1, + ACTIONS(5612), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2732), 1, + STATE(2788), 1, sym_comment, - ACTIONS(5522), 13, + ACTIONS(5636), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210712,21 +212741,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [85171] = 6, - ACTIONS(103), 1, + [87322] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2144), 1, - sym__space, - STATE(2733), 1, - sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2146), 13, + ACTIONS(2903), 1, sym__newline, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + ACTIONS(5600), 1, + anon_sym_or2, + STATE(2752), 1, + aux_sym__repeat_newline, + STATE(2789), 1, + sym_comment, + ACTIONS(5666), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210738,19 +212769,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [85202] = 6, + [87357] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2148), 1, + ACTIONS(1004), 1, sym__space, - STATE(2734), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2790), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2150), 13, + ACTIONS(994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210764,20 +212794,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85233] = 7, + [87388] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5612), 1, anon_sym_xor2, - ACTIONS(5516), 1, + ACTIONS(5620), 1, anon_sym_or2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2735), 1, + STATE(2791), 1, sym_comment, - ACTIONS(5529), 12, + ACTIONS(5668), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210790,18 +212820,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85266] = 6, - ACTIONS(103), 1, + [87421] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2170), 1, - sym__space, - STATE(2736), 1, + ACTIONS(5544), 1, + anon_sym_and2, + ACTIONS(5546), 1, + anon_sym_xor2, + ACTIONS(5624), 1, + anon_sym_or2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2792), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2172), 13, + ACTIONS(5670), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210814,19 +212846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [85297] = 6, - ACTIONS(103), 1, + [87454] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2072), 1, - sym__space, - STATE(2737), 1, + STATE(2793), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2074), 13, + ACTIONS(5672), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210840,18 +212865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85328] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5674), 1, anon_sym_and2, - ACTIONS(5531), 1, - sym__newline, - STATE(2656), 1, - aux_sym__repeat_newline, - STATE(2738), 1, + STATE(2794), 1, sym_comment, - ACTIONS(5518), 13, + ACTIONS(5652), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210863,20 +212888,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [85359] = 6, + [87506] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5532), 1, anon_sym_and2, - ACTIONS(5534), 1, - sym__newline, - STATE(2657), 1, - aux_sym__repeat_newline, - STATE(2739), 1, + STATE(2795), 1, sym_comment, - ACTIONS(5520), 13, + ACTIONS(5672), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210888,20 +212911,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [85390] = 6, + [87533] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5674), 1, anon_sym_and2, - ACTIONS(5537), 1, - sym__newline, - STATE(2715), 1, - aux_sym__repeat_newline, - STATE(2740), 1, + ACTIONS(5676), 1, + anon_sym_xor2, + STATE(2796), 1, sym_comment, - ACTIONS(5524), 13, + ACTIONS(5652), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210913,22 +212936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - [85421] = 7, + [87562] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5532), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5534), 1, anon_sym_xor2, - STATE(2720), 1, - aux_sym__repeat_newline, - STATE(2741), 1, + STATE(2797), 1, sym_comment, - ACTIONS(5522), 12, + ACTIONS(5672), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210940,21 +212960,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [85454] = 7, + [87591] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2724), 1, - aux_sym__repeat_newline, - STATE(2742), 1, + STATE(2798), 1, sym_comment, - ACTIONS(5524), 12, + ACTIONS(5678), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210966,19 +212980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [85487] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(5544), 1, anon_sym_xor2, - ACTIONS(5546), 1, anon_sym_or2, - STATE(2743), 1, + [87616] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2799), 1, sym_comment, - ACTIONS(5540), 13, + ACTIONS(5680), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210992,18 +213003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85518] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5550), 1, anon_sym_and2, - ACTIONS(5552), 1, anon_sym_xor2, - ACTIONS(5554), 1, anon_sym_or2, - STATE(2744), 1, + [87641] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5674), 1, + anon_sym_and2, + STATE(2800), 1, sym_comment, - ACTIONS(5548), 13, + ACTIONS(5678), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211017,12 +213027,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85549] = 3, + anon_sym_xor2, + anon_sym_or2, + [87668] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2745), 1, + ACTIONS(5532), 1, + anon_sym_and2, + STATE(2801), 1, sym_comment, - ACTIONS(4680), 16, + ACTIONS(5680), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211036,23 +213050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85574] = 7, + [87695] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5674), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5676), 1, anon_sym_xor2, - STATE(2660), 1, - aux_sym__repeat_newline, - STATE(2746), 1, + STATE(2802), 1, sym_comment, - ACTIONS(5518), 12, + ACTIONS(5678), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211064,15 +213074,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [85607] = 4, + [87724] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2747), 1, + ACTIONS(5532), 1, + anon_sym_and2, + ACTIONS(5534), 1, + anon_sym_xor2, + STATE(2803), 1, sym_comment, - STATE(2757), 1, - aux_sym__repeat_newline, - ACTIONS(5556), 15, + ACTIONS(5680), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211085,17 +213098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - [85634] = 4, + [87753] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2748), 1, - sym_comment, - STATE(2758), 1, + ACTIONS(5544), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5558), 15, + STATE(2804), 1, + sym_comment, + ACTIONS(5644), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211108,21 +213122,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85661] = 6, + [87782] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5560), 1, - sym__newline, - STATE(2749), 1, + STATE(2805), 1, sym_comment, - STATE(2766), 1, + STATE(2854), 1, aux_sym__repeat_newline, - ACTIONS(5556), 13, + ACTIONS(5682), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211134,20 +213144,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85692] = 6, + [87809] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5563), 1, - sym__newline, - STATE(2750), 1, - sym_comment, - STATE(2767), 1, + ACTIONS(5612), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5558), 13, + STATE(2806), 1, + sym_comment, + ACTIONS(5642), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211159,22 +213171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [85723] = 7, - ACTIONS(3), 1, + [87840] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2751), 1, + STATE(2807), 1, sym_comment, - STATE(2773), 1, - aux_sym__repeat_newline, - ACTIONS(5556), 12, + ACTIONS(1768), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1770), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211185,22 +213194,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [85756] = 7, + anon_sym_DOT_DOT2, + [87867] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5546), 1, anon_sym_xor2, - STATE(2752), 1, - sym_comment, - STATE(2774), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5558), 12, + STATE(2808), 1, + sym_comment, + ACTIONS(5644), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211213,20 +213220,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85789] = 7, + [87898] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(5686), 1, + anon_sym_EQ, + ACTIONS(5689), 1, sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2661), 1, + ACTIONS(5692), 1, + anon_sym_COLON, + ACTIONS(5695), 1, + anon_sym_DASH2, + STATE(4167), 1, aux_sym__repeat_newline, - STATE(2753), 1, + STATE(2809), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(3319), 2, + sym_param_type, + sym_param_value, + ACTIONS(5684), 8, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [87935] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2810), 1, sym_comment, - ACTIONS(5520), 12, + STATE(2855), 1, + aux_sym__repeat_newline, + ACTIONS(5697), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211238,15 +213268,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [85822] = 4, - ACTIONS(3), 1, + [87962] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2662), 1, - aux_sym__repeat_newline, - STATE(2754), 1, + ACTIONS(1750), 1, + sym__space, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2811), 1, sym_comment, - ACTIONS(5566), 15, + ACTIONS(1752), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211259,18 +213295,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [85849] = 4, + anon_sym_RBRACE, + [87993] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2663), 1, - aux_sym__repeat_newline, - STATE(2755), 1, - sym_comment, - ACTIONS(5568), 15, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5701), 1, sym__newline, + STATE(2812), 1, + sym_comment, + STATE(2858), 1, + aux_sym__repeat_newline, + ACTIONS(5682), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211282,20 +213319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85876] = 4, - ACTIONS(103), 1, + [88024] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2756), 1, + STATE(2725), 1, + aux_sym__repeat_newline, + STATE(2813), 1, sym_comment, - ACTIONS(1641), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 12, + ACTIONS(5553), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211307,15 +213340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [85903] = 4, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88051] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(2726), 1, aux_sym__repeat_newline, - STATE(2757), 1, + STATE(2814), 1, sym_comment, - ACTIONS(5570), 15, + ACTIONS(5560), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211331,14 +213367,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85930] = 4, + [88078] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(2762), 1, aux_sym__repeat_newline, - STATE(2758), 1, + STATE(2815), 1, sym_comment, - ACTIONS(5572), 15, + ACTIONS(5704), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211354,18 +213390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85957] = 6, + [88105] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5574), 1, - sym__newline, - STATE(2664), 1, + STATE(2764), 1, aux_sym__repeat_newline, - STATE(2759), 1, + STATE(2816), 1, sym_comment, - ACTIONS(5566), 13, + ACTIONS(5706), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211377,23 +213410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85988] = 7, - ACTIONS(103), 1, + [88132] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - ACTIONS(5577), 1, - sym_long_flag_identifier, - STATE(2760), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2817), 1, sym_comment, - STATE(3204), 1, - sym__flag_equals_value, - ACTIONS(4303), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4301), 11, + ACTIONS(5708), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211405,17 +213432,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [86021] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88159] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2761), 1, + ACTIONS(5674), 1, + anon_sym_and2, + ACTIONS(5676), 1, + anon_sym_xor2, + ACTIONS(5712), 1, + anon_sym_or2, + STATE(2818), 1, sym_comment, - ACTIONS(1822), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 12, + ACTIONS(5710), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211427,19 +213459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [86048] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [88190] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5581), 1, - sym__space, - STATE(2762), 1, + STATE(2819), 1, sym_comment, - STATE(4626), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5579), 13, + ACTIONS(4749), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211453,22 +213480,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [86079] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, anon_sym_and2, - ACTIONS(5404), 1, anon_sym_xor2, - ACTIONS(5585), 1, anon_sym_or2, - STATE(2763), 1, + [88215] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5714), 1, + sym__newline, + STATE(2820), 1, sym_comment, - STATE(2778), 1, + STATE(2859), 1, aux_sym__repeat_newline, - ACTIONS(5583), 11, + ACTIONS(5697), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211480,16 +213506,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86114] = 4, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [88246] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2764), 1, + ACTIONS(5717), 1, + anon_sym_DOT, + ACTIONS(5719), 1, + aux_sym__immediate_decimal_token5, + STATE(2821), 1, sym_comment, - ACTIONS(1726), 2, - sym__space, + ACTIONS(1752), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1750), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(1728), 14, + [88277] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, sym__newline, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2822), 1, + sym_comment, + STATE(2862), 1, + aux_sym__repeat_newline, + ACTIONS(5682), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211501,20 +213558,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [86141] = 6, + anon_sym_or2, + [88310] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5587), 1, + ACTIONS(2903), 1, sym__newline, - STATE(2665), 1, - aux_sym__repeat_newline, - STATE(2765), 1, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2823), 1, sym_comment, - ACTIONS(5568), 13, + STATE(2864), 1, + aux_sym__repeat_newline, + ACTIONS(5697), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211526,18 +213584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [86172] = 5, + [88343] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2766), 1, + STATE(2824), 1, sym_comment, - ACTIONS(5570), 14, + ACTIONS(5721), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211550,19 +213605,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86201] = 5, + [88370] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5555), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5723), 1, + sym__newline, + STATE(2773), 1, aux_sym__repeat_newline, - STATE(2767), 1, + STATE(2825), 1, sym_comment, - ACTIONS(5572), 14, - sym__newline, + ACTIONS(5704), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211576,16 +213633,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86230] = 4, - ACTIONS(103), 1, + [88401] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2768), 1, - sym_comment, - ACTIONS(1802), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 14, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5726), 1, sym__newline, + STATE(2804), 1, + aux_sym__repeat_newline, + STATE(2826), 1, + sym_comment, + ACTIONS(5706), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211597,17 +213656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [86257] = 4, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [88432] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2769), 1, + ACTIONS(1810), 1, + sym__unquoted_pattern, + STATE(2827), 1, sym_comment, - ACTIONS(1870), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 14, + ACTIONS(908), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211619,50 +213678,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [86284] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, anon_sym_and2, - ACTIONS(5438), 1, anon_sym_xor2, - ACTIONS(5592), 1, anon_sym_or2, - STATE(2735), 1, - aux_sym__repeat_newline, - STATE(2770), 1, - sym_comment, - ACTIONS(5590), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [86319] = 7, - ACTIONS(3), 1, + [88459] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2666), 1, - aux_sym__repeat_newline, - STATE(2771), 1, + ACTIONS(5654), 1, + anon_sym_EQ2, + ACTIONS(5729), 1, + sym_long_flag_identifier, + STATE(2828), 1, sym_comment, - ACTIONS(5566), 12, + STATE(3221), 1, + sym__flag_equals_value, + ACTIONS(4282), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4280), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211673,22 +213707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [86352] = 7, + [88492] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2667), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2772), 1, + STATE(2829), 1, sym_comment, - ACTIONS(5568), 12, + ACTIONS(5708), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211700,19 +213729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [86385] = 6, + [88521] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2773), 1, + STATE(2830), 1, sym_comment, - ACTIONS(5570), 13, + ACTIONS(5721), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211725,20 +213753,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [86416] = 6, + [88550] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5576), 1, anon_sym_xor2, - STATE(540), 1, + STATE(2806), 1, aux_sym__repeat_newline, - STATE(2774), 1, + STATE(2831), 1, sym_comment, - ACTIONS(5572), 13, - sym__newline, + ACTIONS(5704), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211751,15 +213781,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86447] = 4, + [88583] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2670), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2808), 1, aux_sym__repeat_newline, - STATE(2775), 1, + STATE(2832), 1, sym_comment, - ACTIONS(5400), 15, - sym__newline, + ACTIONS(5706), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211771,25 +213806,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [86474] = 8, + [88616] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(4901), 1, + anon_sym_DASH2, + ACTIONS(5335), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2570), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2833), 1, + sym_comment, + STATE(2871), 1, + sym_cell_path, + ACTIONS(4899), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - ACTIONS(5585), 1, - anon_sym_or2, - STATE(2725), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88651] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2776), 1, + STATE(2834), 1, sym_comment, - ACTIONS(5594), 11, + ACTIONS(5588), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211801,22 +213854,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86509] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88678] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5612), 1, anon_sym_xor2, - ACTIONS(5592), 1, - anon_sym_or2, - STATE(2726), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2777), 1, + STATE(2835), 1, sym_comment, - ACTIONS(5596), 11, + ACTIONS(5708), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211828,20 +213881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86544] = 7, + anon_sym_or2, + [88709] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5546), 1, anon_sym_xor2, - ACTIONS(5512), 1, - anon_sym_or2, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2778), 1, + STATE(2836), 1, sym_comment, - ACTIONS(5598), 12, + ACTIONS(5721), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211854,12 +213906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86577] = 3, + anon_sym_or2, + [88740] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2779), 1, + STATE(2834), 1, + aux_sym__repeat_newline, + STATE(2837), 1, sym_comment, - ACTIONS(5150), 16, + ACTIONS(5731), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211872,16 +213927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86602] = 3, + [88767] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2780), 1, + STATE(2699), 1, + aux_sym__repeat_newline, + STATE(2838), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(5733), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211894,18 +213950,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86627] = 4, + [88794] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2671), 1, + ACTIONS(5544), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2781), 1, + STATE(2839), 1, sym_comment, - ACTIONS(5458), 15, + ACTIONS(5542), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211918,15 +213975,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86654] = 3, - ACTIONS(3), 1, + [88823] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2782), 1, + ACTIONS(5456), 1, + anon_sym_EQ2, + ACTIONS(5737), 1, + sym__space, + STATE(2840), 1, sym_comment, - ACTIONS(5150), 16, + STATE(3072), 1, + sym__flag_equals_value, + ACTIONS(5735), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211940,16 +214002,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86679] = 3, + [88854] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2783), 1, - sym_comment, - ACTIONS(5269), 16, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5739), 1, sym__newline, + STATE(2711), 1, + aux_sym__repeat_newline, + STATE(2841), 1, + sym_comment, + ACTIONS(5731), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211961,22 +214025,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86704] = 4, - ACTIONS(103), 1, + [88885] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2784), 1, - sym_comment, - ACTIONS(1874), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1876), 12, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5742), 1, sym__newline, + STATE(2712), 1, + aux_sym__repeat_newline, + STATE(2842), 1, + sym_comment, + ACTIONS(5733), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211987,40 +214049,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [86731] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - ACTIONS(5602), 1, - anon_sym_DASH2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2785), 1, - sym_comment, - STATE(2826), 1, - sym_cell_path, - ACTIONS(5600), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [86766] = 3, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [88916] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2786), 1, + ACTIONS(4477), 1, + sym__space, + ACTIONS(5456), 1, + anon_sym_EQ2, + STATE(2843), 1, sym_comment, - ACTIONS(5150), 16, + STATE(3112), 1, + sym__flag_equals_value, + ACTIONS(4475), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212034,49 +214077,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86791] = 9, + [88947] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5606), 1, - anon_sym_EQ, - ACTIONS(5609), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(5612), 1, - anon_sym_COLON, - ACTIONS(5615), 1, - anon_sym_DASH2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(2787), 2, - sym_comment, - aux_sym_parameter_repeat1, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5604), 8, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [86828] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5617), 1, - sym__newline, - STATE(2674), 1, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2746), 1, aux_sym__repeat_newline, - STATE(2788), 1, + STATE(2844), 1, sym_comment, - ACTIONS(5400), 13, + ACTIONS(5731), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212088,21 +214102,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [86859] = 6, - ACTIONS(103), 1, + [88980] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5340), 1, - anon_sym_EQ2, - ACTIONS(5622), 1, - sym__space, - STATE(2789), 1, - sym_comment, - STATE(2955), 1, - sym__flag_equals_value, - ACTIONS(5620), 13, + ACTIONS(2903), 1, sym__newline, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2759), 1, + aux_sym__repeat_newline, + STATE(2845), 1, + sym_comment, + ACTIONS(5733), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212114,19 +214128,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [86890] = 6, - ACTIONS(103), 1, + anon_sym_or2, + [89013] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, - sym__space, - ACTIONS(5340), 1, - anon_sym_EQ2, - STATE(2790), 1, + STATE(2760), 1, + aux_sym__repeat_newline, + STATE(2846), 1, sym_comment, - STATE(3070), 1, - sym__flag_equals_value, - ACTIONS(4365), 13, + ACTIONS(5745), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212139,23 +214149,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [86921] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89040] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1851), 1, anon_sym_DASH2, - ACTIONS(5178), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2562), 1, sym_path, - STATE(2556), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2791), 1, + STATE(2847), 1, sym_comment, - STATE(2826), 1, + STATE(2871), 1, sym_cell_path, - ACTIONS(1850), 11, + ACTIONS(1848), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212167,22 +214179,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [86956] = 8, + [89075] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(1878), 1, anon_sym_DASH2, - ACTIONS(5178), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2562), 1, sym_path, - STATE(2556), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2792), 1, + STATE(2848), 1, sym_comment, - STATE(2934), 1, + STATE(3104), 1, sym_cell_path, - ACTIONS(1862), 11, + ACTIONS(1876), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212194,22 +214206,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [86991] = 8, + [89110] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, + ACTIONS(1846), 1, anon_sym_DASH2, - ACTIONS(5178), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2562), 1, sym_path, - STATE(2556), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2793), 1, + STATE(2849), 1, sym_comment, - STATE(2843), 1, + STATE(2961), 1, sym_cell_path, - ACTIONS(1866), 11, + ACTIONS(1844), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212221,22 +214233,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87026] = 8, + [89145] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(1870), 1, anon_sym_DASH2, - ACTIONS(5178), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2562), 1, sym_path, - STATE(2556), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2794), 1, + STATE(2850), 1, sym_comment, - STATE(3032), 1, + STATE(3121), 1, sym_cell_path, - ACTIONS(1878), 11, + ACTIONS(1868), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212248,22 +214260,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87061] = 8, + [89180] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1884), 1, + ACTIONS(1840), 1, anon_sym_DASH2, - ACTIONS(5178), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2562), 1, sym_path, - STATE(2556), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2795), 1, + STATE(2851), 1, sym_comment, - STATE(2899), 1, + STATE(2933), 1, sym_cell_path, - ACTIONS(1882), 11, + ACTIONS(1838), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212275,22 +214287,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87096] = 8, + [89215] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(1874), 1, anon_sym_DASH2, - ACTIONS(5178), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2562), 1, sym_path, - STATE(2556), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2796), 1, + STATE(2852), 1, sym_comment, - STATE(2914), 1, + STATE(2877), 1, sym_cell_path, - ACTIONS(1858), 11, + ACTIONS(1872), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212302,12 +214314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87131] = 3, + [89250] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2797), 1, + STATE(2774), 1, + aux_sym__repeat_newline, + STATE(2853), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(5747), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212320,16 +214334,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87156] = 3, + [89277] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2798), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2854), 1, sym_comment, - ACTIONS(5624), 16, + ACTIONS(5749), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212342,16 +214357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87181] = 3, + [89304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2799), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2855), 1, sym_comment, - ACTIONS(5626), 16, + ACTIONS(5751), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212364,19 +214380,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87206] = 4, + [89331] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, + ACTIONS(5555), 1, anon_sym_and2, - STATE(2800), 1, - sym_comment, - ACTIONS(5624), 15, + ACTIONS(5753), 1, sym__newline, + STATE(2785), 1, + aux_sym__repeat_newline, + STATE(2856), 1, + sym_comment, + ACTIONS(5745), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212388,18 +214406,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [87233] = 4, + [89362] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5562), 1, anon_sym_and2, - STATE(2801), 1, - sym_comment, - ACTIONS(5626), 15, + ACTIONS(5756), 1, sym__newline, + STATE(2839), 1, + aux_sym__repeat_newline, + STATE(2857), 1, + sym_comment, + ACTIONS(5747), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212411,19 +214431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [87260] = 5, + [89393] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - STATE(2802), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2858), 1, sym_comment, - ACTIONS(5624), 14, + ACTIONS(5749), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212436,18 +214455,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [87289] = 5, + [89422] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - STATE(2803), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2859), 1, sym_comment, - ACTIONS(5626), 14, + ACTIONS(5751), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212460,20 +214479,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [87318] = 6, + [89451] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5628), 1, + ACTIONS(2903), 1, sym__newline, - STATE(2675), 1, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2788), 1, aux_sym__repeat_newline, - STATE(2804), 1, + STATE(2860), 1, sym_comment, - ACTIONS(5458), 13, + ACTIONS(5745), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212485,15 +214506,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [87349] = 3, + [89484] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2805), 1, - sym_comment, - ACTIONS(5631), 16, + ACTIONS(2903), 1, sym__newline, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2698), 1, + aux_sym__repeat_newline, + STATE(2861), 1, + sym_comment, + ACTIONS(5747), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212505,18 +214532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [87374] = 4, + [89517] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5590), 1, + anon_sym_and2, + ACTIONS(5612), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2806), 1, + STATE(2862), 1, sym_comment, - ACTIONS(5406), 15, + ACTIONS(5749), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212529,17 +214557,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [87401] = 4, - ACTIONS(3), 1, + [89548] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2807), 1, + ACTIONS(5759), 1, + anon_sym_DOT_DOT2, + STATE(2863), 1, sym_comment, - ACTIONS(5412), 15, + ACTIONS(2066), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5761), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2068), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212551,16 +214583,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87428] = 3, + [89579] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2808), 1, + ACTIONS(5544), 1, + anon_sym_and2, + ACTIONS(5546), 1, + anon_sym_xor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2864), 1, sym_comment, - ACTIONS(5633), 16, + ACTIONS(5751), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212573,18 +214607,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [87453] = 4, - ACTIONS(3), 1, + [89610] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - STATE(2809), 1, + ACTIONS(5763), 1, + anon_sym_DOT_DOT2, + STATE(2865), 1, sym_comment, - ACTIONS(5631), 15, + ACTIONS(2074), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5765), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2076), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212596,18 +214633,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [87480] = 4, + [89641] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - STATE(2810), 1, + STATE(2709), 1, + aux_sym__repeat_newline, + STATE(2866), 1, sym_comment, - ACTIONS(5633), 15, + ACTIONS(5567), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212620,19 +214653,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87507] = 5, + [89668] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, + STATE(2714), 1, aux_sym__repeat_newline, - STATE(2811), 1, + STATE(2867), 1, sym_comment, - ACTIONS(5406), 14, + ACTIONS(5572), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212645,18 +214676,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87536] = 5, - ACTIONS(3), 1, + [89695] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - STATE(2812), 1, + ACTIONS(1018), 1, + sym__space, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2868), 1, sym_comment, - ACTIONS(5631), 14, + ACTIONS(1002), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212670,17 +214704,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or2, - [87565] = 5, - ACTIONS(3), 1, + [89726] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - STATE(2813), 1, + ACTIONS(2166), 1, + sym__space, + ACTIONS(5767), 1, + anon_sym_LBRACK2, + STATE(2869), 1, sym_comment, - ACTIONS(5633), 14, + ACTIONS(2168), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212694,17 +214727,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or2, - [87594] = 5, + [89754] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2814), 1, + STATE(2870), 1, sym_comment, - ACTIONS(5412), 14, + ACTIONS(5298), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212716,17 +214745,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87623] = 4, + [89778] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(2815), 1, + ACTIONS(1846), 1, + anon_sym_DASH2, + STATE(2871), 1, + sym_comment, + ACTIONS(1844), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89804] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2872), 1, sym_comment, - ACTIONS(968), 15, + ACTIONS(5385), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212742,19 +214791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87650] = 6, - ACTIONS(103), 1, + [89828] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2816), 1, + ACTIONS(5769), 1, + anon_sym_and2, + STATE(2873), 1, sym_comment, - ACTIONS(1964), 2, + ACTIONS(5672), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(1966), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212766,16 +214811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [87680] = 4, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [89854] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2817), 1, + STATE(2874), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(4749), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212787,23 +214831,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [87706] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89878] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5635), 1, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5773), 1, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2818), 1, + ACTIONS(5775), 1, + anon_sym_RBRACK, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2875), 1, sym_comment, - STATE(3365), 1, + STATE(3196), 1, + aux_sym_parameter_parens_repeat1, + STATE(3270), 1, aux_sym__repeat_newline, - ACTIONS(5638), 3, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [89930] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(2876), 1, + sym_comment, + ACTIONS(2583), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2585), 11, + sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [89960] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2638), 1, + anon_sym_DASH2, + STATE(2877), 1, + sym_comment, + ACTIONS(2636), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2303), 9, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89986] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2878), 1, + sym_comment, + ACTIONS(1770), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1768), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [90012] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5769), 1, + anon_sym_and2, + ACTIONS(5785), 1, + anon_sym_xor2, + STATE(2879), 1, + sym_comment, + ACTIONS(5680), 13, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -212813,16 +214959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [87738] = 4, - ACTIONS(103), 1, + anon_sym_or2, + [90040] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2819), 1, + STATE(2880), 1, sym_comment, - ACTIONS(1870), 3, + ACTIONS(5678), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212834,16 +214978,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [87764] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90064] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2820), 1, - sym_comment, - ACTIONS(2084), 2, + ACTIONS(5662), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2086), 13, + STATE(2881), 1, + sym_comment, + STATE(2913), 1, + aux_sym_attribute_repeat1, + ACTIONS(5492), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212857,39 +215004,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87790] = 6, + [90092] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DASH2, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - STATE(2821), 1, - sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5640), 11, - anon_sym_EQ, + ACTIONS(5771), 1, sym_identifier, + ACTIONS(5773), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5777), 1, anon_sym_DOLLAR, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - [87820] = 4, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(5787), 1, + anon_sym_PIPE, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2882), 1, + sym_comment, + STATE(2966), 1, + aux_sym__repeat_newline, + STATE(3142), 1, + aux_sym_parameter_parens_repeat1, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [90144] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2822), 1, + STATE(2883), 1, sym_comment, - ACTIONS(5257), 2, + ACTIONS(1816), 3, + ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5259), 13, + anon_sym_LPAREN2, + ACTIONS(1818), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212901,21 +215060,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [87846] = 6, + sym__unquoted_pattern, + [90170] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - ACTIONS(5652), 1, - anon_sym_or2, - STATE(2823), 1, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5773), 1, + sym__newline, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(5789), 1, + anon_sym_RPAREN, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2884), 1, + sym_comment, + STATE(3128), 1, + aux_sym_parameter_parens_repeat1, + STATE(3270), 1, + aux_sym__repeat_newline, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [90222] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2885), 1, sym_comment, - ACTIONS(5540), 12, + ACTIONS(1018), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1002), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212927,19 +215120,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [87876] = 6, + [90252] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - STATE(2824), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(2886), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2144), 2, + ACTIONS(2533), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2146), 11, + ACTIONS(2535), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212951,63 +215144,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [87906] = 5, - ACTIONS(3), 1, + [90282] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5654), 1, - aux_sym__immediate_decimal_token5, - STATE(2825), 1, + STATE(2887), 1, sym_comment, - ACTIONS(1804), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1854), 3, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, - [87934] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1868), 1, - anon_sym_DASH2, - STATE(2826), 1, - sym_comment, - ACTIONS(1866), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(1856), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [87960] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + sym__unquoted_pattern, + [90308] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, + ACTIONS(5769), 1, anon_sym_and2, - ACTIONS(5658), 1, + ACTIONS(5785), 1, anon_sym_xor2, - ACTIONS(5660), 1, - anon_sym_or2, - STATE(2827), 1, + STATE(2888), 1, sym_comment, - ACTIONS(5548), 12, + ACTIONS(5672), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213020,46 +215188,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [87990] = 14, + anon_sym_or2, + [90336] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5662), 1, - sym_identifier, - ACTIONS(5667), 1, - anon_sym_DOLLAR, - ACTIONS(5670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5673), 1, - anon_sym_DASH_DASH, - ACTIONS(5676), 1, - anon_sym_DASH2, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - STATE(2828), 2, + STATE(2889), 1, sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(5665), 3, + ACTIONS(1572), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1574), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - [88036] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [90362] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5287), 1, + ACTIONS(5134), 1, anon_sym_EQ2, - STATE(2829), 1, + STATE(2890), 1, sym_comment, - ACTIONS(5289), 14, + ACTIONS(5136), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -213074,19 +215233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [88062] = 6, + [90388] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - STATE(2830), 1, + STATE(2891), 1, sym_comment, - STATE(3135), 1, - sym__flag_equals_value, - ACTIONS(4367), 2, - ts_builtin_sym_end, + ACTIONS(5140), 2, sym__space, - ACTIONS(4365), 11, + anon_sym_EQ2, + ACTIONS(5142), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213098,13 +215253,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [88092] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90414] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2831), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(2892), 1, sym_comment, - ACTIONS(4680), 15, + ACTIONS(2001), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2003), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213116,22 +215279,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88116] = 6, - ACTIONS(103), 1, + [90444] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2832), 1, + ACTIONS(5793), 1, + anon_sym_DASH2, + ACTIONS(5795), 1, + anon_sym_DOT_DOT2, + STATE(2893), 1, sym_comment, - STATE(4646), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5581), 2, + ACTIONS(5797), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5791), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [90474] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2894), 1, + sym_comment, + ACTIONS(5385), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5579), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213143,15 +215321,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [88146] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90498] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2833), 1, + STATE(2895), 1, sym_comment, - ACTIONS(5241), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5243), 13, + ACTIONS(5298), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213163,21 +215342,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [88172] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90522] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2834), 1, + STATE(2896), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2148), 2, + ACTIONS(5385), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2150), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213189,14 +215363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [88202] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90546] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5253), 1, + ACTIONS(5070), 1, anon_sym_EQ2, - STATE(2835), 1, + STATE(2897), 1, sym_comment, - ACTIONS(5255), 14, + ACTIONS(5072), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -213211,16 +215388,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [88228] = 4, + [90572] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2836), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(2898), 1, sym_comment, - ACTIONS(2501), 3, + ACTIONS(2525), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 12, + ACTIONS(2527), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213232,20 +215412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [88254] = 6, - ACTIONS(103), 1, + [90602] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2837), 1, + STATE(2899), 1, sym_comment, - ACTIONS(994), 2, + ACTIONS(5652), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(996), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213257,19 +215430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [88284] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90626] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2838), 1, + STATE(2900), 1, sym_comment, - ACTIONS(1018), 2, + ACTIONS(2385), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1016), 11, + anon_sym_LPAREN2, + ACTIONS(2387), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213281,16 +215454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [88314] = 5, + sym__unquoted_pattern, + [90652] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(908), 1, sym__space, - STATE(2839), 1, + ACTIONS(5172), 1, + sym__unquoted_pattern, + STATE(2901), 1, sym_comment, - STATE(2867), 1, - aux_sym_attribute_repeat1, - ACTIONS(5679), 13, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213304,16 +215478,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88342] = 5, + [90680] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5799), 1, + anon_sym_LBRACK2, + STATE(2902), 1, + sym_comment, + ACTIONS(2168), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2166), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [90708] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(2840), 1, + STATE(2903), 1, sym_comment, - STATE(2857), 1, - aux_sym_attribute_repeat1, - ACTIONS(5681), 13, + ACTIONS(5122), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5124), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213327,12 +215523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88370] = 3, + [90734] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2841), 1, + STATE(2904), 1, sym_comment, - ACTIONS(5150), 15, + ACTIONS(5672), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213348,16 +215544,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88394] = 4, - ACTIONS(103), 1, + [90758] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_EQ2, - STATE(2842), 1, + ACTIONS(5801), 1, + anon_sym_and2, + STATE(2905), 1, sym_comment, - ACTIONS(5243), 14, + ACTIONS(5652), 14, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, + [90784] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5662), 1, sym__space, + STATE(2906), 1, + sym_comment, + STATE(2930), 1, + aux_sym_attribute_repeat1, + ACTIONS(5803), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213368,37 +215587,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [88420] = 4, + [90812] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2521), 1, + ACTIONS(5795), 1, + anon_sym_DOT_DOT2, + ACTIONS(5807), 1, anon_sym_DASH2, - STATE(2843), 1, + STATE(2907), 1, sym_comment, - ACTIONS(2519), 14, + ACTIONS(5797), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5805), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [88446] = 3, + [90842] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2844), 1, + ACTIONS(5795), 1, + anon_sym_DOT_DOT2, + ACTIONS(5811), 1, + anon_sym_DASH2, + STATE(2908), 1, + sym_comment, + ACTIONS(5797), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5809), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [90872] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + ACTIONS(5813), 1, + anon_sym_DOT, + STATE(2909), 1, + sym_comment, + STATE(3660), 1, + sym__immediate_decimal, + ACTIONS(5815), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5817), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3753), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [90912] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5654), 1, + anon_sym_EQ2, + STATE(2910), 1, sym_comment, - ACTIONS(5269), 15, + STATE(3189), 1, + sym__flag_equals_value, + ACTIONS(4477), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4475), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [90942] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2911), 1, + sym_comment, + ACTIONS(2130), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2132), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213410,16 +215710,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88470] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90968] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2845), 1, + ACTIONS(5654), 1, + anon_sym_EQ2, + STATE(2912), 1, sym_comment, - ACTIONS(5150), 15, + STATE(3139), 1, + sym__flag_equals_value, + ACTIONS(5737), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5735), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213431,25 +215736,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88494] = 7, - ACTIONS(3), 1, + [90998] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5683), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2846), 1, + ACTIONS(5662), 1, + sym__space, + STATE(2913), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5686), 3, + STATE(2924), 1, + aux_sym_attribute_repeat1, + ACTIONS(5819), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -213459,81 +215757,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [88526] = 17, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91026] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5496), 1, + anon_sym_EQ2, + ACTIONS(5821), 1, sym__newline, - ACTIONS(5692), 1, - anon_sym_PIPE, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2847), 1, - sym_comment, - STATE(2852), 1, - aux_sym__repeat_newline, - STATE(3179), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [88578] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5702), 1, - aux_sym_env_var_token1, - STATE(2848), 1, - sym_comment, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(4745), 2, - sym_val_string, - sym_val_interpolated, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [88622] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2849), 1, + ACTIONS(5823), 1, + sym__space, + STATE(2914), 1, sym_comment, - ACTIONS(5704), 15, - anon_sym_else, - anon_sym_catch, - sym__newline, + STATE(3085), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5825), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213545,14 +215784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [88646] = 3, - ACTIONS(3), 1, + [91058] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2850), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2915), 1, sym_comment, - ACTIONS(5269), 15, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2094), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2096), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213564,16 +215808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88670] = 3, - ACTIONS(3), 1, + [91088] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2851), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2916), 1, sym_comment, - ACTIONS(5150), 15, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2098), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2100), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213585,51 +215832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88694] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5706), 1, - anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2852), 1, - sym_comment, - STATE(3151), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [88746] = 3, - ACTIONS(3), 1, + [91118] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2853), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(2917), 1, sym_comment, - ACTIONS(5269), 15, + ACTIONS(2011), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2013), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213641,15 +215856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88770] = 3, + [91148] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2854), 1, + STATE(2918), 1, sym_comment, - ACTIONS(5624), 15, + ACTIONS(5298), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213665,13 +215877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88794] = 3, - ACTIONS(3), 1, + [91172] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2855), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2919), 1, sym_comment, - ACTIONS(5626), 15, + ACTIONS(1004), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(994), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213683,17 +215901,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88818] = 4, + [91202] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, + ACTIONS(5827), 1, + sym_identifier, + ACTIONS(5832), 1, + anon_sym_DOLLAR, + ACTIONS(5835), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5841), 1, + anon_sym_DASH2, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + STATE(2920), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + ACTIONS(5830), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + [91248] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5801), 1, anon_sym_and2, - STATE(2856), 1, + ACTIONS(5844), 1, + anon_sym_xor2, + STATE(2921), 1, sym_comment, - ACTIONS(5624), 14, + ACTIONS(5652), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213706,17 +215955,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, anon_sym_or2, - [88844] = 4, + [91276] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5719), 1, + aux_sym__immediate_decimal_token5, + STATE(2922), 1, + sym_comment, + ACTIONS(1752), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1750), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [91304] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5710), 1, + ACTIONS(5496), 1, + anon_sym_EQ2, + ACTIONS(5846), 1, + ts_builtin_sym_end, + ACTIONS(5848), 1, sym__space, - STATE(2857), 2, + STATE(2923), 1, sym_comment, + STATE(3126), 1, aux_sym_attribute_repeat1, - ACTIONS(5708), 13, + ACTIONS(5492), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213728,17 +216004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [88870] = 4, - ACTIONS(3), 1, + [91336] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - STATE(2858), 1, + ACTIONS(5852), 1, + sym__space, + STATE(2924), 2, sym_comment, - ACTIONS(5626), 14, - ts_builtin_sym_end, + aux_sym_attribute_repeat1, + ACTIONS(5850), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213750,19 +216024,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [88896] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91362] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - STATE(2859), 1, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5773), 1, + sym__newline, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(5855), 1, + anon_sym_RBRACK, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2875), 1, + aux_sym__repeat_newline, + STATE(2925), 1, + sym_comment, + STATE(3229), 1, + aux_sym_parameter_parens_repeat1, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [91414] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + aux_sym__immediate_decimal_token5, + STATE(2926), 1, + sym_comment, + ACTIONS(1818), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1816), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [91442] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2927), 1, sym_comment, - ACTIONS(5624), 13, + STATE(4669), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5586), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5584), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213774,18 +216108,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [88924] = 5, + [91472] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - STATE(2860), 1, + STATE(2928), 1, sym_comment, - ACTIONS(5626), 13, - ts_builtin_sym_end, + ACTIONS(5859), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213797,13 +216127,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [88952] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91496] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2861), 1, + ACTIONS(5801), 1, + anon_sym_and2, + STATE(2929), 1, sym_comment, - ACTIONS(5631), 15, + ACTIONS(5678), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213816,16 +216149,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88976] = 3, - ACTIONS(3), 1, + [91522] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2862), 1, + ACTIONS(5662), 1, + sym__space, + STATE(2924), 1, + aux_sym_attribute_repeat1, + STATE(2930), 1, sym_comment, - ACTIONS(5633), 15, - ts_builtin_sym_end, + ACTIONS(5861), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213837,42 +216172,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [89000] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2863), 1, - sym_comment, - ACTIONS(1556), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1558), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [89026] = 4, + anon_sym_RBRACE, + [91550] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - STATE(2864), 1, - sym_comment, - ACTIONS(5631), 14, - ts_builtin_sym_end, + ACTIONS(5863), 1, sym__newline, + STATE(789), 1, + aux_sym__pipe_separator, + STATE(2931), 1, + sym_comment, + STATE(3433), 1, + aux_sym__repeat_newline, + ACTIONS(5866), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -213882,18 +216199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [89052] = 4, - ACTIONS(3), 1, + [91582] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - STATE(2865), 1, + ACTIONS(5118), 1, + anon_sym_EQ2, + STATE(2932), 1, sym_comment, - ACTIONS(5633), 14, - ts_builtin_sym_end, + ACTIONS(5120), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213904,64 +216219,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [89078] = 6, + anon_sym_RBRACE, + anon_sym_COLON2, + [91608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - ACTIONS(5715), 1, + ACTIONS(1874), 1, anon_sym_DASH2, - STATE(2866), 1, + STATE(2933), 1, sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5713), 11, + ACTIONS(1872), 14, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89108] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(2857), 1, - aux_sym_attribute_repeat1, - STATE(2867), 1, - sym_comment, - ACTIONS(5717), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [89136] = 4, + [91634] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2868), 1, + STATE(2934), 1, sym_comment, - ACTIONS(1824), 2, + ACTIONS(1649), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1822), 13, + ACTIONS(1647), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -213975,36 +216265,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [89162] = 4, - ACTIONS(103), 1, + [91660] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_EQ2, - STATE(2869), 1, + ACTIONS(2068), 1, + anon_sym_DASH2, + ACTIONS(5868), 1, + anon_sym_DOT_DOT2, + STATE(2935), 1, sym_comment, - ACTIONS(5223), 14, + ACTIONS(5870), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2066), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - sym__space, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [89188] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [91690] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5122), 1, anon_sym_EQ2, - STATE(2870), 1, + STATE(2936), 1, sym_comment, - ACTIONS(5239), 14, + ACTIONS(5124), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -214019,19 +216311,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [89214] = 6, + [91716] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - ACTIONS(5721), 1, + ACTIONS(2076), 1, anon_sym_DASH2, - STATE(2871), 1, + ACTIONS(5872), 1, + anon_sym_DOT_DOT2, + STATE(2937), 1, sym_comment, - ACTIONS(5646), 2, + ACTIONS(5874), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5719), 11, + ACTIONS(2074), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -214043,64 +216335,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89244] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2872), 1, - sym_comment, - ACTIONS(2635), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2637), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [89274] = 6, + [91746] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2873), 1, + STATE(2938), 1, sym_comment, - ACTIONS(2575), 2, - ts_builtin_sym_end, + ACTIONS(5100), 2, sym__space, - ACTIONS(2577), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [89304] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5257), 1, anon_sym_EQ2, - STATE(2874), 1, - sym_comment, - ACTIONS(5259), 14, + ACTIONS(5102), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214111,21 +216355,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [89330] = 6, + [91772] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2597), 1, sym__unquoted_pattern, - STATE(2875), 1, + STATE(2939), 1, sym_comment, - ACTIONS(1974), 2, + ACTIONS(2591), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1976), 11, + ACTIONS(2593), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214137,19 +216381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [89360] = 6, + [91802] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2622), 1, sym__unquoted_pattern, - STATE(2876), 1, + STATE(2940), 1, sym_comment, ACTIONS(1706), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1619), 11, + ACTIONS(1604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214161,19 +216405,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [89390] = 6, - ACTIONS(103), 1, + [91832] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2877), 1, + ACTIONS(5801), 1, + anon_sym_and2, + ACTIONS(5844), 1, + anon_sym_xor2, + ACTIONS(5876), 1, + anon_sym_or2, + STATE(2941), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2170), 2, + ACTIONS(5710), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2172), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214185,19 +216429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [89420] = 6, - ACTIONS(103), 1, + [91862] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2878), 1, + ACTIONS(5769), 1, + anon_sym_and2, + ACTIONS(5785), 1, + anon_sym_xor2, + ACTIONS(5878), 1, + anon_sym_or2, + STATE(2942), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2072), 2, + ACTIONS(5530), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2074), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214209,87 +216453,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [89450] = 17, + [91892] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(2084), 1, + anon_sym_DASH2, + ACTIONS(5880), 1, + anon_sym_DOT_DOT2, + STATE(2943), 1, + sym_comment, + ACTIONS(5882), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2082), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5690), 1, sym__newline, - ACTIONS(5694), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5723), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2879), 1, - sym_comment, - STATE(3198), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89502] = 17, + [91922] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5773), 1, sym__newline, - ACTIONS(5694), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5725), 1, - anon_sym_RPAREN, - STATE(2467), 1, + ACTIONS(5884), 1, + anon_sym_RBRACK, + STATE(2559), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2644), 1, sym__param_name, - STATE(2880), 1, + STATE(2944), 1, sym_comment, - STATE(3083), 1, + STATE(3266), 1, aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, + STATE(3270), 1, aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, sym_param_opt, - STATE(3582), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [89554] = 5, + [91974] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2128), 1, - sym__space, - ACTIONS(5727), 1, - anon_sym_LBRACK2, - STATE(2881), 1, + ACTIONS(5140), 1, + anon_sym_EQ2, + STATE(2945), 1, sym_comment, - ACTIONS(2130), 13, + ACTIONS(5142), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214300,21 +216532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [89582] = 6, + anon_sym_COLON2, + [92000] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2882), 1, + STATE(2946), 1, sym_comment, - ACTIONS(1736), 2, - ts_builtin_sym_end, + ACTIONS(5134), 2, sym__space, - ACTIONS(1738), 11, + anon_sym_EQ2, + ACTIONS(5136), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214326,62 +216554,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [89612] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token5, - STATE(2883), 1, - sym_comment, - ACTIONS(1738), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [89640] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [92026] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_DASH2, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - STATE(2884), 1, + STATE(2947), 1, sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2150), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2152), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [89670] = 4, + anon_sym_RBRACE, + [92052] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2885), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2948), 1, sym_comment, - ACTIONS(5253), 2, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2102), 2, + ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5255), 13, + ACTIONS(2104), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214393,80 +216602,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [92082] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5886), 1, + sym__newline, + STATE(789), 1, + aux_sym__pipe_separator, + STATE(2949), 1, + sym_comment, + STATE(3433), 1, + aux_sym__repeat_newline, + ACTIONS(5889), 3, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [89696] = 6, - ACTIONS(3), 1, + ACTIONS(2261), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [92114] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2154), 1, - anon_sym_DASH2, - ACTIONS(5731), 1, - anon_sym_DOT_DOT2, - STATE(2886), 1, + STATE(2950), 1, sym_comment, - ACTIONS(5733), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5070), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5072), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [89726] = 17, + anon_sym_RBRACE, + [92140] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5773), 1, sym__newline, - ACTIONS(5694), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5735), 1, - anon_sym_RBRACK, - STATE(2467), 1, + ACTIONS(5891), 1, + anon_sym_RPAREN, + STATE(2559), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2644), 1, sym__param_name, - STATE(2887), 1, - sym_comment, - STATE(2901), 1, + STATE(2884), 1, aux_sym__repeat_newline, - STATE(3171), 1, + STATE(2951), 1, + sym_comment, + STATE(3255), 1, aux_sym_parameter_parens_repeat1, - STATE(3269), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, + STATE(3351), 1, sym_param_opt, - STATE(3582), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [89778] = 6, + [92192] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - STATE(2888), 1, + STATE(2952), 1, sym_comment, - ACTIONS(2523), 2, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2106), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2525), 11, + ACTIONS(2108), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214478,127 +216708,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [89808] = 17, + [92222] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5773), 1, sym__newline, - ACTIONS(5694), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5737), 1, - anon_sym_RPAREN, - STATE(2467), 1, + ACTIONS(5893), 1, + anon_sym_RBRACK, + STATE(2559), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2644), 1, sym__param_name, - STATE(2889), 1, - sym_comment, - STATE(2902), 1, + STATE(2944), 1, aux_sym__repeat_newline, - STATE(3174), 1, + STATE(2953), 1, + sym_comment, + STATE(3222), 1, aux_sym_parameter_parens_repeat1, - STATE(3269), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, + STATE(3351), 1, sym_param_opt, - STATE(3582), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [89860] = 5, + [92274] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - STATE(2890), 1, - sym_comment, - ACTIONS(5633), 13, - ts_builtin_sym_end, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5773), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [89888] = 3, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(5895), 1, + anon_sym_RPAREN, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2954), 1, + sym_comment, + STATE(2960), 1, + aux_sym__repeat_newline, + STATE(3251), 1, + aux_sym_parameter_parens_repeat1, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [92326] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2891), 1, + ACTIONS(1604), 1, + anon_sym_DASH2, + ACTIONS(5795), 1, + anon_sym_DOT_DOT2, + STATE(2955), 1, sym_comment, - ACTIONS(5739), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(5797), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1706), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [89912] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5741), 1, - anon_sym_DOT, - STATE(2892), 1, - sym_comment, - STATE(3577), 1, - sym__immediate_decimal, - ACTIONS(5743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3636), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [89952] = 6, - ACTIONS(103), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [92356] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - STATE(2893), 1, + STATE(2956), 1, sym_comment, - STATE(3081), 1, - sym__flag_equals_value, - ACTIONS(5622), 2, + ACTIONS(5680), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5620), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214610,19 +216820,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [89982] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92380] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2894), 1, + STATE(2957), 1, sym_comment, - ACTIONS(2567), 2, + ACTIONS(1738), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2569), 11, + anon_sym_LPAREN2, + ACTIONS(1740), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214634,42 +216844,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [90012] = 7, + sym__unquoted_pattern, + [92406] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5330), 1, + ACTIONS(5100), 1, anon_sym_EQ2, - ACTIONS(5747), 1, - ts_builtin_sym_end, - ACTIONS(5749), 1, - sym__space, - STATE(2895), 1, + STATE(2958), 1, sym_comment, - STATE(3009), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 11, + ACTIONS(5102), 14, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [90044] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, sym__space, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2896), 1, - sym_comment, - ACTIONS(868), 13, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214680,17 +216865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [90072] = 4, - ACTIONS(103), 1, + anon_sym_COLON2, + [92432] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2897), 1, + ACTIONS(5769), 1, + anon_sym_and2, + STATE(2959), 1, sym_comment, - ACTIONS(5287), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5289), 13, + ACTIONS(5680), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214702,39 +216887,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [90098] = 5, + anon_sym_xor2, + anon_sym_or2, + [92458] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5751), 1, - anon_sym_LBRACK2, - STATE(2898), 1, - sym_comment, - ACTIONS(2130), 2, - anon_sym_LBRACK, - anon_sym_DASH2, - ACTIONS(2128), 12, - anon_sym_EQ, + ACTIONS(5771), 1, sym_identifier, + ACTIONS(5773), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5777), 1, anon_sym_DOLLAR, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - [90126] = 4, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(5897), 1, + anon_sym_RPAREN, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2960), 1, + sym_comment, + STATE(3133), 1, + aux_sym_parameter_parens_repeat1, + STATE(3270), 1, + aux_sym__repeat_newline, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [92510] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(2519), 1, anon_sym_DASH2, - STATE(2899), 1, + STATE(2961), 1, sym_comment, - ACTIONS(1858), 14, + ACTIONS(2517), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -214749,108 +216946,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90152] = 4, + [92536] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2900), 1, + STATE(2962), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1641), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5899), 15, + anon_sym_else, + anon_sym_catch, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [90178] = 17, + anon_sym_RBRACE, + [92560] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5801), 1, + anon_sym_and2, + ACTIONS(5844), 1, + anon_sym_xor2, + STATE(2963), 1, + sym_comment, + ACTIONS(5678), 13, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + [92588] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(2136), 1, + anon_sym_DASH2, + ACTIONS(5901), 1, + anon_sym_DOT_DOT2, + STATE(2964), 1, + sym_comment, + ACTIONS(5903), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2134), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5690), 1, sym__newline, - ACTIONS(5694), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5753), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2901), 1, + [92618] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(864), 1, + sym_raw_string_begin, + ACTIONS(3217), 1, + anon_sym_DQUOTE, + ACTIONS(3219), 1, + anon_sym_SQUOTE, + ACTIONS(3221), 1, + anon_sym_BQUOTE, + ACTIONS(3223), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3225), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5905), 1, + aux_sym_env_var_token1, + STATE(2965), 1, sym_comment, - STATE(3202), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90230] = 17, + STATE(3009), 1, + sym__inter_single_quotes, + STATE(3012), 1, + sym__inter_double_quotes, + STATE(4772), 2, + sym_val_string, + sym_val_interpolated, + STATE(2499), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [92662] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5773), 1, sym__newline, - ACTIONS(5694), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5755), 1, - anon_sym_RPAREN, - STATE(2467), 1, + ACTIONS(5907), 1, + anon_sym_PIPE, + STATE(2559), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2644), 1, sym__param_name, - STATE(2902), 1, + STATE(2966), 1, sym_comment, - STATE(3172), 1, + STATE(3134), 1, aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, + STATE(3270), 1, aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, sym_param_opt, - STATE(3582), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [90282] = 4, + [92714] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2903), 1, + STATE(2967), 1, sym_comment, - ACTIONS(1726), 3, - ts_builtin_sym_end, + ACTIONS(5118), 2, sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 12, + anon_sym_EQ2, + ACTIONS(5120), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214862,16 +217100,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [90308] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92740] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2904), 1, + ACTIONS(5280), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5909), 1, + anon_sym_DOT, + STATE(2968), 1, sym_comment, - ACTIONS(2092), 2, + ACTIONS(1750), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2094), 13, + ACTIONS(1752), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214883,18 +217126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [90334] = 5, + [92770] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(2521), 1, sym__space, - STATE(2840), 1, - aux_sym_attribute_repeat1, - STATE(2905), 1, + STATE(2969), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(2523), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214908,19 +217147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90362] = 6, + [92795] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(5913), 1, + anon_sym_AT2, + ACTIONS(5915), 1, anon_sym_DASH2, - ACTIONS(5757), 1, - anon_sym_DOT_DOT2, - STATE(2906), 1, + STATE(2970), 1, sym_comment, - ACTIONS(5759), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 11, + STATE(3378), 1, + sym_param_completer, + ACTIONS(5911), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -214932,15 +217170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90392] = 4, - ACTIONS(103), 1, + [92824] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2907), 1, + STATE(2971), 1, sym_comment, - ACTIONS(5221), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5223), 13, + ACTIONS(5859), 14, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214952,17 +217190,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [90418] = 4, + [92847] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2908), 1, - sym_comment, - ACTIONS(5237), 2, + ACTIONS(5919), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5239), 13, + STATE(2972), 1, + sym_comment, + ACTIONS(5917), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214976,19 +217211,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90444] = 6, + [92872] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(5807), 1, anon_sym_DASH2, - ACTIONS(5761), 1, - anon_sym_DOT_DOT2, - STATE(2909), 1, + STATE(2973), 1, sym_comment, - ACTIONS(5763), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 11, + STATE(4704), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5805), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -215000,55 +217234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90474] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5765), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2879), 1, - aux_sym__repeat_newline, - STATE(2910), 1, - sym_comment, - STATE(3077), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90526] = 7, + [92901] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(5923), 1, sym__space, - STATE(2911), 1, + STATE(2974), 1, sym_comment, - STATE(3033), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5771), 11, + ACTIONS(5921), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215060,98 +217254,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90558] = 17, + anon_sym_RBRACE, + [92926] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5925), 1, + anon_sym_else, + ACTIONS(5927), 1, sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5773), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2880), 1, - aux_sym__repeat_newline, - STATE(2912), 1, - sym_comment, - STATE(3088), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90610] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2122), 1, - anon_sym_DASH2, - ACTIONS(5775), 1, - anon_sym_DOT_DOT2, - STATE(2913), 1, + STATE(2975), 1, sym_comment, - ACTIONS(5777), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(3032), 1, + aux_sym__repeat_newline, + ACTIONS(5930), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90640] = 4, + [92955] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2593), 1, - anon_sym_DASH2, - STATE(2914), 1, - sym_comment, - ACTIONS(2591), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(5932), 1, + anon_sym_else, + ACTIONS(5934), 1, sym__newline, + STATE(2976), 1, + sym_comment, + STATE(3034), 1, + aux_sym__repeat_newline, + ACTIONS(5937), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90666] = 5, - ACTIONS(3), 1, + [92984] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - STATE(2915), 1, + ACTIONS(5939), 1, + anon_sym_LBRACK2, + STATE(2977), 1, sym_comment, - ACTIONS(5631), 13, + ACTIONS(2166), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2168), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215163,42 +217323,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [90694] = 6, + [93011] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5783), 1, - anon_sym_DASH2, - STATE(2916), 1, - sym_comment, - STATE(3241), 1, - sym_param_completer, - ACTIONS(5779), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5941), 1, + anon_sym_else, + ACTIONS(5943), 1, sym__newline, + STATE(2978), 1, + sym_comment, + STATE(3055), 1, + aux_sym__repeat_newline, + ACTIONS(5946), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90723] = 6, + [93040] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(5586), 1, sym__space, - STATE(2917), 1, + STATE(2979), 1, sym_comment, - STATE(3043), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5785), 11, + ACTIONS(5584), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215210,21 +217366,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90752] = 7, + anon_sym_RBRACE, + [93065] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5787), 1, + ACTIONS(5948), 1, + anon_sym_catch, + ACTIONS(5950), 1, sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(2918), 1, + STATE(2980), 1, sym_comment, - STATE(3365), 1, + STATE(3060), 1, aux_sym__repeat_newline, - ACTIONS(5790), 2, + ACTIONS(5953), 11, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215234,18 +217389,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [90783] = 6, + anon_sym_RPAREN, + [93094] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(5955), 1, anon_sym_else, - ACTIONS(5794), 1, + ACTIONS(5957), 1, sym__newline, - STATE(2919), 1, + STATE(2981), 1, sym_comment, - STATE(3047), 1, + STATE(3125), 1, aux_sym__repeat_newline, - ACTIONS(5797), 11, + ACTIONS(5960), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215257,14 +217413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90812] = 4, + [93123] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2268), 1, + ACTIONS(2134), 1, sym__space, - STATE(2920), 1, + STATE(2982), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(2136), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215278,14 +217434,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90837] = 4, + [93148] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(2445), 1, sym__space, - STATE(2921), 1, + STATE(2983), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(2447), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215299,16 +217455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90862] = 4, + [93173] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2922), 1, - sym_comment, - ACTIONS(5241), 3, - ts_builtin_sym_end, + ACTIONS(4582), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5243), 11, + STATE(2984), 1, + sym_comment, + ACTIONS(4580), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215320,82 +217474,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [90887] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_DOT, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2923), 1, - sym_comment, - ACTIONS(1738), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1736), 10, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90916] = 4, + anon_sym_RBRACE, + [93198] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_DASH2, - STATE(2924), 1, - sym_comment, - ACTIONS(2254), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(1918), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90941] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_DASH2, - STATE(2925), 1, + ACTIONS(5962), 1, + anon_sym_catch, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2985), 1, sym_comment, - ACTIONS(2254), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1916), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90966] = 5, + [93227] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5799), 1, + STATE(2986), 1, + sym_comment, + ACTIONS(5140), 3, ts_builtin_sym_end, - ACTIONS(5801), 1, sym__space, - STATE(2926), 2, - sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5708), 11, + anon_sym_EQ2, + ACTIONS(5142), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215407,64 +217520,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [90993] = 6, - ACTIONS(3), 1, + [93252] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5806), 1, - anon_sym_DASH2, - STATE(2927), 1, + ACTIONS(2612), 1, + sym__space, + STATE(2987), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5804), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2614), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91022] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [93277] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5810), 1, - anon_sym_DASH2, - STATE(2928), 1, + ACTIONS(2616), 1, + sym__space, + STATE(2988), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5808), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2618), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91051] = 6, + anon_sym_RBRACE, + [93302] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5747), 1, - ts_builtin_sym_end, - ACTIONS(5749), 1, + ACTIONS(2513), 1, sym__space, - STATE(2929), 1, + STATE(2989), 1, sym_comment, - STATE(3009), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 11, + ACTIONS(2515), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215476,14 +217581,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91080] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93327] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2517), 1, sym__space, - STATE(2930), 1, + STATE(2990), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(2519), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215497,14 +217604,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91105] = 4, + [93352] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5965), 1, + anon_sym_catch, + ACTIONS(5967), 1, + sym__newline, + STATE(2991), 1, + sym_comment, + STATE(3030), 1, + aux_sym__repeat_newline, + ACTIONS(5970), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [93381] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2202), 1, + ACTIONS(2461), 1, sym__space, - STATE(2931), 1, + STATE(2992), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(2463), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215518,14 +217648,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91130] = 4, + [93406] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2591), 1, - sym__space, - STATE(2932), 1, + STATE(2993), 1, sym_comment, - ACTIONS(2593), 13, + ACTIONS(2130), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2132), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215537,16 +217669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [91155] = 4, + [93431] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4651), 1, + ACTIONS(5848), 1, sym__space, - STATE(2933), 1, + ACTIONS(5972), 1, + ts_builtin_sym_end, + STATE(2994), 1, sym_comment, - ACTIONS(4649), 13, + STATE(3020), 1, + aux_sym_attribute_repeat1, + ACTIONS(5861), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215558,39 +217692,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [91180] = 4, + [93460] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - anon_sym_DASH2, - STATE(2934), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(2995), 1, sym_comment, - ACTIONS(2202), 13, - anon_sym_EQ, - sym_identifier, + STATE(3955), 1, + sym__immediate_decimal, + ACTIONS(5974), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5976), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(871), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91205] = 4, + anon_sym_EQ_GT, + [93497] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2935), 1, - sym_comment, - ACTIONS(2084), 3, - ts_builtin_sym_end, + ACTIONS(2465), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2086), 11, + STATE(2996), 1, + sym_comment, + ACTIONS(2467), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215602,39 +217738,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91230] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2609), 1, - anon_sym_DASH2, - STATE(2936), 1, + STATE(2997), 1, sym_comment, - ACTIONS(2607), 13, + ACTIONS(2387), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(2385), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91255] = 6, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [93547] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(5812), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2937), 1, + ACTIONS(2545), 1, + sym__space, + STATE(2998), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2547), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215646,21 +217781,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91284] = 7, + anon_sym_RBRACE, + [93572] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5683), 1, + ACTIONS(1604), 1, + anon_sym_DASH2, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_record, + STATE(2999), 1, + sym_comment, + ACTIONS(1706), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2938), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93601] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3000), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5686), 2, + ACTIONS(5134), 3, ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5136), 11, + sym__newline, anon_sym_SEMI, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215670,36 +217826,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91315] = 3, + [93626] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2939), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2003), 1, + anon_sym_DASH2, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(3001), 1, sym_comment, - ACTIONS(5704), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + ACTIONS(2001), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [91338] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93655] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2940), 1, + STATE(3002), 1, sym_comment, - ACTIONS(5287), 3, + ACTIONS(5100), 3, ts_builtin_sym_end, sym__space, anon_sym_EQ2, - ACTIONS(5289), 11, + ACTIONS(5102), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215711,41 +217870,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91363] = 10, + [93680] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2941), 1, + ACTIONS(2499), 1, + anon_sym_DASH2, + STATE(3003), 1, sym_comment, - STATE(3635), 1, - sym__immediate_decimal, - ACTIONS(5743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3634), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 4, - anon_sym_if, + ACTIONS(2497), 13, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [91400] = 4, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93705] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2513), 1, + ACTIONS(866), 1, anon_sym_DASH2, - STATE(2942), 1, + STATE(3004), 1, sym_comment, - ACTIONS(2511), 13, + ACTIONS(908), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215759,14 +217912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91425] = 4, + [93730] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2517), 1, + ACTIONS(2499), 1, anon_sym_DASH2, - STATE(2943), 1, + STATE(3005), 1, sym_comment, - ACTIONS(2515), 13, + ACTIONS(2497), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215780,18 +217933,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91450] = 6, + [93755] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_else, - ACTIONS(5817), 1, + ACTIONS(1604), 1, + anon_sym_DASH2, + STATE(3006), 1, + sym_comment, + ACTIONS(1706), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(2944), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93780] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4586), 1, + sym__space, + STATE(3007), 1, sym_comment, - STATE(2963), 1, - aux_sym__repeat_newline, - ACTIONS(5820), 11, + ACTIONS(4584), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215803,41 +217974,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91479] = 6, + anon_sym_RBRACE, + [93805] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5824), 1, + ACTIONS(2128), 1, anon_sym_DASH2, - STATE(2945), 1, + STATE(3008), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5822), 11, + ACTIONS(2126), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91508] = 6, + [93830] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2497), 1, + sym__space, + STATE(3009), 1, + sym_comment, + ACTIONS(2499), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93855] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5826), 1, - anon_sym_catch, - ACTIONS(5828), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2535), 1, + anon_sym_DASH2, + STATE(3010), 1, + sym_comment, + ACTIONS(2533), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(2946), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93884] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5421), 1, + sym__space, + STATE(3011), 1, sym_comment, - STATE(3048), 1, - aux_sym__repeat_newline, - ACTIONS(5831), 11, + ACTIONS(5419), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215849,14 +218060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91537] = 4, + anon_sym_RBRACE, + [93909] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2218), 1, + ACTIONS(2497), 1, sym__space, - STATE(2947), 1, + STATE(3012), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(2499), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215870,18 +218082,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91562] = 6, + [93934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5835), 1, + ACTIONS(2013), 1, anon_sym_DASH2, - STATE(2948), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_record, + STATE(3013), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5833), 11, + ACTIONS(2011), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -215893,116 +218105,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91591] = 13, - ACTIONS(103), 1, + [93963] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2527), 1, + anon_sym_DASH2, + ACTIONS(2581), 1, anon_sym_LPAREN2, - ACTIONS(5839), 1, - anon_sym_DOT, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - STATE(2949), 1, + STATE(3014), 1, sym_comment, - STATE(3606), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(2525), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3863), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [91634] = 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93992] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5847), 1, - anon_sym_else, - ACTIONS(5849), 1, - sym__newline, - STATE(2950), 1, + STATE(3015), 1, sym_comment, - STATE(3057), 1, - aux_sym__repeat_newline, - ACTIONS(5852), 11, - anon_sym_SEMI, + ACTIONS(1740), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [91663] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [94017] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, + ACTIONS(2585), 1, anon_sym_DASH2, - STATE(2951), 1, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern_in_record, + STATE(3016), 1, sym_comment, - ACTIONS(2218), 13, + ACTIONS(2583), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91688] = 4, + [94046] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2260), 1, + ACTIONS(5913), 1, + anon_sym_AT2, + ACTIONS(5980), 1, anon_sym_DASH2, - STATE(2952), 1, + STATE(3017), 1, sym_comment, - ACTIONS(2258), 13, + STATE(3405), 1, + sym_param_completer, + ACTIONS(5978), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91713] = 7, + [94075] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5635), 1, + STATE(3018), 1, + sym_comment, + ACTIONS(1818), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1816), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2953), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [94100] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3019), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5638), 2, + ACTIONS(1856), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1854), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [94125] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5982), 1, + ts_builtin_sym_end, + ACTIONS(5984), 1, + sym__space, + STATE(3020), 2, + sym_comment, + aux_sym_attribute_repeat1, + ACTIONS(5850), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [94152] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3021), 1, + sym_comment, + ACTIONS(5070), 3, ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5072), 11, + sym__newline, anon_sym_SEMI, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216012,14 +218280,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91744] = 4, + [94177] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2264), 1, + ACTIONS(2503), 1, anon_sym_DASH2, - STATE(2954), 1, + STATE(3022), 1, sym_comment, - ACTIONS(2262), 13, + ACTIONS(2501), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -216033,15 +218301,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91769] = 4, - ACTIONS(103), 1, + [94202] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5856), 1, - sym__space, - STATE(2955), 1, + ACTIONS(2507), 1, + anon_sym_DASH2, + STATE(3023), 1, + sym_comment, + ACTIONS(2505), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94227] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1921), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(5987), 1, + sym__newline, + STATE(3024), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(5854), 13, + ACTIONS(1916), 11, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [94254] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5990), 1, + anon_sym_else, + ACTIONS(5992), 1, sym__newline, + STATE(2981), 1, + aux_sym__repeat_newline, + STATE(3025), 1, + sym_comment, + ACTIONS(5995), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216053,17 +218367,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [91794] = 4, - ACTIONS(103), 1, + [94283] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4633), 1, - sym__space, - STATE(2956), 1, - sym_comment, - ACTIONS(4631), 13, + ACTIONS(5997), 1, sym__newline, + STATE(730), 1, + aux_sym__pipe_separator, + STATE(3026), 1, + sym_comment, + STATE(3433), 1, + aux_sym__repeat_newline, + ACTIONS(6000), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216073,21 +218391,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [91819] = 6, - ACTIONS(103), 1, + [94314] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5749), 1, - sym__space, - ACTIONS(5858), 1, - ts_builtin_sym_end, - STATE(2926), 1, - aux_sym_attribute_repeat1, - STATE(2957), 1, + ACTIONS(2391), 1, + anon_sym_DASH2, + STATE(3027), 1, sym_comment, - ACTIONS(5717), 11, + ACTIONS(2389), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94339] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6002), 1, + anon_sym_else, + ACTIONS(6004), 1, sym__newline, + STATE(2978), 1, + aux_sym__repeat_newline, + STATE(3028), 1, + sym_comment, + ACTIONS(6007), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216098,17 +218434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91848] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [94368] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2958), 1, - sym_comment, - ACTIONS(5253), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5255), 11, + ACTIONS(6009), 1, + anon_sym_catch, + ACTIONS(6011), 1, sym__newline, + STATE(2980), 1, + aux_sym__repeat_newline, + STATE(3029), 1, + sym_comment, + ACTIONS(6014), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216119,17 +218457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91873] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [94397] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2959), 1, - sym_comment, - ACTIONS(5221), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5223), 11, + ACTIONS(6016), 1, + anon_sym_catch, + ACTIONS(6018), 1, sym__newline, + STATE(2985), 1, + aux_sym__repeat_newline, + STATE(3030), 1, + sym_comment, + ACTIONS(6021), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216140,72 +218480,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91898] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(5860), 1, - anon_sym_DOT, - ACTIONS(5862), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, - aux_sym__immediate_decimal_token2, - STATE(2960), 1, - sym_comment, - STATE(3598), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3872), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [91941] = 6, + anon_sym_RPAREN, + [94426] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5642), 1, + ACTIONS(2523), 1, anon_sym_DASH2, - STATE(2961), 1, + STATE(3031), 1, sym_comment, - STATE(4655), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5640), 11, + ACTIONS(2521), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91970] = 6, - ACTIONS(103), 1, + [94451] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5749), 1, - sym__space, - ACTIONS(5868), 1, - ts_builtin_sym_end, - STATE(2957), 1, - aux_sym_attribute_repeat1, - STATE(2962), 1, - sym_comment, - ACTIONS(5679), 11, + ACTIONS(6023), 1, + anon_sym_else, + ACTIONS(6025), 1, sym__newline, + STATE(3032), 1, + sym_comment, + STATE(3120), 1, + aux_sym__repeat_newline, + ACTIONS(6028), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216216,18 +218524,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91999] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [94480] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(5870), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2963), 1, + ACTIONS(2441), 1, + sym__space, + STATE(3033), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2443), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216239,18 +218545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92028] = 6, + anon_sym_RBRACE, + [94505] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(6030), 1, + anon_sym_else, + ACTIONS(6032), 1, sym__newline, - ACTIONS(5873), 1, - anon_sym_catch, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2964), 1, + STATE(3034), 1, sym_comment, - ACTIONS(1955), 11, + STATE(3043), 1, + aux_sym__repeat_newline, + ACTIONS(6035), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216262,16 +218569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92057] = 4, + [94534] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2965), 1, - sym_comment, - ACTIONS(5237), 3, - ts_builtin_sym_end, + ACTIONS(2066), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5239), 11, + STATE(3035), 1, + sym_comment, + ACTIONS(2068), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216283,18 +218588,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [92082] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94559] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5876), 1, - anon_sym_catch, - ACTIONS(5878), 1, - sym__newline, - STATE(2966), 1, + ACTIONS(2074), 1, + sym__space, + STATE(3036), 1, sym_comment, - STATE(3042), 1, - aux_sym__repeat_newline, - ACTIONS(5881), 11, + ACTIONS(2076), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216306,15 +218610,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92111] = 4, + anon_sym_RBRACE, + [94584] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5885), 1, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5823), 1, sym__space, - STATE(2967), 1, + STATE(3037), 1, sym_comment, - ACTIONS(5883), 13, - sym__newline, + STATE(3042), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6037), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216326,15 +218634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [92136] = 4, + [94613] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(2082), 1, sym__space, - STATE(2968), 1, + STATE(3038), 1, sym_comment, - ACTIONS(1860), 13, + ACTIONS(2084), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216348,37 +218655,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92161] = 6, + [94638] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(5715), 1, - anon_sym_DASH2, - STATE(2969), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + ACTIONS(6039), 1, + anon_sym_DOT, + STATE(3039), 1, sym_comment, - STATE(4655), 1, + STATE(3682), 1, + sym__immediate_decimal, + ACTIONS(6041), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6043), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3753), 2, sym__expr_parenthesized_immediate, - ACTIONS(5713), 11, - anon_sym_EQ, - sym_identifier, + sym_val_variable, + ACTIONS(1584), 3, sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [92190] = 4, + anon_sym_EQ_GT, + [94677] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5889), 1, + ACTIONS(2501), 1, sym__space, - STATE(2970), 1, + STATE(3040), 1, sym_comment, - ACTIONS(5887), 13, + ACTIONS(2503), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216392,14 +218704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92215] = 4, + [94702] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, + ACTIONS(2505), 1, sym__space, - STATE(2971), 1, + STATE(3041), 1, sym_comment, - ACTIONS(5344), 13, + ACTIONS(2507), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216413,15 +218725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92240] = 4, + [94727] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5893), 1, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5823), 1, sym__space, - STATE(2972), 1, + STATE(3042), 1, sym_comment, - ACTIONS(5891), 13, - sym__newline, + STATE(3058), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6045), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216433,16 +218748,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [92265] = 4, - ACTIONS(103), 1, + [94756] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5897), 1, - sym__space, - STATE(2973), 1, - sym_comment, - ACTIONS(5895), 13, + ACTIONS(1918), 1, sym__newline, + ACTIONS(6047), 1, + anon_sym_else, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3043), 1, + sym_comment, + ACTIONS(1916), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216454,15 +218771,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [92290] = 4, + [94785] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(3044), 1, + sym_comment, + STATE(3943), 1, + sym__immediate_decimal, + ACTIONS(5974), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5976), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(829), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [94822] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5901), 1, + ACTIONS(1844), 1, sym__space, - STATE(2974), 1, + STATE(3045), 1, sym_comment, - ACTIONS(5899), 13, + ACTIONS(1846), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216476,42 +218819,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92315] = 4, + [94847] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5905), 1, + ACTIONS(1584), 1, sym__space, - STATE(2975), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(6050), 1, + anon_sym_DOT, + ACTIONS(6052), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6054), 1, + aux_sym__immediate_decimal_token2, + STATE(3046), 1, sym_comment, - ACTIONS(5903), 13, + STATE(3642), 1, + sym__immediate_decimal, + ACTIONS(1588), 2, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [92340] = 7, + ACTIONS(6056), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3816), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [94890] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5907), 1, + ACTIONS(6058), 1, sym__newline, - STATE(788), 1, + STATE(730), 1, aux_sym__pipe_separator, - STATE(2976), 1, + STATE(3047), 1, sym_comment, - STATE(3365), 1, + STATE(3433), 1, aux_sym__repeat_newline, - ACTIONS(5910), 2, + ACTIONS(6061), 2, anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(2303), 9, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216521,14 +218873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [92371] = 4, + [94921] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2198), 1, + ACTIONS(6065), 1, sym__space, - STATE(2977), 1, + STATE(3048), 1, sym_comment, - ACTIONS(2200), 13, + ACTIONS(6063), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216542,35 +218894,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92396] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2978), 1, - sym_comment, - ACTIONS(2503), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(2501), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92421] = 4, + [94946] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(6069), 1, sym__space, - STATE(2979), 1, + STATE(3049), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(6067), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216584,18 +218915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92446] = 6, + [94971] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(2593), 1, anon_sym_DASH2, ACTIONS(2595), 1, anon_sym_LPAREN2, ACTIONS(2597), 1, sym__unquoted_pattern_in_record, - STATE(2980), 1, + STATE(3050), 1, sym_comment, - ACTIONS(1706), 11, + ACTIONS(2591), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216607,14 +218938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92475] = 4, + [95000] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(5391), 1, sym__space, - STATE(2981), 1, + STATE(3051), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(5389), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216628,14 +218959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92500] = 4, + [95025] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(1872), 1, sym__space, - STATE(2982), 1, + STATE(3052), 1, sym_comment, - ACTIONS(2122), 13, + ACTIONS(1874), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216649,59 +218980,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92525] = 6, - ACTIONS(3), 1, + [95050] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1966), 1, - anon_sym_DASH2, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2983), 1, + ACTIONS(4634), 1, + sym__space, + STATE(3053), 1, sym_comment, - ACTIONS(1964), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(4632), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [92554] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95075] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2984), 1, + STATE(3054), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2150), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2152), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92579] = 4, - ACTIONS(103), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [95100] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5914), 1, - sym__space, - STATE(2985), 1, - sym_comment, - ACTIONS(5912), 13, + ACTIONS(1918), 1, sym__newline, + ACTIONS(6071), 1, + anon_sym_else, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3055), 1, + sym_comment, + ACTIONS(1916), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216713,15 +219045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [92604] = 4, + [95129] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5916), 1, + ACTIONS(6074), 1, anon_sym_catch, - STATE(2986), 1, + STATE(3056), 1, sym_comment, - ACTIONS(5918), 13, + ACTIONS(6076), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216735,14 +219066,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92629] = 4, + [95154] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2222), 1, - sym__space, - STATE(2987), 1, + ACTIONS(5213), 1, + sym__unquoted_pattern, + STATE(3057), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(908), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216754,17 +219088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [92654] = 4, + [95181] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5581), 1, + ACTIONS(6078), 1, + sym__newline, + ACTIONS(6081), 1, sym__space, - STATE(2988), 1, + STATE(3058), 2, sym_comment, - ACTIONS(5579), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6084), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216776,109 +219110,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [92679] = 6, + [95208] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2577), 1, + ACTIONS(2178), 1, anon_sym_DASH2, - STATE(2989), 1, + STATE(3059), 1, sym_comment, - ACTIONS(2575), 11, + ACTIONS(2176), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92708] = 5, + [95233] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5922), 1, - anon_sym_LT, - ACTIONS(5924), 1, - anon_sym_DASH2, - STATE(2990), 1, - sym_comment, - ACTIONS(5920), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1918), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [92735] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1976), 1, - anon_sym_DASH2, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - STATE(2991), 1, + ACTIONS(6086), 1, + anon_sym_catch, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3060), 1, sym_comment, - ACTIONS(1974), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1916), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [92764] = 5, + [95262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5924), 1, + ACTIONS(2182), 1, anon_sym_DASH2, - ACTIONS(5926), 1, - anon_sym_LT, - STATE(2992), 1, + STATE(3061), 1, sym_comment, - ACTIONS(5920), 12, + ACTIONS(2180), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92791] = 6, + [95287] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2525), 1, + ACTIONS(1002), 1, anon_sym_DASH2, - ACTIONS(2629), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - STATE(2993), 1, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_record, + STATE(3062), 1, sym_comment, - ACTIONS(2523), 11, + ACTIONS(1018), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216890,38 +219198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92820] = 6, + [95316] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2569), 1, + ACTIONS(994), 1, anon_sym_DASH2, - ACTIONS(2631), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2604), 1, sym__unquoted_pattern_in_record, - STATE(2994), 1, - sym_comment, - ACTIONS(2567), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [92849] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2995), 1, + STATE(3063), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 12, + ACTIONS(1004), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216933,15 +219221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92874] = 4, + [95345] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2206), 1, + ACTIONS(2624), 1, sym__space, - STATE(2996), 1, + STATE(3064), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(2626), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216955,14 +219242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92899] = 4, + [95370] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(2628), 1, sym__space, - STATE(2997), 1, + STATE(3065), 1, sym_comment, - ACTIONS(2212), 13, + ACTIONS(2630), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216976,14 +219263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92924] = 4, + [95395] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2214), 1, + ACTIONS(2449), 1, sym__space, - STATE(2998), 1, + STATE(3066), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(2451), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216997,66 +219284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92949] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(5928), 1, - anon_sym_DOT, - STATE(2999), 1, - sym_comment, - STATE(3680), 1, - sym__immediate_decimal, - ACTIONS(5930), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5932), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3636), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [92988] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2270), 1, - anon_sym_DASH2, - STATE(3000), 1, - sym_comment, - ACTIONS(2268), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93013] = 5, + [95420] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(3001), 1, - sym_comment, - ACTIONS(968), 2, - ts_builtin_sym_end, + ACTIONS(2453), 1, sym__space, - ACTIONS(868), 11, + STATE(3067), 1, + sym_comment, + ACTIONS(2455), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217068,14 +219303,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [93040] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95445] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2274), 1, + ACTIONS(2626), 1, anon_sym_DASH2, - STATE(3002), 1, + STATE(3068), 1, sym_comment, - ACTIONS(2272), 13, + ACTIONS(2624), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -217089,127 +219326,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93065] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - sym__space, - STATE(3003), 1, - sym_comment, - ACTIONS(5249), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93090] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3004), 1, - sym_comment, - STATE(3926), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [93127] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5940), 1, - sym__space, - STATE(3005), 1, - sym_comment, - ACTIONS(5938), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93152] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2226), 1, - sym__space, - STATE(3006), 1, - sym_comment, - ACTIONS(2228), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93177] = 6, + [95470] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2637), 1, + ACTIONS(2630), 1, anon_sym_DASH2, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, - STATE(3007), 1, + STATE(3069), 1, sym_comment, - ACTIONS(2635), 11, + ACTIONS(2628), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93206] = 4, + [95495] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2230), 1, + ACTIONS(2457), 1, sym__space, - STATE(3008), 1, + STATE(3070), 1, sym_comment, - ACTIONS(2232), 13, + ACTIONS(2459), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217223,18 +219368,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93231] = 6, + [95520] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5749), 1, - sym__space, - ACTIONS(5942), 1, - ts_builtin_sym_end, - STATE(2926), 1, - aux_sym_attribute_repeat1, - STATE(3009), 1, + STATE(3071), 1, sym_comment, - ACTIONS(5681), 11, + ACTIONS(5118), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5120), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217246,14 +219389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [93260] = 4, + [95545] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2238), 1, + ACTIONS(6091), 1, sym__space, - STATE(3010), 1, + STATE(3072), 1, sym_comment, - ACTIONS(2240), 13, + ACTIONS(6089), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217267,14 +219410,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93285] = 4, + [95570] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2242), 1, + ACTIONS(5846), 1, + ts_builtin_sym_end, + ACTIONS(5848), 1, sym__space, - STATE(3011), 1, + STATE(3073), 1, sym_comment, - ACTIONS(2244), 13, + STATE(3126), 1, + aux_sym_attribute_repeat1, + ACTIONS(5492), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217286,39 +219433,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93310] = 4, - ACTIONS(103), 1, + [95599] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2246), 1, - sym__space, - STATE(3012), 1, + ACTIONS(4948), 1, + anon_sym_DASH2, + ACTIONS(6093), 1, + anon_sym_LT, + STATE(3074), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(4944), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [93335] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95626] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2250), 1, - sym__space, - STATE(3013), 1, - sym_comment, - ACTIONS(2252), 13, + ACTIONS(5886), 1, sym__newline, + STATE(789), 1, + aux_sym__pipe_separator, + STATE(3075), 1, + sym_comment, + STATE(3433), 1, + aux_sym__repeat_newline, + ACTIONS(5889), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -217328,20 +219479,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93360] = 6, + [95657] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6099), 1, + anon_sym_DOT, + ACTIONS(6101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6103), 1, + aux_sym__immediate_decimal_token2, + STATE(3076), 1, + sym_comment, + STATE(3652), 1, + sym__immediate_decimal, + ACTIONS(1588), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6105), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3901), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [95700] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(996), 1, - anon_sym_DASH2, - ACTIONS(2583), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(3014), 1, + ACTIONS(5793), 1, + anon_sym_DASH2, + STATE(3077), 1, sym_comment, - ACTIONS(994), 11, + STATE(4704), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5791), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217353,18 +219532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93389] = 6, + [95729] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, + ACTIONS(4948), 1, anon_sym_DASH2, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(3015), 1, + ACTIONS(6107), 1, + anon_sym_LT, + STATE(3078), 1, sym_comment, - ACTIONS(1018), 11, + ACTIONS(4944), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -217374,100 +219551,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93418] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5247), 1, - sym__space, - STATE(3016), 1, - sym_comment, - ACTIONS(5245), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93443] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2537), 1, - sym__space, - STATE(3017), 1, - sym_comment, - ACTIONS(2539), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93468] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2607), 1, - sym__space, - STATE(3018), 1, - sym_comment, - ACTIONS(2609), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93493] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - sym__space, - STATE(3019), 1, - sym_comment, - ACTIONS(2513), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93518] = 4, - ACTIONS(103), 1, + [95756] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - STATE(3020), 1, + STATE(3079), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(5899), 14, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217479,58 +219574,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93543] = 4, - ACTIONS(103), 1, + [95779] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - STATE(3021), 1, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(6111), 1, + anon_sym_DASH2, + STATE(3080), 1, sym_comment, - ACTIONS(1619), 13, + STATE(5098), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6109), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [93568] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95808] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2515), 1, - sym__space, - STATE(3022), 1, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(6115), 1, + anon_sym_DASH2, + STATE(3081), 1, sym_comment, - ACTIONS(2517), 13, + STATE(5098), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6113), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [93593] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95837] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2417), 1, sym__space, - STATE(3023), 1, + STATE(3082), 1, sym_comment, - ACTIONS(2114), 13, + ACTIONS(2419), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217544,18 +219641,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93618] = 6, + [95862] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(5721), 1, + ACTIONS(6119), 1, anon_sym_DASH2, - STATE(3024), 1, + STATE(3083), 1, sym_comment, - STATE(4655), 1, + STATE(5098), 1, sym__expr_parenthesized_immediate, - ACTIONS(5719), 11, + ACTIONS(6117), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217567,39 +219664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93647] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2519), 1, - sym__space, - STATE(3025), 1, - sym_comment, - ACTIONS(2521), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93672] = 6, + [95891] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5946), 1, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(6123), 1, anon_sym_DASH2, - STATE(3026), 1, + STATE(3084), 1, sym_comment, - STATE(3284), 1, - sym_param_completer, - ACTIONS(5944), 11, + STATE(5098), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6121), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217611,39 +219687,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93701] = 4, + [95920] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2505), 1, - sym__space, - STATE(3027), 1, - sym_comment, - ACTIONS(2507), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93726] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5948), 1, - anon_sym_else, - ACTIONS(5950), 1, + ACTIONS(5821), 1, sym__newline, - STATE(3028), 1, + ACTIONS(5823), 1, + sym__space, + STATE(3058), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3085), 1, sym_comment, - STATE(3044), 1, - aux_sym__repeat_newline, - ACTIONS(5953), 11, + ACTIONS(6125), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217655,34 +219710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93755] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3029), 1, - sym_comment, - ACTIONS(5739), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [93778] = 4, + [95949] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2615), 1, + ACTIONS(6129), 1, sym__space, - STATE(3030), 1, + STATE(3086), 1, sym_comment, - ACTIONS(2617), 13, + ACTIONS(6127), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217696,18 +219731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93803] = 6, + [95974] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(2469), 1, sym__space, - STATE(2917), 1, - aux_sym__command_parenthesized_repeat1, - STATE(3031), 1, + STATE(3087), 1, sym_comment, - ACTIONS(5955), 11, + ACTIONS(2471), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217719,39 +219751,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93832] = 4, + anon_sym_RBRACE, + [95999] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2224), 1, - anon_sym_DASH2, - STATE(3032), 1, + ACTIONS(5321), 1, + anon_sym_DOT, + ACTIONS(5323), 1, + aux_sym__immediate_decimal_token5, + STATE(3088), 1, sym_comment, - ACTIONS(2222), 13, - anon_sym_EQ, + ACTIONS(1752), 2, sym_identifier, + anon_sym_DASH2, + ACTIONS(1750), 10, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93857] = 6, + [96028] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(2473), 1, sym__space, - STATE(3033), 1, + STATE(3089), 1, sym_comment, - STATE(3043), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5957), 11, + ACTIONS(2475), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217763,56 +219795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93886] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DASH2, - STATE(3034), 1, - sym_comment, - ACTIONS(2537), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93911] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2617), 1, - anon_sym_DASH2, - STATE(3035), 1, - sym_comment, - ACTIONS(2615), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93936] = 4, + anon_sym_RBRACE, + [96053] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5961), 1, + ACTIONS(2477), 1, sym__space, - STATE(3036), 1, + STATE(3090), 1, sym_comment, - ACTIONS(5959), 13, + ACTIONS(2479), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217826,14 +219817,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93961] = 4, + [96078] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5965), 1, + ACTIONS(2481), 1, sym__space, - STATE(3037), 1, + STATE(3091), 1, sym_comment, - ACTIONS(5963), 13, + ACTIONS(2483), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217847,14 +219838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93986] = 4, + [96103] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2565), 1, + ACTIONS(2419), 1, anon_sym_DASH2, - STATE(3038), 1, + STATE(3092), 1, sym_comment, - ACTIONS(2563), 13, + ACTIONS(2417), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -217868,45 +219859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94011] = 10, - ACTIONS(3), 1, + [96128] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3039), 1, + ACTIONS(2485), 1, + sym__space, + STATE(3093), 1, sym_comment, - STATE(3909), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [94048] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5967), 1, - anon_sym_else, - ACTIONS(5969), 1, + ACTIONS(2487), 13, sym__newline, - STATE(2944), 1, - aux_sym__repeat_newline, - STATE(3040), 1, - sym_comment, - ACTIONS(5972), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217918,18 +219879,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94077] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [96153] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5974), 1, - anon_sym_catch, - ACTIONS(5976), 1, - sym__newline, - STATE(2946), 1, - aux_sym__repeat_newline, - STATE(3041), 1, + STATE(3094), 1, sym_comment, - ACTIONS(5979), 11, + ACTIONS(5122), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5124), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217940,19 +219901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [94106] = 6, - ACTIONS(3), 1, + [96178] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5981), 1, - anon_sym_catch, - ACTIONS(5983), 1, - sym__newline, - STATE(2964), 1, - aux_sym__repeat_newline, - STATE(3042), 1, + ACTIONS(2489), 1, + sym__space, + STATE(3095), 1, sym_comment, - ACTIONS(5986), 11, + ACTIONS(2491), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217964,17 +219921,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94135] = 5, + anon_sym_RBRACE, + [96203] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5988), 1, - sym__newline, - ACTIONS(5991), 1, + ACTIONS(2493), 1, sym__space, - STATE(3043), 2, + STATE(3096), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5994), 11, + ACTIONS(2495), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217986,39 +219942,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94162] = 6, + anon_sym_RBRACE, + [96228] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_else, - ACTIONS(5998), 1, - sym__newline, - STATE(2937), 1, - aux_sym__repeat_newline, - STATE(3044), 1, + ACTIONS(5913), 1, + anon_sym_AT2, + ACTIONS(6133), 1, + anon_sym_DASH2, + STATE(3097), 1, sym_comment, - ACTIONS(6001), 11, - anon_sym_SEMI, + STATE(3355), 1, + sym_param_completer, + ACTIONS(6131), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96257] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5913), 1, + anon_sym_AT2, + ACTIONS(5915), 1, + anon_sym_DASH2, + STATE(3098), 1, + sym_comment, + STATE(3344), 1, + sym_param_completer, + ACTIONS(5911), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [94191] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96286] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3045), 1, - sym_comment, - ACTIONS(2092), 3, - ts_builtin_sym_end, + ACTIONS(2176), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2094), 11, + STATE(3099), 1, + sym_comment, + ACTIONS(2178), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218030,16 +220008,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [94216] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96311] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3046), 1, - sym_comment, - ACTIONS(5257), 3, - ts_builtin_sym_end, + ACTIONS(6137), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5259), 11, + STATE(3100), 1, + sym_comment, + ACTIONS(6135), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218051,18 +220029,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [94241] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96336] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6003), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3047), 1, + ACTIONS(908), 1, + sym__space, + STATE(3101), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(866), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218074,18 +220051,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94270] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [96361] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6006), 1, - anon_sym_catch, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3048), 1, + ACTIONS(2180), 1, + sym__space, + STATE(3102), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2182), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218097,14 +220072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94299] = 4, + anon_sym_RBRACE, + [96386] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2258), 1, + ACTIONS(2636), 1, sym__space, - STATE(3049), 1, + STATE(3103), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(2638), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218118,14 +220094,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94324] = 4, + [96411] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2447), 1, + anon_sym_DASH2, + STATE(3104), 1, + sym_comment, + ACTIONS(2445), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96436] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1706), 1, sym__space, - STATE(3050), 1, + STATE(3105), 1, sym_comment, - ACTIONS(1868), 13, + ACTIONS(1604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218139,14 +220136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94349] = 4, + [96461] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2563), 1, + ACTIONS(2126), 1, sym__space, - STATE(3051), 1, + STATE(3106), 1, sym_comment, - ACTIONS(2565), 13, + ACTIONS(2128), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218160,16 +220157,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94374] = 4, - ACTIONS(103), 1, + [96486] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2571), 1, - sym__space, - STATE(3052), 1, - sym_comment, - ACTIONS(2573), 13, + ACTIONS(5863), 1, sym__newline, + STATE(789), 1, + aux_sym__pipe_separator, + STATE(3107), 1, + sym_comment, + STATE(3433), 1, + aux_sym__repeat_newline, + ACTIONS(5866), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -218179,108 +220181,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [94399] = 6, + [96517] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(6011), 1, + ACTIONS(2614), 1, anon_sym_DASH2, - STATE(3053), 1, + STATE(3108), 1, sym_comment, - STATE(3300), 1, - sym_param_completer, - ACTIONS(6009), 11, + ACTIONS(2612), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94428] = 6, + [96542] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5783), 1, + ACTIONS(2618), 1, anon_sym_DASH2, - STATE(3054), 1, + STATE(3109), 1, sym_comment, - STATE(3239), 1, - sym_param_completer, - ACTIONS(5779), 11, + ACTIONS(2616), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94457] = 4, + [96567] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3055), 1, - sym_comment, - ACTIONS(1728), 2, + ACTIONS(2515), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 12, + STATE(3110), 1, + sym_comment, + ACTIONS(2513), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [94482] = 4, - ACTIONS(3), 1, + [96592] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_DASH2, - STATE(3056), 1, + ACTIONS(6141), 1, + sym__space, + STATE(3111), 1, sym_comment, - ACTIONS(968), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(6139), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94507] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [96617] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6013), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3057), 1, + ACTIONS(4568), 1, + sym__space, + STATE(3112), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(4566), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218292,14 +220285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94536] = 4, + anon_sym_RBRACE, + [96642] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, + ACTIONS(2463), 1, anon_sym_DASH2, - STATE(3058), 1, + STATE(3113), 1, sym_comment, - ACTIONS(2571), 13, + ACTIONS(2461), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -218313,35 +220307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94561] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2194), 1, - sym__space, - STATE(3059), 1, - sym_comment, - ACTIONS(2196), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [94586] = 4, + [96667] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4629), 1, + ACTIONS(6145), 1, sym__space, - STATE(3060), 1, + STATE(3114), 1, sym_comment, - ACTIONS(4627), 13, + ACTIONS(6143), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218355,56 +220328,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94611] = 4, + [96692] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(5811), 1, anon_sym_DASH2, - STATE(3061), 1, + STATE(3115), 1, sym_comment, - ACTIONS(1706), 13, + STATE(4704), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5809), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94636] = 4, + [96721] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2114), 1, - anon_sym_DASH2, - STATE(3062), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1627), 1, + anon_sym_DOT, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(3116), 1, sym_comment, - ACTIONS(2112), 13, - anon_sym_EQ, - sym_identifier, + STATE(3752), 1, + sym__immediate_decimal, + ACTIONS(5815), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5817), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3751), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1623), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94661] = 4, + anon_sym_EQ_GT, + [96758] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(5462), 1, sym__space, - STATE(3063), 1, + STATE(3117), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(5460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218418,17 +220399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94686] = 5, + [96783] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_LBRACK2, - STATE(3064), 1, - sym_comment, - ACTIONS(2128), 2, - ts_builtin_sym_end, + ACTIONS(6149), 1, sym__space, - ACTIONS(2130), 11, + STATE(3118), 1, + sym_comment, + ACTIONS(6147), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218440,36 +220418,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [94713] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1960), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(6018), 1, - sym__newline, - STATE(3065), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1955), 11, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [94740] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96808] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(6153), 1, sym__space, - STATE(3066), 1, + STATE(3119), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(6151), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218483,15 +220441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94765] = 4, - ACTIONS(103), 1, + [96833] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2262), 1, - sym__space, - STATE(3067), 1, - sym_comment, - ACTIONS(2264), 13, + ACTIONS(1918), 1, sym__newline, + ACTIONS(6155), 1, + anon_sym_else, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3120), 1, + sym_comment, + ACTIONS(1916), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218503,15 +220464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [94790] = 4, + [96862] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2507), 1, + ACTIONS(2467), 1, anon_sym_DASH2, - STATE(3068), 1, + STATE(3121), 1, sym_comment, - ACTIONS(2505), 13, + ACTIONS(2465), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -218525,18 +220485,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94815] = 6, + [96887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6021), 1, - anon_sym_else, - ACTIONS(6023), 1, + ACTIONS(2547), 1, + anon_sym_DASH2, + STATE(3122), 1, + sym_comment, + ACTIONS(2545), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(2919), 1, - aux_sym__repeat_newline, - STATE(3069), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96912] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5848), 1, + sym__space, + ACTIONS(6158), 1, + ts_builtin_sym_end, + STATE(2994), 1, + aux_sym_attribute_repeat1, + STATE(3123), 1, sym_comment, - ACTIONS(6026), 11, + ACTIONS(5803), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218547,15 +220529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [94844] = 4, + [96941] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4625), 1, + ACTIONS(2389), 1, sym__space, - STATE(3070), 1, + STATE(3124), 1, sym_comment, - ACTIONS(4623), 13, + ACTIONS(2391), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218569,18 +220550,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94869] = 6, + [96966] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6028), 1, - anon_sym_else, - ACTIONS(6030), 1, + ACTIONS(1918), 1, sym__newline, - STATE(2950), 1, + ACTIONS(6160), 1, + anon_sym_else, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3071), 1, + STATE(3125), 1, sym_comment, - ACTIONS(6033), 11, + ACTIONS(1916), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218592,35 +220573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94898] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_DASH2, - STATE(3072), 1, - sym_comment, - ACTIONS(2194), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94923] = 4, + [96995] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6037), 1, + ACTIONS(5848), 1, sym__space, - STATE(3073), 1, + ACTIONS(6163), 1, + ts_builtin_sym_end, + STATE(3020), 1, + aux_sym_attribute_repeat1, + STATE(3126), 1, sym_comment, - ACTIONS(6035), 13, + ACTIONS(5819), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218632,16 +220596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [94948] = 4, + [97024] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2234), 1, + ACTIONS(6167), 1, sym__space, - STATE(3074), 1, + STATE(3127), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(6165), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218655,39 +220617,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94973] = 9, + [97049] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5777), 1, anon_sym_DOLLAR, - STATE(737), 1, - sym__immediate_decimal, - STATE(3075), 1, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(6169), 1, + anon_sym_RPAREN, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2920), 1, + aux_sym_parameter_parens_repeat1, + STATE(3128), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(736), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [95007] = 4, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [97095] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_else, - STATE(3076), 1, + STATE(3129), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(6171), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218699,47 +220665,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - [95031] = 15, + [97117] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, + ACTIONS(2148), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(3130), 1, + sym_comment, + ACTIONS(2146), 12, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + sym__newline, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, anon_sym_DASH2, - ACTIONS(5723), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3077), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [95077] = 4, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [97141] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3078), 1, + STATE(3131), 1, sym_comment, - ACTIONS(2537), 2, + ACTIONS(2469), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2539), 11, + ACTIONS(2471), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218751,12 +220707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95101] = 3, - ACTIONS(3), 1, + [97165] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3079), 1, + STATE(3132), 1, sym_comment, - ACTIONS(4783), 13, + ACTIONS(5421), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5419), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218768,46 +220727,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [97189] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(6173), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [95123] = 13, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2920), 1, + aux_sym_parameter_parens_repeat1, + STATE(3133), 1, + sym_comment, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [97235] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(6175), 1, + anon_sym_PIPE, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2920), 1, + aux_sym_parameter_parens_repeat1, + STATE(3134), 1, + sym_comment, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [97281] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACK, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1776), 1, + ACTIONS(6095), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6045), 1, + ACTIONS(6177), 1, anon_sym_DOT, - ACTIONS(6047), 1, + ACTIONS(6179), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, + ACTIONS(6181), 1, aux_sym__immediate_decimal_token2, - STATE(3080), 1, + STATE(3135), 1, sym_comment, - STATE(3673), 1, + STATE(3851), 1, sym__immediate_decimal, - ACTIONS(6051), 2, + ACTIONS(1625), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6183), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3809), 2, + STATE(3850), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95165] = 4, + [97321] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3081), 1, + STATE(3136), 1, sym_comment, - ACTIONS(5856), 2, + ACTIONS(2176), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5854), 11, + ACTIONS(2178), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218819,71 +220837,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95189] = 9, - ACTIONS(3), 1, + [97345] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(3082), 1, + STATE(3137), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(721), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 4, - anon_sym_if, + ACTIONS(2180), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2182), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [95223] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6053), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3083), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [95269] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [97369] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3084), 1, + STATE(3138), 1, sym_comment, - ACTIONS(2202), 2, + ACTIONS(6069), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2204), 11, + ACTIONS(6067), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218895,15 +220877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95293] = 4, + [97393] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3085), 1, + STATE(3139), 1, sym_comment, - ACTIONS(5889), 2, + ACTIONS(6091), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5887), 11, + ACTIONS(6089), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218915,15 +220897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95317] = 4, + [97417] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3086), 1, + STATE(3140), 1, sym_comment, - ACTIONS(5965), 2, + ACTIONS(5391), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5963), 11, + ACTIONS(5389), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218935,12 +220917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95341] = 3, - ACTIONS(3), 1, + [97441] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3087), 1, + STATE(3141), 1, sym_comment, - ACTIONS(4789), 13, + ACTIONS(2501), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2503), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218952,48 +220937,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95363] = 15, + [97465] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5725), 1, - anon_sym_RPAREN, - STATE(2467), 1, + ACTIONS(5907), 1, + anon_sym_PIPE, + STATE(2559), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2644), 1, sym__param_name, - STATE(2828), 1, + STATE(2920), 1, aux_sym_parameter_parens_repeat1, - STATE(3088), 1, + STATE(3142), 1, sym_comment, - STATE(3269), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, + STATE(3351), 1, sym_param_opt, - STATE(3582), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [95409] = 4, - ACTIONS(103), 1, + [97511] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3089), 1, + STATE(3143), 1, sym_comment, - ACTIONS(2505), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2507), 11, + ACTIONS(4832), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219005,43 +220985,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95433] = 12, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97533] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(3090), 1, + STATE(3144), 1, sym_comment, - STATE(4026), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, + ACTIONS(6185), 13, sym__newline, anon_sym_SEMI, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3013), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [95473] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97555] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3091), 1, + STATE(3145), 1, sym_comment, - ACTIONS(2254), 2, + ACTIONS(2465), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2256), 11, + ACTIONS(2467), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219053,15 +221026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95497] = 4, + [97579] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3092), 1, + STATE(3146), 1, sym_comment, - ACTIONS(5885), 2, + ACTIONS(2505), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5883), 11, + ACTIONS(2507), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219073,35 +221046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95521] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_DASH2, - STATE(3093), 1, - sym_comment, - ACTIONS(6061), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95545] = 4, + [97603] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3094), 1, + STATE(3147), 1, sym_comment, - ACTIONS(2591), 2, + ACTIONS(2473), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2593), 11, + ACTIONS(2475), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219113,34 +221066,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95569] = 4, + [97627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6067), 1, - anon_sym_DASH2, - STATE(3095), 1, + STATE(3148), 1, sym_comment, - ACTIONS(6065), 12, - anon_sym_EQ, - sym_identifier, + STATE(3155), 1, + aux_sym__repeat_newline, + ACTIONS(5598), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95593] = 4, + [97651] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3096), 1, + STATE(3149), 1, sym_comment, - STATE(3211), 1, + STATE(3151), 1, aux_sym__repeat_newline, - ACTIONS(5590), 12, + ACTIONS(5666), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219153,15 +221106,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95617] = 4, + [97675] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3097), 1, + STATE(3150), 1, sym_comment, - ACTIONS(5961), 2, + ACTIONS(2477), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5959), 11, + ACTIONS(2479), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219173,15 +221126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95641] = 4, - ACTIONS(103), 1, + [97699] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3098), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3151), 1, sym_comment, - ACTIONS(2254), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2256), 11, + ACTIONS(5622), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219193,63 +221145,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95665] = 12, - ACTIONS(103), 1, + anon_sym_RPAREN, + [97723] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3099), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(3152), 1, sym_comment, - STATE(3932), 1, + STATE(4303), 1, sym__immediate_decimal, - ACTIONS(1633), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, + ACTIONS(6187), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6189), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4123), 2, + STATE(829), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95705] = 4, + ACTIONS(1584), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [97759] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6079), 1, - anon_sym_catch, - STATE(3100), 1, + ACTIONS(866), 1, + anon_sym_DASH2, + ACTIONS(5270), 1, + sym__unquoted_pattern_in_record, + STATE(3153), 1, sym_comment, - ACTIONS(5918), 12, - ts_builtin_sym_end, + ACTIONS(908), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [95729] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97785] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(3154), 1, sym_comment, - ACTIONS(2206), 2, + ACTIONS(2481), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2208), 11, + ACTIONS(2483), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219261,12 +221213,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95753] = 3, + [97809] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3102), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3155), 1, sym_comment, - ACTIONS(6081), 13, + ACTIONS(5670), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219279,55 +221233,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [95775] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3103), 1, - sym_comment, - ACTIONS(2210), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2212), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [95799] = 4, + [97833] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2098), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(3104), 1, + ACTIONS(5026), 1, + anon_sym_DASH2, + STATE(3156), 1, sym_comment, - ACTIONS(2096), 12, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, + ACTIONS(5024), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [95823] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [97857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5924), 1, + ACTIONS(4948), 1, anon_sym_DASH2, - STATE(3105), 1, + STATE(3157), 1, sym_comment, - ACTIONS(5920), 12, + ACTIONS(4944), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219340,15 +221273,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95847] = 4, - ACTIONS(3), 1, + [97881] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6083), 1, - anon_sym_else, - STATE(3106), 1, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6103), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6177), 1, + anon_sym_DOT, + STATE(3158), 1, + sym_comment, + STATE(3900), 1, + sym__immediate_decimal, + ACTIONS(1625), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6105), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3899), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [97921] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3159), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(2485), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2487), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219360,15 +221321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95871] = 4, + [97945] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3107), 1, + STATE(3160), 1, sym_comment, - ACTIONS(2258), 2, + ACTIONS(2489), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2260), 11, + ACTIONS(2491), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219380,40 +221341,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95895] = 12, + [97969] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(3161), 1, + sym_comment, + STATE(4292), 1, + sym__immediate_decimal, + ACTIONS(6187), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6189), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(871), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [98005] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1584), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(4866), 1, - anon_sym_DOT, - ACTIONS(5862), 1, + ACTIONS(6191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, + ACTIONS(6193), 1, aux_sym__immediate_decimal_token2, - STATE(3108), 1, + STATE(3162), 1, sym_comment, - STATE(3870), 1, + STATE(4014), 1, sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(1588), 2, sym__newline, anon_sym_SEMI, - ACTIONS(5866), 2, + ACTIONS(6195), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3869), 2, + STATE(3038), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95935] = 3, - ACTIONS(3), 1, + [98045] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3109), 1, + STATE(3163), 1, sym_comment, - ACTIONS(6085), 13, + ACTIONS(2612), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2614), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219425,17 +221415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95957] = 4, - ACTIONS(103), 1, + [98069] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3110), 1, + STATE(3164), 1, sym_comment, - ACTIONS(2226), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2228), 11, + ACTIONS(6129), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219447,35 +221432,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95981] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98091] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3111), 1, + ACTIONS(6199), 1, + anon_sym_DASH2, + STATE(3165), 1, sym_comment, - ACTIONS(2230), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2232), 11, + ACTIONS(6197), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [96005] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98115] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3112), 1, - sym_comment, - ACTIONS(2234), 2, - ts_builtin_sym_end, + ACTIONS(6203), 1, sym__space, - ACTIONS(2236), 11, + STATE(3166), 1, + sym_comment, + ACTIONS(6201), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219487,12 +221473,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96029] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [98139] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(3167), 1, sym_comment, - ACTIONS(6087), 13, + ACTIONS(2636), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2638), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219504,14 +221494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96051] = 3, - ACTIONS(3), 1, + [98163] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3114), 1, + STATE(3168), 1, sym_comment, - ACTIONS(6089), 13, + ACTIONS(2545), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2547), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219523,14 +221514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96073] = 3, - ACTIONS(3), 1, + [98187] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3115), 1, + STATE(3169), 1, sym_comment, - ACTIONS(6091), 13, + ACTIONS(2493), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2495), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219542,16 +221534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96095] = 4, + [98211] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6095), 1, + ACTIONS(5018), 1, anon_sym_DASH2, - STATE(3116), 1, + STATE(3170), 1, sym_comment, - ACTIONS(6093), 12, + ACTIONS(5016), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219564,16 +221554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96119] = 5, + [98235] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6099), 1, - anon_sym_QMARK, - ACTIONS(6101), 1, + ACTIONS(5022), 1, anon_sym_DASH2, - STATE(3117), 1, + STATE(3171), 1, sym_comment, - ACTIONS(6097), 11, + ACTIONS(5020), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219583,14 +221571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96145] = 3, + [98259] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3118), 1, + STATE(3172), 1, sym_comment, - ACTIONS(6103), 13, + ACTIONS(6205), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219604,63 +221593,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96167] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6105), 1, - anon_sym_DOT, - STATE(3119), 1, - sym_comment, - STATE(3862), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3861), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96207] = 4, + [98281] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6109), 1, - anon_sym_DASH2, - STATE(3120), 1, + STATE(3173), 1, sym_comment, - ACTIONS(6107), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6207), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96231] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [98303] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3121), 1, + STATE(3174), 1, sym_comment, - ACTIONS(2238), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2240), 11, + ACTIONS(6209), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219672,15 +221629,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96255] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98325] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3122), 1, + STATE(3175), 1, sym_comment, - ACTIONS(5251), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5249), 11, + ACTIONS(6212), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219692,15 +221648,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96279] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98347] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3123), 1, + STATE(3176), 1, sym_comment, - ACTIONS(5940), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5938), 11, + ACTIONS(6214), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219712,15 +221667,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96303] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98369] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3124), 1, + STATE(3177), 1, sym_comment, - ACTIONS(5247), 2, + ACTIONS(2449), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5245), 11, + ACTIONS(2451), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219732,15 +221689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96327] = 4, + [98393] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3125), 1, + STATE(3178), 1, sym_comment, - ACTIONS(2242), 2, + ACTIONS(6137), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2244), 11, + ACTIONS(6135), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219752,15 +221709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96351] = 4, + [98417] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3179), 1, sym_comment, - ACTIONS(6037), 2, + ACTIONS(6141), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6035), 11, + ACTIONS(6139), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219772,44 +221729,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96375] = 12, - ACTIONS(103), 1, + [98441] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(3127), 1, + ACTIONS(5014), 1, + anon_sym_DASH2, + STATE(3180), 1, sym_comment, - STATE(4013), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(5012), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2982), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96415] = 5, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [98465] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, + ACTIONS(5094), 1, anon_sym_DASH2, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, - STATE(3128), 1, + STATE(3181), 1, sym_comment, - ACTIONS(968), 11, + ACTIONS(5092), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219819,16 +221766,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96441] = 4, + [98489] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6113), 1, + STATE(3182), 1, + sym_comment, + ACTIONS(6216), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98511] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5098), 1, anon_sym_DASH2, - STATE(3129), 1, + STATE(3183), 1, sym_comment, - ACTIONS(6111), 12, + ACTIONS(5096), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219838,18 +221805,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [96465] = 4, + [98535] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3130), 1, + STATE(3184), 1, sym_comment, - ACTIONS(2214), 2, + ACTIONS(2453), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2216), 11, + ACTIONS(2455), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219861,14 +221828,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96489] = 4, + [98559] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6218), 1, + anon_sym_DOLLAR, + ACTIONS(6220), 1, + anon_sym_LPAREN2, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + STATE(3185), 1, + sym_comment, + STATE(3994), 1, + sym__immediate_decimal, + ACTIONS(1588), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6226), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4293), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [98599] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6117), 1, + ACTIONS(6230), 1, anon_sym_DASH2, - STATE(3131), 1, + STATE(3186), 1, sym_comment, - ACTIONS(6115), 12, + ACTIONS(6228), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219881,15 +221876,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96513] = 4, + [98623] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(3187), 1, sym_comment, - ACTIONS(2246), 2, + ACTIONS(6129), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2248), 11, + ACTIONS(6127), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219901,15 +221896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96537] = 4, + [98647] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3133), 1, + STATE(3188), 1, sym_comment, - ACTIONS(2615), 2, + ACTIONS(2457), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2617), 11, + ACTIONS(2459), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219921,14 +221916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96561] = 4, - ACTIONS(3), 1, + [98671] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3134), 1, + STATE(3189), 1, sym_comment, - STATE(3173), 1, - aux_sym__repeat_newline, - ACTIONS(5596), 12, + ACTIONS(4568), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4566), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219940,16 +221936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [96585] = 4, + [98695] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3135), 1, + STATE(3190), 1, sym_comment, - ACTIONS(4625), 2, + ACTIONS(1872), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4623), 11, + ACTIONS(1874), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219961,12 +221956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96609] = 3, - ACTIONS(3), 1, + [98719] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3191), 1, sym_comment, - ACTIONS(6119), 13, + ACTIONS(1844), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1846), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219978,37 +221976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96631] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6123), 1, - anon_sym_DASH2, - STATE(3137), 1, - sym_comment, - ACTIONS(6121), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96655] = 4, + [98743] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3138), 1, + STATE(3192), 1, sym_comment, - ACTIONS(2250), 2, + ACTIONS(2389), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2252), 11, + ACTIONS(2391), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220020,55 +221996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96679] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6127), 1, - anon_sym_DASH2, - STATE(3139), 1, - sym_comment, - ACTIONS(6125), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96703] = 4, + [98767] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6131), 1, - anon_sym_DASH2, - STATE(3140), 1, - sym_comment, - ACTIONS(6129), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96727] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3141), 1, + STATE(3193), 1, sym_comment, - ACTIONS(2262), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2264), 11, + ACTIONS(5530), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220080,14 +222013,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96751] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98789] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6135), 1, + ACTIONS(5036), 1, anon_sym_DASH2, - STATE(3142), 1, + STATE(3194), 1, sym_comment, - ACTIONS(6133), 12, + ACTIONS(5034), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220100,15 +222035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96775] = 4, + [98813] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3143), 1, + STATE(3195), 1, sym_comment, - ACTIONS(1858), 2, + ACTIONS(2445), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1860), 11, + ACTIONS(2447), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220120,14 +222055,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96799] = 4, + [98837] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6139), 1, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, anon_sym_DASH2, - STATE(3144), 1, + ACTIONS(6232), 1, + anon_sym_RBRACK, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2920), 1, + aux_sym_parameter_parens_repeat1, + STATE(3196), 1, + sym_comment, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [98883] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5040), 1, + anon_sym_DASH2, + STATE(3197), 1, sym_comment, - ACTIONS(6137), 12, + ACTIONS(5038), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220140,12 +222106,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96823] = 3, - ACTIONS(3), 1, + [98907] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3198), 1, sym_comment, - ACTIONS(6141), 13, + ACTIONS(2521), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2523), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220157,14 +222126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96845] = 3, - ACTIONS(3), 1, + [98931] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3199), 1, sym_comment, - ACTIONS(6143), 13, + ACTIONS(2624), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2626), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220176,17 +222146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96867] = 4, + [98955] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(3200), 1, sym_comment, - ACTIONS(4629), 2, + ACTIONS(2461), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4627), 11, + ACTIONS(2463), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220198,15 +222166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96891] = 4, + [98979] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3148), 1, + STATE(3201), 1, sym_comment, - ACTIONS(2607), 2, + ACTIONS(4586), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2609), 11, + ACTIONS(4584), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220218,41 +222186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96915] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3149), 1, - sym_comment, - STATE(4120), 1, - sym__immediate_decimal, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [96951] = 4, + [99003] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3150), 1, + STATE(3202), 1, sym_comment, - ACTIONS(5581), 2, + ACTIONS(2628), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5579), 11, + ACTIONS(2630), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220264,46 +222206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96975] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6149), 1, - anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3151), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97021] = 4, + [99027] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3152), 1, + STATE(3203), 1, sym_comment, - ACTIONS(4633), 2, + ACTIONS(5923), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4631), 11, + ACTIONS(5921), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220315,15 +222226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97045] = 4, + [99051] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3153), 1, + STATE(3204), 1, sym_comment, - ACTIONS(2563), 2, + ACTIONS(5586), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2565), 11, + ACTIONS(5584), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220335,40 +222246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97069] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(739), 1, - sym__immediate_decimal, - STATE(3154), 1, - sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(738), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97103] = 4, + [99075] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3155), 1, + STATE(3205), 1, sym_comment, - ACTIONS(2571), 2, + ACTIONS(908), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2573), 11, + ACTIONS(866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220380,15 +222266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97127] = 4, + [99099] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3156), 1, + STATE(3206), 1, sym_comment, - ACTIONS(2218), 2, + ACTIONS(2616), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2220), 11, + ACTIONS(2618), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220400,14 +222286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97151] = 4, + [99123] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6153), 1, + ACTIONS(5044), 1, anon_sym_DASH2, - STATE(3157), 1, + STATE(3207), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(5042), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220417,37 +222303,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [97175] = 4, + [99147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6157), 1, + ACTIONS(5056), 1, anon_sym_DASH2, - STATE(3158), 1, + STATE(3208), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(5054), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [99171] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5064), 1, + anon_sym_DASH2, + STATE(3209), 1, + sym_comment, + ACTIONS(5062), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [97199] = 4, + [99195] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6159), 1, - anon_sym_else, - STATE(3159), 1, + STATE(3210), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(6234), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220460,37 +222364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97223] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(741), 1, - sym__immediate_decimal, - STATE(3160), 1, - sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(740), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97257] = 3, + anon_sym_RBRACE, + [99217] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3161), 1, + STATE(3211), 1, sym_comment, - ACTIONS(5548), 13, + ACTIONS(4838), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220504,15 +222384,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97279] = 4, + [99239] = 13, ACTIONS(103), 1, anon_sym_POUND, - STATE(3162), 1, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1588), 1, + anon_sym_RBRACE, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6236), 1, + anon_sym_DOT, + ACTIONS(6238), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6240), 1, + aux_sym__immediate_decimal_token2, + STATE(3212), 1, sym_comment, - ACTIONS(2511), 2, + STATE(3696), 1, + sym__immediate_decimal, + ACTIONS(6242), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3862), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [99281] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3213), 1, + sym_comment, + ACTIONS(2513), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2513), 11, + ACTIONS(2515), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220524,15 +222433,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97303] = 4, - ACTIONS(103), 1, + [99305] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3163), 1, + ACTIONS(6244), 1, + anon_sym_else, + STATE(3214), 1, sym_comment, - ACTIONS(2194), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2196), 11, + ACTIONS(6246), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220544,41 +222452,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97327] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3164), 1, - sym_comment, - STATE(4125), 1, - sym__immediate_decimal, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97363] = 4, + anon_sym_RPAREN, + [99329] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3165), 1, + STATE(3215), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(1706), 2, ts_builtin_sym_end, sym__space, - ACTIONS(868), 11, + ACTIONS(1604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220590,15 +222473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97387] = 4, + [99353] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3166), 1, + STATE(3216), 1, sym_comment, - ACTIONS(5346), 2, + ACTIONS(2134), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5344), 11, + ACTIONS(2136), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220610,12 +222493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97411] = 3, - ACTIONS(3), 1, + [99377] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3167), 1, + STATE(3217), 1, sym_comment, - ACTIONS(6161), 13, + ACTIONS(2517), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2519), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220627,17 +222513,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [97433] = 4, + [99401] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3168), 1, + ACTIONS(1633), 1, + sym__entry_separator, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6218), 1, + anon_sym_DOLLAR, + ACTIONS(6220), 1, + anon_sym_LPAREN2, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + STATE(3218), 1, sym_comment, - ACTIONS(2515), 2, + STATE(4001), 1, + sym__immediate_decimal, + ACTIONS(1635), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6226), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4259), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [99441] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3219), 1, + sym_comment, + ACTIONS(4582), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2517), 11, + ACTIONS(4580), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220649,12 +222561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97457] = 3, - ACTIONS(3), 1, + [99465] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3169), 1, + STATE(3220), 1, sym_comment, - ACTIONS(6163), 13, + ACTIONS(6065), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6063), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220666,17 +222581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [97479] = 4, + [99489] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3170), 1, + STATE(3221), 1, sym_comment, - ACTIONS(5893), 2, + ACTIONS(4634), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5891), 11, + ACTIONS(4632), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220688,76 +222601,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97503] = 15, + [99513] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5753), 1, + ACTIONS(5884), 1, anon_sym_RBRACK, - STATE(2467), 1, + STATE(2559), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2644), 1, sym__param_name, - STATE(2828), 1, + STATE(2920), 1, aux_sym_parameter_parens_repeat1, - STATE(3171), 1, + STATE(3222), 1, sym_comment, - STATE(3269), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, + STATE(3351), 1, sym_param_opt, - STATE(3582), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [97549] = 15, - ACTIONS(3), 1, + [99559] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6165), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3172), 1, + STATE(3223), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97595] = 4, + ACTIONS(2082), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2084), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [99583] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3173), 1, + STATE(3224), 1, sym_comment, - ACTIONS(5514), 12, + ACTIONS(6248), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220770,74 +222670,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97619] = 15, - ACTIONS(3), 1, + anon_sym_RBRACE, + [99605] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5755), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3174), 1, + STATE(3225), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97665] = 12, - ACTIONS(103), 1, + ACTIONS(6145), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6143), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [99629] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3175), 1, - sym_comment, - STATE(3928), 1, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(826), 1, sym__immediate_decimal, - ACTIONS(1598), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, + STATE(3226), 1, + sym_comment, + ACTIONS(5817), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4079), 2, + ACTIONS(6250), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(825), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [97705] = 4, + ACTIONS(1623), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [99663] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3176), 1, + STATE(3227), 1, sym_comment, - ACTIONS(5897), 2, + ACTIONS(5462), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5895), 11, + ACTIONS(5460), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220849,15 +222736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97729] = 4, + [99687] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3177), 1, + STATE(3228), 1, sym_comment, - ACTIONS(2198), 2, + ACTIONS(2417), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2200), 11, + ACTIONS(2419), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220869,76 +222756,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97753] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6167), 1, - anon_sym_DOT, - ACTIONS(6169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6171), 1, - aux_sym__immediate_decimal_token2, - STATE(3178), 1, - sym_comment, - STATE(3639), 1, - sym__immediate_decimal, - ACTIONS(6173), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [97795] = 15, + [99711] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5775), 1, + anon_sym_RBRACK, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5706), 1, - anon_sym_PIPE, - STATE(2467), 1, + STATE(2559), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2644), 1, sym__param_name, - STATE(2828), 1, + STATE(2920), 1, aux_sym_parameter_parens_repeat1, - STATE(3179), 1, + STATE(3229), 1, sym_comment, - STATE(3269), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, + STATE(3351), 1, sym_param_opt, - STATE(3582), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [97841] = 4, - ACTIONS(103), 1, + [99757] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3180), 1, - sym_comment, - ACTIONS(1706), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1619), 11, + ACTIONS(6004), 1, sym__newline, + ACTIONS(6252), 1, + anon_sym_else, + STATE(3230), 1, + sym_comment, + STATE(3234), 1, + aux_sym__repeat_newline, + ACTIONS(6007), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220949,15 +222809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97865] = 4, + [99785] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3181), 1, + STATE(3231), 1, sym_comment, - ACTIONS(5901), 2, + ACTIONS(2126), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5899), 11, + ACTIONS(2128), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220969,16 +222829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97889] = 4, - ACTIONS(103), 1, + [99809] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3182), 1, - sym_comment, - ACTIONS(2100), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2102), 11, + ACTIONS(5927), 1, sym__newline, + ACTIONS(6254), 1, + anon_sym_else, + STATE(3232), 1, + sym_comment, + STATE(3236), 1, + aux_sym__repeat_newline, + ACTIONS(5930), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220989,18 +222851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97913] = 6, + [99837] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5969), 1, + ACTIONS(5934), 1, sym__newline, - ACTIONS(6175), 1, + ACTIONS(6256), 1, anon_sym_else, - STATE(3183), 1, + STATE(3233), 1, sym_comment, - STATE(3186), 1, + STATE(3237), 1, aux_sym__repeat_newline, - ACTIONS(5972), 10, + ACTIONS(5937), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221011,18 +222873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97941] = 6, + [99865] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6023), 1, + ACTIONS(5943), 1, sym__newline, - ACTIONS(6177), 1, + ACTIONS(6258), 1, anon_sym_else, - STATE(3184), 1, + STATE(3234), 1, sym_comment, - STATE(3188), 1, + STATE(3238), 1, aux_sym__repeat_newline, - ACTIONS(6026), 10, + ACTIONS(5946), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221033,18 +222895,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97969] = 6, + [99893] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, + ACTIONS(5992), 1, sym__newline, - ACTIONS(6179), 1, + ACTIONS(6260), 1, anon_sym_else, - STATE(3185), 1, + STATE(3235), 1, sym_comment, - STATE(3189), 1, + STATE(3239), 1, aux_sym__repeat_newline, - ACTIONS(6033), 10, + ACTIONS(5995), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221055,18 +222917,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97997] = 6, + [99921] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, + ACTIONS(6025), 1, sym__newline, - ACTIONS(6181), 1, + ACTIONS(6262), 1, anon_sym_else, - STATE(3186), 1, + STATE(3236), 1, sym_comment, - STATE(3190), 1, + STATE(3240), 1, aux_sym__repeat_newline, - ACTIONS(5820), 10, + ACTIONS(6028), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221077,18 +222939,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98025] = 6, + [99949] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, + ACTIONS(6032), 1, sym__newline, - ACTIONS(6183), 1, + ACTIONS(6264), 1, anon_sym_else, - STATE(3187), 1, + STATE(3237), 1, sym_comment, - STATE(3191), 1, + STATE(3241), 1, aux_sym__repeat_newline, - ACTIONS(5953), 10, + ACTIONS(6035), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221099,18 +222961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98053] = 6, + [99977] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, + ACTIONS(1918), 1, sym__newline, - ACTIONS(6185), 1, + ACTIONS(6266), 1, anon_sym_else, - STATE(3188), 1, - sym_comment, - STATE(3192), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5797), 10, + STATE(3238), 1, + sym_comment, + ACTIONS(1916), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221121,18 +222983,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98081] = 6, + [100005] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5849), 1, + ACTIONS(5957), 1, sym__newline, - ACTIONS(6187), 1, + ACTIONS(6269), 1, anon_sym_else, - STATE(3189), 1, + STATE(3239), 1, sym_comment, - STATE(3193), 1, + STATE(3242), 1, aux_sym__repeat_newline, - ACTIONS(5852), 10, + ACTIONS(5960), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221143,18 +223005,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98109] = 6, + [100033] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1918), 1, sym__newline, - ACTIONS(6189), 1, + ACTIONS(6271), 1, anon_sym_else, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3190), 1, + STATE(3240), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(1916), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221165,18 +223027,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98137] = 6, + [100061] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, + ACTIONS(1918), 1, sym__newline, - ACTIONS(6192), 1, + ACTIONS(6274), 1, anon_sym_else, - STATE(3191), 1, - sym_comment, - STATE(3194), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(6001), 10, + STATE(3241), 1, + sym_comment, + ACTIONS(1916), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221187,18 +223049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98165] = 6, + [100089] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1918), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6277), 1, anon_sym_else, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3192), 1, + STATE(3242), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(1916), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221209,18 +223071,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98193] = 6, - ACTIONS(3), 1, + [100117] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6197), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3193), 1, + STATE(3243), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(6149), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6147), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221231,18 +223091,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98221] = 6, + [100141] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1633), 1, + sym__space, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(6191), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6193), 1, + aux_sym__immediate_decimal_token2, + STATE(3244), 1, + sym_comment, + STATE(4044), 1, + sym__immediate_decimal, + ACTIONS(1635), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3096), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100181] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + STATE(3245), 1, + sym_comment, + ACTIONS(6280), 13, sym__newline, - ACTIONS(6200), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100203] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6282), 1, anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3194), 1, + STATE(3246), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(6246), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221253,15 +223158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98249] = 4, - ACTIONS(103), 1, + [100227] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3195), 1, + ACTIONS(6284), 1, + anon_sym_catch, + STATE(3247), 1, sym_comment, - ACTIONS(2076), 2, + ACTIONS(6076), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2078), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221273,15 +223178,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98273] = 4, + [100251] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3196), 1, - sym_comment, - ACTIONS(5905), 2, - ts_builtin_sym_end, + ACTIONS(1623), 1, sym__space, - ACTIONS(5903), 11, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(4952), 1, + anon_sym_DOT, + ACTIONS(6052), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6054), 1, + aux_sym__immediate_decimal_token2, + STATE(3248), 1, + sym_comment, + STATE(3815), 1, + sym__immediate_decimal, + ACTIONS(1625), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6056), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3814), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100291] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3249), 1, + sym_comment, + ACTIONS(6286), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221293,15 +223223,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98297] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100313] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3197), 1, + STATE(3250), 1, sym_comment, - ACTIONS(2222), 2, + ACTIONS(2497), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2224), 11, + ACTIONS(2499), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221313,46 +223245,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98321] = 15, + [100337] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(6203), 1, - anon_sym_RBRACK, - STATE(2467), 1, + ACTIONS(5897), 1, + anon_sym_RPAREN, + STATE(2559), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2644), 1, sym__param_name, - STATE(2828), 1, + STATE(2920), 1, aux_sym_parameter_parens_repeat1, - STATE(3198), 1, + STATE(3251), 1, sym_comment, - STATE(3269), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, + STATE(3351), 1, sym_param_opt, - STATE(3582), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [98367] = 4, + [100383] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3199), 1, + STATE(3252), 1, sym_comment, - ACTIONS(2120), 2, + ACTIONS(2441), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2122), 11, + ACTIONS(2443), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221364,43 +223296,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98391] = 12, + [100407] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6105), 1, - anon_sym_DOT, - STATE(3200), 1, + STATE(3253), 1, sym_comment, - STATE(3808), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3807), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [98431] = 4, + ACTIONS(2497), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2499), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [100431] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3201), 1, + STATE(3254), 1, sym_comment, - ACTIONS(2152), 2, + ACTIONS(6153), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2154), 11, + ACTIONS(6151), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221412,46 +223336,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98455] = 15, + [100455] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_RBRACK, - STATE(2467), 1, + ACTIONS(5789), 1, + anon_sym_RPAREN, + STATE(2559), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2644), 1, sym__param_name, - STATE(2828), 1, + STATE(2920), 1, aux_sym_parameter_parens_repeat1, - STATE(3202), 1, + STATE(3255), 1, sym_comment, - STATE(3269), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, + STATE(3351), 1, sym_param_opt, - STATE(3582), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [98501] = 4, + [100501] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6288), 1, + anon_sym_else, + STATE(3256), 1, + sym_comment, + ACTIONS(6246), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [100525] = 13, ACTIONS(103), 1, anon_sym_POUND, - STATE(3203), 1, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1588), 1, + anon_sym_RBRACK, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6179), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6181), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6290), 1, + anon_sym_DOT, + STATE(3257), 1, + sym_comment, + STATE(3774), 1, + sym__immediate_decimal, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3862), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100567] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3258), 1, sym_comment, - ACTIONS(2112), 2, + ACTIONS(6167), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2114), 11, + ACTIONS(6165), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221463,15 +223436,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98525] = 4, + [100591] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(848), 1, + sym__immediate_decimal, + STATE(3259), 1, + sym_comment, + ACTIONS(5817), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6250), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(847), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1653), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100625] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6294), 1, + anon_sym_QMARK, + ACTIONS(6296), 1, + anon_sym_DASH2, + STATE(3260), 1, + sym_comment, + ACTIONS(6292), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100651] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(864), 1, + sym__immediate_decimal, + STATE(3261), 1, + sym_comment, + ACTIONS(5817), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6250), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(849), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1667), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100685] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3204), 1, + STATE(3262), 1, sym_comment, - ACTIONS(4651), 2, + ACTIONS(2066), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4649), 11, + ACTIONS(2068), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221483,15 +223527,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98549] = 4, + [100709] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(869), 1, + sym__immediate_decimal, + STATE(3263), 1, + sym_comment, + ACTIONS(5817), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6250), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(867), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100743] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3205), 1, + STATE(3264), 1, sym_comment, - ACTIONS(2268), 2, + ACTIONS(2074), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2270), 11, + ACTIONS(2076), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221503,15 +223572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98573] = 4, + [100767] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3206), 1, + STATE(3265), 1, sym_comment, - ACTIONS(2272), 2, + ACTIONS(5919), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2274), 11, + ACTIONS(5917), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221523,113 +223592,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98597] = 3, + [100791] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(6298), 1, + anon_sym_RBRACK, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2920), 1, + aux_sym_parameter_parens_repeat1, + STATE(3266), 1, + sym_comment, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [100837] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1588), 1, + anon_sym_RBRACK, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1780), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6300), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6302), 1, + aux_sym__immediate_decimal_token2, + STATE(3267), 1, + sym_comment, + STATE(4193), 1, + sym__immediate_decimal, + ACTIONS(6304), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4293), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100876] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3207), 1, + ACTIONS(2459), 1, + anon_sym_DASH2, + STATE(3268), 1, sym_comment, - ACTIONS(6207), 13, + ACTIONS(2457), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [98619] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100899] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6212), 1, - sym__space, - STATE(3208), 1, + ACTIONS(2084), 1, + anon_sym_DASH2, + STATE(3269), 1, sym_comment, - ACTIONS(6210), 12, + ACTIONS(2082), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [98643] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100922] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3209), 1, - sym_comment, - ACTIONS(5885), 13, + ACTIONS(1921), 1, + anon_sym_DASH2, + ACTIONS(6306), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [98665] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3210), 1, + STATE(3270), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(5914), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5912), 11, - sym__newline, - anon_sym_SEMI, + ACTIONS(1916), 9, + anon_sym_EQ, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [98689] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100947] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3211), 1, + ACTIONS(6311), 1, + anon_sym_DASH2, + STATE(3271), 1, sym_comment, - ACTIONS(5529), 12, + ACTIONS(6309), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [98713] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100970] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3212), 1, + STATE(3272), 1, sym_comment, - ACTIONS(2519), 2, + ACTIONS(6171), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2521), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221641,15 +223745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98737] = 4, - ACTIONS(103), 1, + [100991] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3213), 1, + STATE(3273), 1, sym_comment, - ACTIONS(1866), 2, + ACTIONS(6280), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1868), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221661,18 +223763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98761] = 6, + [101012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5969), 1, - sym__newline, - ACTIONS(6214), 1, - anon_sym_else, - STATE(3214), 1, + STATE(3274), 1, sym_comment, - STATE(3319), 1, - aux_sym__repeat_newline, - ACTIONS(5972), 9, + ACTIONS(6313), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221682,12 +223780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98788] = 3, + anon_sym_RPAREN, + [101033] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3215), 1, + STATE(3275), 1, sym_comment, - ACTIONS(6216), 12, + ACTIONS(6315), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221700,77 +223799,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98809] = 12, + [101054] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, + ACTIONS(6317), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6218), 1, - anon_sym_RBRACK, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3216), 1, + ACTIONS(6319), 1, + aux_sym__immediate_decimal_token5, + STATE(3276), 1, sym_comment, - STATE(3603), 1, - sym__immediate_decimal, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3860), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [98848] = 3, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [101081] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3217), 1, + ACTIONS(2479), 1, + anon_sym_DASH2, + STATE(3277), 1, sym_comment, - ACTIONS(6224), 12, + ACTIONS(2477), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [98869] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101104] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3218), 1, + ACTIONS(2483), 1, + anon_sym_DASH2, + STATE(3278), 1, sym_comment, - ACTIONS(6226), 12, + ACTIONS(2481), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [98890] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6230), 1, + ACTIONS(2487), 1, anon_sym_DASH2, - STATE(3219), 1, + STATE(3279), 1, sym_comment, - ACTIONS(6228), 11, + ACTIONS(2485), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -221782,14 +223877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98913] = 4, + [101150] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(2491), 1, anon_sym_DASH2, - STATE(3220), 1, + STATE(3280), 1, sym_comment, - ACTIONS(2246), 11, + ACTIONS(2489), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -221801,14 +223896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98936] = 4, + [101173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, + ACTIONS(2495), 1, anon_sym_DASH2, - STATE(3221), 1, + STATE(3281), 1, sym_comment, - ACTIONS(2250), 11, + ACTIONS(2493), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -221820,12 +223915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98959] = 3, + [101196] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3222), 1, + STATE(3282), 1, sym_comment, - ACTIONS(6232), 12, + ACTIONS(6321), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221838,12 +223933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98980] = 3, + [101217] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3223), 1, + STATE(3283), 1, sym_comment, - ACTIONS(6234), 12, + ACTIONS(6323), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221856,12 +223951,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99001] = 3, + [101238] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6325), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6327), 1, + aux_sym__immediate_decimal_token5, + STATE(3284), 1, + sym_comment, + ACTIONS(747), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [101265] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3224), 1, + STATE(3285), 1, sym_comment, - ACTIONS(6236), 12, + ACTIONS(6329), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221874,12 +223990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99022] = 3, + [101286] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3225), 1, + STATE(3286), 1, sym_comment, - ACTIONS(6238), 12, + ACTIONS(6207), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221891,38 +224008,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99043] = 4, + [101307] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_DASH2, - STATE(3226), 1, + STATE(3287), 1, sym_comment, - ACTIONS(2214), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(4838), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99066] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [101328] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(3227), 1, + STATE(3288), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(2303), 9, + ACTIONS(6331), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221932,18 +224043,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99093] = 6, + anon_sym_RPAREN, + [101349] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - STATE(881), 1, + STATE(789), 1, aux_sym__pipe_separator, - STATE(3228), 1, + STATE(3289), 1, sym_comment, - STATE(3365), 1, + STATE(3433), 1, aux_sym__repeat_newline, - ACTIONS(2303), 9, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221953,12 +224065,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99120] = 3, + [101376] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3229), 1, + STATE(3290), 1, sym_comment, - ACTIONS(6085), 12, + ACTIONS(6209), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -221971,12 +224083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99141] = 3, + [101397] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3230), 1, + STATE(3291), 1, sym_comment, - ACTIONS(6240), 12, + ACTIONS(6234), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221988,15 +224101,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99162] = 4, + [101418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - STATE(3231), 1, + STATE(3292), 1, sym_comment, - ACTIONS(5713), 11, + ACTIONS(6333), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222008,14 +224120,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99185] = 3, + [101441] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3232), 1, - sym_comment, - ACTIONS(6242), 12, + ACTIONS(6004), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6337), 1, + anon_sym_else, + STATE(3293), 1, + sym_comment, + STATE(3301), 1, + aux_sym__repeat_newline, + ACTIONS(6007), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222025,276 +224141,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99206] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6246), 1, - anon_sym_DASH2, - STATE(3233), 1, - sym_comment, - ACTIONS(6244), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99229] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DASH2, - STATE(3234), 1, - sym_comment, - ACTIONS(5640), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99252] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3235), 1, - sym_comment, - STATE(4116), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4115), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99289] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3236), 1, - sym_comment, - STATE(4119), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4117), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99326] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1675), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3237), 1, - sym_comment, - STATE(4122), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4121), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99363] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3008), 1, - sym__immediate_decimal, - STATE(3238), 1, - sym_comment, - ACTIONS(1669), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3006), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99400] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DASH2, - STATE(3239), 1, - sym_comment, - ACTIONS(6258), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99423] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3010), 1, - sym__immediate_decimal, - STATE(3240), 1, - sym_comment, - ACTIONS(1673), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99460] = 4, + [101468] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DASH2, - STATE(3241), 1, - sym_comment, - ACTIONS(6258), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6339), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99483] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6264), 1, + ACTIONS(6342), 1, anon_sym_DASH2, - STATE(3242), 1, + STATE(3294), 1, sym_comment, - ACTIONS(6262), 11, + ACTIONS(2146), 2, anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99506] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6268), 1, - anon_sym_DASH2, - STATE(3243), 1, - sym_comment, - ACTIONS(6266), 11, - anon_sym_EQ, + ACTIONS(4373), 8, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99529] = 4, + [101495] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6272), 1, - anon_sym_DASH2, - STATE(3244), 1, + STATE(3295), 1, sym_comment, - ACTIONS(6270), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6344), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99552] = 3, + [101516] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3245), 1, + STATE(3296), 1, sym_comment, - ACTIONS(6274), 12, + ACTIONS(6346), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222307,12 +224198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99573] = 3, + [101537] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3246), 1, + STATE(3297), 1, sym_comment, - ACTIONS(6276), 12, + ACTIONS(6348), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222325,12 +224216,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99594] = 3, + [101558] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3247), 1, + STATE(3298), 1, sym_comment, - ACTIONS(6278), 12, + ACTIONS(6350), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222343,35 +224234,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99615] = 6, + [101579] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6280), 1, - anon_sym_DOT, - ACTIONS(6282), 1, - aux_sym__immediate_decimal_token5, - STATE(3248), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, + ACTIONS(5927), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [99642] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3249), 1, + ACTIONS(6352), 1, + anon_sym_else, + STATE(3299), 1, sym_comment, - ACTIONS(6284), 12, - sym__newline, - anon_sym_SEMI, + STATE(3303), 1, + aux_sym__repeat_newline, + ACTIONS(5930), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222381,15 +224255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99663] = 3, + [101606] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3250), 1, - sym_comment, - ACTIONS(6286), 12, + ACTIONS(5934), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6354), 1, + anon_sym_else, + STATE(3300), 1, + sym_comment, + STATE(3304), 1, + aux_sym__repeat_newline, + ACTIONS(5937), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222399,35 +224276,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99684] = 4, + [101633] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_DASH2, - STATE(3251), 1, - sym_comment, - ACTIONS(6288), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5943), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99707] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3252), 1, + ACTIONS(6356), 1, + anon_sym_else, + STATE(3301), 1, sym_comment, - ACTIONS(4789), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(3305), 1, + aux_sym__repeat_newline, + ACTIONS(5946), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222437,56 +224297,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99728] = 6, + [101660] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6292), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6294), 1, - aux_sym__immediate_decimal_token5, - STATE(3253), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, + ACTIONS(5992), 1, sym__newline, + ACTIONS(6358), 1, + anon_sym_else, + STATE(3302), 1, + sym_comment, + STATE(3307), 1, + aux_sym__repeat_newline, + ACTIONS(5995), 9, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [99755] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [101687] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6296), 1, + ACTIONS(6025), 1, sym__newline, - ACTIONS(6299), 1, - anon_sym_DASH2, - STATE(3254), 1, + ACTIONS(6360), 1, + anon_sym_else, + STATE(3303), 1, sym_comment, - ACTIONS(2096), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4376), 8, - sym_identifier, + STATE(3308), 1, + aux_sym__repeat_newline, + ACTIONS(6028), 9, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99782] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [101714] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3255), 1, - sym_comment, - ACTIONS(6301), 12, + ACTIONS(6032), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6362), 1, + anon_sym_else, + STATE(3304), 1, + sym_comment, + STATE(3309), 1, + aux_sym__repeat_newline, + ACTIONS(6035), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222496,32 +224360,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99803] = 4, + [101741] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6305), 1, - anon_sym_DASH2, - STATE(3256), 1, - sym_comment, - ACTIONS(6303), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1918), 1, sym__newline, + ACTIONS(6364), 1, + anon_sym_else, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3305), 1, + sym_comment, + ACTIONS(1916), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99826] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [101768] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3257), 1, + STATE(3306), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6367), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222534,15 +224399,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99847] = 3, + [101789] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3258), 1, - sym_comment, - ACTIONS(6163), 12, - ts_builtin_sym_end, + ACTIONS(5957), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6369), 1, + anon_sym_else, + STATE(3307), 1, + sym_comment, + STATE(3310), 1, + aux_sym__repeat_newline, + ACTIONS(5960), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222552,14 +224420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99868] = 3, + [101816] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3259), 1, - sym_comment, - ACTIONS(6309), 12, + ACTIONS(1918), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6371), 1, + anon_sym_else, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3308), 1, + sym_comment, + ACTIONS(1916), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222569,34 +224441,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99889] = 4, + [101843] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5721), 1, - anon_sym_DASH2, - STATE(3260), 1, - sym_comment, - ACTIONS(5719), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1918), 1, sym__newline, + ACTIONS(6374), 1, + anon_sym_else, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3309), 1, + sym_comment, + ACTIONS(1916), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99912] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [101870] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3261), 1, - sym_comment, - ACTIONS(6311), 12, + ACTIONS(1918), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6377), 1, + anon_sym_else, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3310), 1, + sym_comment, + ACTIONS(1916), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222606,13 +224483,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99933] = 3, + [101897] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3262), 1, + STATE(3311), 1, sym_comment, - ACTIONS(6313), 12, + ACTIONS(6129), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222624,13 +224501,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99954] = 3, + [101918] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6103), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6380), 1, + anon_sym_RBRACK, + ACTIONS(6382), 1, + anon_sym_DOLLAR2, + ACTIONS(6384), 1, + aux_sym__unquoted_in_list_token2, + STATE(3312), 1, + sym_comment, + STATE(3658), 1, + sym__immediate_decimal, + ACTIONS(6105), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3897), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101957] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3263), 1, + STATE(3313), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6386), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222643,38 +224546,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99975] = 11, + [101978] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1675), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1588), 1, + anon_sym_RBRACE, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1780), 1, anon_sym_DOLLAR, - ACTIONS(6254), 1, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6388), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, + ACTIONS(6390), 1, aux_sym__immediate_decimal_token2, - STATE(3012), 1, - sym__immediate_decimal, - STATE(3264), 1, + STATE(3314), 1, sym_comment, - ACTIONS(1677), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, + STATE(4231), 1, + sym__immediate_decimal, + ACTIONS(6392), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3011), 2, + STATE(4293), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100012] = 3, + [102017] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3265), 1, + STATE(3315), 1, sym_comment, - ACTIONS(6317), 12, + ACTIONS(6394), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222687,12 +224591,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100033] = 3, + [102038] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(3266), 1, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + ACTIONS(6396), 1, + anon_sym_DOT, + STATE(3316), 1, + sym_comment, + STATE(4085), 1, + sym__immediate_decimal, + ACTIONS(6398), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6400), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4147), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102075] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3317), 1, sym_comment, - ACTIONS(6081), 12, + ACTIONS(6214), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222705,57 +224635,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100054] = 6, - ACTIONS(103), 1, + [102096] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6319), 1, - anon_sym_DOT, - ACTIONS(6321), 1, - aux_sym__immediate_decimal_token5, - STATE(3267), 1, + STATE(3318), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(6402), 12, sym__newline, anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100081] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1452), 1, - anon_sym_BANG, - ACTIONS(6323), 1, - anon_sym_QMARK2, - STATE(351), 1, - sym__path_suffix, - STATE(3268), 1, - sym_comment, - ACTIONS(1448), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1446), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [100110] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [102117] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6327), 1, + ACTIONS(6406), 1, anon_sym_DASH2, - STATE(3269), 1, + STATE(3319), 1, sym_comment, - ACTIONS(6325), 11, + ACTIONS(6404), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222767,35 +224672,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100133] = 6, + [102140] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6329), 1, + ACTIONS(1653), 1, + sym__entry_separator, + ACTIONS(1780), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6331), 1, - aux_sym__immediate_decimal_token5, - STATE(3270), 1, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token2, + STATE(3320), 1, sym_comment, - ACTIONS(747), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100160] = 4, + STATE(4251), 1, + sym__immediate_decimal, + ACTIONS(1655), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4237), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102177] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(6414), 1, anon_sym_DASH2, - STATE(3271), 1, + STATE(3321), 1, sym_comment, - ACTIONS(2206), 11, + ACTIONS(6412), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222807,12 +224717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100183] = 3, + [102200] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3272), 1, + STATE(3322), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6416), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222825,125 +224735,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100204] = 12, + [102221] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3323), 1, + sym_comment, + ACTIONS(4832), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [102242] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1667), 1, sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(1780), 1, anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, + ACTIONS(6410), 1, aux_sym__immediate_decimal_token2, - STATE(3273), 1, + STATE(3324), 1, sym_comment, - STATE(4177), 1, + STATE(4254), 1, sym__immediate_decimal, - ACTIONS(6339), 2, + ACTIONS(1669), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6183), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4079), 2, + STATE(4253), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100243] = 4, + [102279] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2212), 1, - anon_sym_DASH2, - STATE(3274), 1, + STATE(3325), 1, sym_comment, - ACTIONS(2210), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6418), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100266] = 4, + [102300] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_DASH2, - STATE(3275), 1, + STATE(3326), 1, sym_comment, - ACTIONS(2226), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6420), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100289] = 6, - ACTIONS(103), 1, + [102321] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6341), 1, - anon_sym_DOT, - ACTIONS(6343), 1, - aux_sym__immediate_decimal_token5, - STATE(3276), 1, + STATE(3327), 1, sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [100316] = 11, - ACTIONS(103), 1, + ACTIONS(5530), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [102342] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3277), 1, + STATE(3328), 1, sym_comment, - STATE(4075), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100353] = 3, + ACTIONS(6286), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [102363] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3278), 1, + STATE(3329), 1, sym_comment, - ACTIONS(6143), 12, - ts_builtin_sym_end, + ACTIONS(6422), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [102384] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3330), 1, + sym_comment, + ACTIONS(6424), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222955,31 +224886,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100374] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2232), 1, - anon_sym_DASH2, - STATE(3279), 1, - sym_comment, - ACTIONS(2230), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100397] = 3, + [102405] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3280), 1, + STATE(3331), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6426), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222992,13 +224905,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100418] = 3, + [102426] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3281), 1, + STATE(3332), 1, sym_comment, - ACTIONS(6087), 12, - ts_builtin_sym_end, + ACTIONS(6428), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223010,15 +224922,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100439] = 3, + anon_sym_RPAREN, + [102447] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3282), 1, - sym_comment, - ACTIONS(6089), 12, - ts_builtin_sym_end, + ACTIONS(2903), 1, sym__newline, - anon_sym_SEMI, + STATE(730), 1, + aux_sym__pipe_separator, + STATE(3333), 1, + sym_comment, + STATE(3433), 1, + aux_sym__repeat_newline, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223028,13 +224944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100460] = 3, + [102474] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3283), 1, + STATE(3334), 1, sym_comment, - ACTIONS(6091), 12, - ts_builtin_sym_end, + ACTIONS(6430), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223046,33 +224961,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100481] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [102495] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6349), 1, - anon_sym_DASH2, - STATE(3284), 1, + ACTIONS(6432), 1, + anon_sym_DOT, + ACTIONS(6434), 1, + aux_sym__immediate_decimal_token5, + STATE(3335), 1, sym_comment, - ACTIONS(6347), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(739), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100504] = 4, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [102522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2236), 1, + ACTIONS(6438), 1, anon_sym_DASH2, - STATE(3285), 1, + STATE(3336), 1, sym_comment, - ACTIONS(2234), 11, + ACTIONS(6436), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223084,39 +225002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100527] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACE, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6335), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, - aux_sym__immediate_decimal_token2, - STATE(3286), 1, - sym_comment, - STATE(4208), 1, - sym__immediate_decimal, - ACTIONS(6339), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100566] = 3, + [102545] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3287), 1, + STATE(3337), 1, sym_comment, - ACTIONS(5548), 12, + ACTIONS(6212), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223129,13 +225020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100587] = 3, + [102566] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3288), 1, + STATE(3338), 1, sym_comment, - ACTIONS(6103), 12, - ts_builtin_sym_end, + ACTIONS(6440), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223147,12 +225037,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100608] = 3, + anon_sym_RPAREN, + [102587] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3289), 1, + STATE(3339), 1, sym_comment, - ACTIONS(6351), 12, + ACTIONS(6442), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223165,14 +225056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100629] = 4, + [102608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(2443), 1, anon_sym_DASH2, - STATE(3290), 1, + STATE(3340), 1, sym_comment, - ACTIONS(2152), 11, + ACTIONS(2441), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223184,97 +225075,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100652] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3291), 1, - sym_comment, - ACTIONS(6353), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100673] = 11, + [102631] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(1673), 1, + sym__entry_separator, + ACTIONS(1780), 1, anon_sym_DOLLAR, - ACTIONS(6254), 1, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, + ACTIONS(6410), 1, aux_sym__immediate_decimal_token2, - STATE(2981), 1, - sym__immediate_decimal, - STATE(3292), 1, + STATE(3341), 1, sym_comment, - ACTIONS(1586), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, + STATE(4258), 1, + sym__immediate_decimal, + ACTIONS(1675), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6183), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2979), 2, + STATE(4255), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100710] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(368), 1, - sym_cell_path, - STATE(3293), 1, - sym_comment, - STATE(3378), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1432), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [100741] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3294), 1, - sym_comment, - ACTIONS(6357), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100762] = 3, + [102668] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3295), 1, + STATE(3342), 1, sym_comment, - ACTIONS(4803), 12, + ACTIONS(6444), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223287,12 +225119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100783] = 3, + [102689] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3296), 1, + STATE(3343), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6446), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223305,51 +225137,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100804] = 3, + [102710] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3297), 1, + ACTIONS(6450), 1, + anon_sym_DASH2, + STATE(3344), 1, sym_comment, - ACTIONS(6361), 12, + ACTIONS(6448), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [100825] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102733] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6363), 1, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(1780), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6365), 1, - aux_sym__immediate_decimal_token5, - STATE(3298), 1, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token2, + STATE(3345), 1, sym_comment, - ACTIONS(747), 4, + STATE(4288), 1, + sym__immediate_decimal, + ACTIONS(1625), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [100852] = 3, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4287), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102770] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3299), 1, + STATE(3346), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6452), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223362,14 +225200,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100873] = 4, + [102791] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1633), 1, + sym__entry_separator, + ACTIONS(1635), 1, + anon_sym_RBRACK, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1780), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6300), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6302), 1, + aux_sym__immediate_decimal_token2, + STATE(3347), 1, + sym_comment, + STATE(4266), 1, + sym__immediate_decimal, + ACTIONS(6304), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4259), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6371), 1, + ACTIONS(5807), 1, anon_sym_DASH2, - STATE(3300), 1, + STATE(3348), 1, sym_comment, - ACTIONS(6369), 11, + ACTIONS(5805), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223381,68 +225246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100896] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3301), 1, - sym_comment, - ACTIONS(6161), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [100917] = 3, + [102853] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3302), 1, - sym_comment, - ACTIONS(6119), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [100938] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3303), 1, - sym_comment, - ACTIONS(6207), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [100959] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2136), 1, anon_sym_DASH2, - STATE(3304), 1, + STATE(3349), 1, sym_comment, - ACTIONS(2238), 11, + ACTIONS(2134), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223454,14 +225265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100982] = 4, + [102876] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2244), 1, + ACTIONS(6456), 1, anon_sym_DASH2, - STATE(3305), 1, + STATE(3350), 1, sym_comment, - ACTIONS(2242), 11, + ACTIONS(6454), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223473,32 +225284,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101005] = 5, + [102899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1960), 1, + ACTIONS(6460), 1, anon_sym_DASH2, - ACTIONS(6373), 1, - sym__newline, - STATE(3306), 2, - aux_sym__repeat_newline, + STATE(3351), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6458), 11, anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101030] = 3, + [102922] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3307), 1, + STATE(3352), 1, sym_comment, - ACTIONS(6376), 12, + ACTIONS(6462), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223511,12 +225321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101051] = 3, + [102943] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3308), 1, + STATE(3353), 1, sym_comment, - ACTIONS(6378), 12, + ACTIONS(6464), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223529,12 +225339,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101072] = 3, + [102964] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6103), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6382), 1, + anon_sym_DOLLAR2, + ACTIONS(6384), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6466), 1, + anon_sym_RBRACK, + STATE(3354), 1, + sym_comment, + STATE(3658), 1, + sym__immediate_decimal, + ACTIONS(6105), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3897), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103003] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3309), 1, + ACTIONS(6470), 1, + anon_sym_DASH2, + STATE(3355), 1, + sym_comment, + ACTIONS(6468), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103026] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + sym__space, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(6472), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6474), 1, + aux_sym__immediate_decimal_token2, + STATE(3089), 1, + sym__immediate_decimal, + STATE(3356), 1, + sym_comment, + ACTIONS(1655), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6056), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3087), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103063] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__space, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(6472), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6474), 1, + aux_sym__immediate_decimal_token2, + STATE(3036), 1, + sym__immediate_decimal, + STATE(3357), 1, + sym_comment, + ACTIONS(1625), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6056), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3035), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103100] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(6218), 1, + anon_sym_DOLLAR, + ACTIONS(6220), 1, + anon_sym_LPAREN2, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + STATE(3358), 1, + sym_comment, + STATE(4288), 1, + sym__immediate_decimal, + ACTIONS(1625), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6226), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4287), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103137] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6476), 1, + anon_sym_DOT, + ACTIONS(6478), 1, + aux_sym__immediate_decimal_token5, + STATE(3359), 1, + sym_comment, + ACTIONS(739), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [103164] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3360), 1, sym_comment, - ACTIONS(6380), 12, + ACTIONS(6480), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223547,13 +225502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101093] = 3, + [103185] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3310), 1, + STATE(3361), 1, sym_comment, - ACTIONS(5885), 12, - ts_builtin_sym_end, + ACTIONS(6482), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223565,12 +225519,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101114] = 3, + anon_sym_RPAREN, + [103206] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6484), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6486), 1, + aux_sym__immediate_decimal_token5, + STATE(3362), 1, + sym_comment, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [103233] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + sym__space, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(6472), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6474), 1, + aux_sym__immediate_decimal_token2, + STATE(3091), 1, + sym__immediate_decimal, + STATE(3363), 1, + sym_comment, + ACTIONS(1669), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6056), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3090), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103270] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3311), 1, + STATE(3364), 1, sym_comment, - ACTIONS(6382), 12, + ACTIONS(6488), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223583,13 +225585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101135] = 3, + [103291] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3312), 1, + STATE(3365), 1, sym_comment, - ACTIONS(6141), 12, - ts_builtin_sym_end, + ACTIONS(6490), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223601,12 +225602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101156] = 3, + anon_sym_RPAREN, + [103312] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3313), 1, + STATE(3366), 1, sym_comment, - ACTIONS(6384), 12, + ACTIONS(4844), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223619,31 +225621,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101177] = 4, + [103333] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6388), 1, - anon_sym_DASH2, - STATE(3314), 1, + ACTIONS(6492), 1, + anon_sym_DOT, + ACTIONS(6494), 1, + aux_sym__immediate_decimal_token5, + STATE(3367), 1, sym_comment, - ACTIONS(6386), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 8, + anon_sym_if, sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [101200] = 3, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [103360] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3315), 1, + STATE(3368), 1, sym_comment, - ACTIONS(6390), 12, + ACTIONS(6216), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223655,13 +225660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [101221] = 3, + [103381] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3316), 1, + STATE(3369), 1, sym_comment, - ACTIONS(6392), 12, + ACTIONS(6185), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223673,19 +225678,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [101242] = 6, - ACTIONS(3), 1, + [103402] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6023), 1, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1588), 1, + anon_sym_RBRACE, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6179), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6181), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6496), 1, + anon_sym_DOT, + STATE(3370), 1, + sym_comment, + STATE(3960), 1, + sym__immediate_decimal, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3862), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103441] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1673), 1, + sym__space, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(6472), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6474), 1, + aux_sym__immediate_decimal_token2, + STATE(3095), 1, + sym__immediate_decimal, + STATE(3371), 1, + sym_comment, + ACTIONS(1675), 2, sym__newline, - ACTIONS(6394), 1, - anon_sym_else, - STATE(3317), 1, + anon_sym_SEMI, + ACTIONS(6056), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3093), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103478] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3372), 1, sym_comment, - STATE(3321), 1, - aux_sym__repeat_newline, - ACTIONS(6026), 9, + ACTIONS(6205), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223695,18 +225749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101269] = 6, + [103499] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, - sym__newline, - ACTIONS(6396), 1, - anon_sym_else, - STATE(3318), 1, + STATE(3373), 1, sym_comment, - STATE(3322), 1, - aux_sym__repeat_newline, - ACTIONS(6033), 9, + ACTIONS(6498), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223716,18 +225766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101296] = 6, + anon_sym_RPAREN, + [103520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, - sym__newline, - ACTIONS(6398), 1, - anon_sym_else, - STATE(3319), 1, + STATE(3374), 1, sym_comment, - STATE(3323), 1, - aux_sym__repeat_newline, - ACTIONS(5820), 9, + ACTIONS(6500), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223737,18 +225784,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101323] = 6, + anon_sym_RPAREN, + [103541] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + sym__entry_separator, + ACTIONS(6218), 1, + anon_sym_DOLLAR, + ACTIONS(6220), 1, + anon_sym_LPAREN2, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + STATE(3375), 1, + sym_comment, + STATE(4251), 1, + sym__immediate_decimal, + ACTIONS(1655), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6226), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4237), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103578] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + sym__entry_separator, + ACTIONS(6218), 1, + anon_sym_DOLLAR, + ACTIONS(6220), 1, + anon_sym_LPAREN2, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + STATE(3376), 1, + sym_comment, + STATE(4254), 1, + sym__immediate_decimal, + ACTIONS(1669), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6226), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4253), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103615] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, - sym__newline, - ACTIONS(6400), 1, - anon_sym_else, - STATE(3320), 1, + STATE(3377), 1, sym_comment, - STATE(3324), 1, - aux_sym__repeat_newline, - ACTIONS(5953), 9, + ACTIONS(4846), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223758,39 +225854,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101350] = 6, + anon_sym_RPAREN, + [103636] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, - sym__newline, - ACTIONS(6402), 1, - anon_sym_else, - STATE(3321), 1, + ACTIONS(6450), 1, + anon_sym_DASH2, + STATE(3378), 1, sym_comment, - STATE(3325), 1, - aux_sym__repeat_newline, - ACTIONS(5797), 9, + ACTIONS(6448), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [101377] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103659] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1673), 1, + sym__entry_separator, + ACTIONS(6218), 1, + anon_sym_DOLLAR, + ACTIONS(6220), 1, + anon_sym_LPAREN2, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + STATE(3379), 1, + sym_comment, + STATE(4258), 1, + sym__immediate_decimal, + ACTIONS(1675), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6226), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4255), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103696] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5849), 1, - sym__newline, - ACTIONS(6404), 1, - anon_sym_else, - STATE(3322), 1, + STATE(3380), 1, sym_comment, - STATE(3326), 1, - aux_sym__repeat_newline, - ACTIONS(5852), 9, + ACTIONS(6502), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223800,18 +225917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101404] = 6, + anon_sym_RPAREN, + [103717] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6406), 1, + ACTIONS(6504), 1, anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3323), 1, + STATE(3381), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6246), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223821,39 +225937,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101431] = 6, + [103740] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, - sym__newline, - ACTIONS(6409), 1, - anon_sym_else, - STATE(3324), 1, + ACTIONS(2068), 1, + anon_sym_DASH2, + STATE(3382), 1, sym_comment, - STATE(3327), 1, - aux_sym__repeat_newline, - ACTIONS(6001), 9, + ACTIONS(2066), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [101458] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103763] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6506), 1, + anon_sym_DOT, + ACTIONS(6508), 1, + aux_sym__immediate_decimal_token5, + STATE(3383), 1, + sym_comment, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [103790] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(5793), 1, + anon_sym_DASH2, + STATE(3384), 1, + sym_comment, + ACTIONS(5791), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6411), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3325), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103813] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3385), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6510), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223863,18 +226013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101485] = 6, + anon_sym_RPAREN, + [103834] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6414), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3326), 1, + STATE(3386), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6512), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223884,18 +226031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101512] = 6, + anon_sym_RPAREN, + [103855] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6417), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3327), 1, + STATE(3387), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6514), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223905,14 +226049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101539] = 4, + anon_sym_RPAREN, + [103876] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6422), 1, + ACTIONS(6518), 1, anon_sym_DASH2, - STATE(3328), 1, + STATE(3388), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(6516), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223924,12 +226069,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101562] = 3, + [103899] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3329), 1, + STATE(3389), 1, sym_comment, - ACTIONS(6424), 12, + ACTIONS(6248), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223941,57 +226087,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [101583] = 3, + [103920] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3330), 1, + ACTIONS(2076), 1, + anon_sym_DASH2, + STATE(3390), 1, sym_comment, - ACTIONS(6426), 12, + ACTIONS(2074), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [101604] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1596), 1, - anon_sym_LBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6428), 1, - anon_sym_DOT, - STATE(3331), 1, - sym_comment, - STATE(3892), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4186), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101641] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103943] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3332), 1, + STATE(3391), 1, sym_comment, - ACTIONS(4791), 12, + ACTIONS(6520), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224004,12 +226124,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101662] = 3, + [103964] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1442), 1, + anon_sym_BANG, + ACTIONS(6522), 1, + anon_sym_QMARK2, + STATE(352), 1, + sym__path_suffix, + STATE(3392), 1, + sym_comment, + ACTIONS(1434), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1432), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [103993] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3333), 1, + STATE(3393), 1, sym_comment, - ACTIONS(6434), 12, + ACTIONS(6524), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224022,13 +226164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101683] = 3, + [104014] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3334), 1, + STATE(3394), 1, sym_comment, - ACTIONS(4783), 12, - ts_builtin_sym_end, + ACTIONS(6526), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224040,208 +226181,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101704] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3335), 1, - sym_comment, - STATE(4075), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101741] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3336), 1, - sym_comment, - STATE(4116), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4115), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101778] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3337), 1, - sym_comment, - STATE(4119), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4117), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101815] = 11, + anon_sym_RPAREN, + [104035] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1675), 1, + ACTIONS(1633), 1, sym__entry_separator, - ACTIONS(6069), 1, + ACTIONS(1635), 1, + anon_sym_RBRACE, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1780), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(6388), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6390), 1, aux_sym__immediate_decimal_token2, - STATE(3338), 1, + STATE(3395), 1, sym_comment, - STATE(4122), 1, + STATE(4234), 1, sym__immediate_decimal, - ACTIONS(1677), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, + ACTIONS(6392), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4121), 2, + STATE(4259), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101852] = 12, - ACTIONS(103), 1, + [104074] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, + ACTIONS(6528), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6436), 1, - anon_sym_RBRACK, - STATE(3339), 1, + ACTIONS(6530), 1, + aux_sym__immediate_decimal_token5, + STATE(3396), 1, sym_comment, - STATE(3603), 1, - sym__immediate_decimal, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3860), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101891] = 3, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [104101] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3340), 1, + ACTIONS(2451), 1, + anon_sym_DASH2, + STATE(3397), 1, sym_comment, - ACTIONS(6438), 12, + ACTIONS(2449), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [101912] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104124] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3341), 1, + ACTIONS(2455), 1, + anon_sym_DASH2, + STATE(3398), 1, sym_comment, - ACTIONS(6440), 12, + ACTIONS(2453), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [101933] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, - aux_sym__immediate_decimal_token2, - STATE(3342), 1, - sym_comment, - STATE(4286), 1, - sym__immediate_decimal, - ACTIONS(6446), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101972] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, + ACTIONS(6534), 1, anon_sym_DASH2, - STATE(3343), 1, + STATE(3399), 1, sym_comment, - ACTIONS(2198), 11, + ACTIONS(6532), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224253,41 +226287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101995] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6448), 1, - anon_sym_DOT, - STATE(3344), 1, - sym_comment, - STATE(3937), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102034] = 4, + [104170] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(2471), 1, anon_sym_DASH2, - STATE(3345), 1, + STATE(3400), 1, sym_comment, - ACTIONS(2100), 11, + ACTIONS(2469), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224299,33 +226306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102057] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6450), 1, - anon_sym_else, - STATE(3346), 1, - sym_comment, - ACTIONS(6043), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [102080] = 4, + [104193] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, + ACTIONS(2475), 1, anon_sym_DASH2, - STATE(3347), 1, + STATE(3401), 1, sym_comment, - ACTIONS(2076), 11, + ACTIONS(2473), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224337,33 +226325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102103] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6452), 1, - anon_sym_DOT, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - STATE(3348), 1, - sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [102130] = 3, + [104216] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3349), 1, + STATE(3402), 1, sym_comment, - ACTIONS(6456), 12, + ACTIONS(6536), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224376,35 +226343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102151] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6460), 1, - aux_sym__immediate_decimal_token5, - STATE(3350), 1, - sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [102178] = 4, + [104237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, + ACTIONS(6540), 1, anon_sym_DASH2, - STATE(3351), 1, + STATE(3403), 1, sym_comment, - ACTIONS(2120), 11, + ACTIONS(6538), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224416,12 +226362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102201] = 3, + [104260] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3352), 1, + STATE(3404), 1, sym_comment, - ACTIONS(6462), 12, + ACTIONS(6542), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224434,82 +226380,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102222] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACK, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, - aux_sym__immediate_decimal_token2, - STATE(3353), 1, - sym_comment, - STATE(4145), 1, - sym__immediate_decimal, - ACTIONS(6446), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102261] = 3, + [104281] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3354), 1, + ACTIONS(6546), 1, + anon_sym_DASH2, + STATE(3405), 1, sym_comment, - ACTIONS(6464), 12, + ACTIONS(6544), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [102282] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(73), 1, - aux_sym_expr_unary_token1, - ACTIONS(1649), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(3355), 1, - sym_comment, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(1305), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [102314] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104304] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2098), 1, + ACTIONS(5811), 1, anon_sym_DASH2, - STATE(3356), 1, + STATE(3406), 1, sym_comment, - ACTIONS(2096), 10, + ACTIONS(5809), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224517,172 +226414,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102336] = 11, - ACTIONS(103), 1, + [104327] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(6468), 1, - anon_sym_DOT_DOT2, - ACTIONS(6472), 1, - sym_filesize_unit, - ACTIONS(6474), 1, - sym_duration_unit, - STATE(3357), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(3407), 1, sym_comment, - STATE(4728), 1, + STATE(4694), 1, + sym__immediate_decimal, + ACTIONS(6548), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6550), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(829), 2, sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6470), 2, + sym_val_variable, + [104361] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6508), 1, + aux_sym__immediate_decimal_token5, + STATE(3408), 1, + sym_comment, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [102372] = 5, + sym_filesize_unit, + sym_duration_unit, + [104385] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6476), 1, + ACTIONS(6552), 1, aux_sym__immediate_decimal_token5, - STATE(3358), 1, + STATE(3409), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(755), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 6, + ACTIONS(757), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102396] = 9, - ACTIONS(3), 1, + [104409] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4819), 1, - anon_sym_DASH2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - ACTIONS(5168), 1, - anon_sym_LPAREN, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(3359), 1, + ACTIONS(6554), 1, + anon_sym_DOT, + ACTIONS(6556), 1, + aux_sym__immediate_decimal_token5, + STATE(3410), 1, sym_comment, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(1305), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [102428] = 5, + ACTIONS(739), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [104435] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6343), 1, + ACTIONS(6558), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6560), 1, aux_sym__immediate_decimal_token5, - STATE(3360), 1, + STATE(3411), 1, sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, + ACTIONS(747), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + sym__unquoted_pattern_in_record, + ACTIONS(749), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [102452] = 10, + [104461] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(1633), 1, anon_sym_LBRACE, - ACTIONS(1639), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(3361), 1, + STATE(3412), 1, sym_comment, - STATE(4787), 1, + STATE(4759), 1, sym__immediate_decimal, - ACTIONS(6478), 2, + ACTIONS(6548), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + ACTIONS(6550), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(871), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [102486] = 6, + [104495] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6482), 1, + ACTIONS(6562), 1, anon_sym_DOT, - ACTIONS(6484), 1, + ACTIONS(6564), 1, aux_sym__immediate_decimal_token5, - STATE(3362), 1, + STATE(3413), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, ACTIONS(741), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102512] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_DASH2, - STATE(3363), 1, - sym_comment, - STATE(3371), 1, - aux_sym_parameter_repeat2, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5332), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102538] = 6, + [104521] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6486), 1, - anon_sym_DOT, - ACTIONS(6488), 1, + ACTIONS(6566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6568), 1, aux_sym__immediate_decimal_token5, - STATE(3364), 1, + STATE(3414), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 7, + ACTIONS(749), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -224690,82 +226584,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102564] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3365), 1, - sym_comment, - ACTIONS(2531), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [102588] = 11, + [104547] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(1752), 1, + ACTIONS(1633), 1, + sym__entry_separator, + ACTIONS(1635), 1, + anon_sym_RBRACE, + ACTIONS(1780), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(4969), 1, - sym__unquoted_pattern, - ACTIONS(6490), 1, - anon_sym_DOT_DOT2, - ACTIONS(6494), 1, - sym_filesize_unit, - ACTIONS(6496), 1, - sym_duration_unit, - STATE(3366), 1, + ACTIONS(6408), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token2, + STATE(3415), 1, sym_comment, - STATE(4625), 1, + STATE(4672), 1, + sym__immediate_decimal, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4259), 2, sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6492), 2, + sym_val_variable, + [104583] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6478), 1, + aux_sym__immediate_decimal_token5, + STATE(3416), 1, + sym_comment, + ACTIONS(739), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [102624] = 6, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [104607] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6500), 1, - anon_sym_DASH2, - STATE(3367), 1, + ACTIONS(6570), 1, + aux_sym__immediate_decimal_token5, + STATE(3417), 1, sym_comment, - STATE(3371), 1, - aux_sym_parameter_repeat2, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(6498), 7, - sym_identifier, - anon_sym_PIPE, + ACTIONS(755), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102650] = 5, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(757), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [104631] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6572), 1, + anon_sym_DOT, + ACTIONS(6574), 1, aux_sym__immediate_decimal_token5, - STATE(3368), 1, + STATE(3418), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, + ACTIONS(741), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -224773,59 +226667,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102674] = 8, + [104657] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6576), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(346), 1, sym_path, - STATE(3369), 1, + STATE(3419), 1, sym_comment, - STATE(3378), 1, + STATE(3535), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3663), 1, + STATE(3689), 1, sym_cell_path, - ACTIONS(1641), 3, + ACTIONS(1677), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1643), 4, + ACTIONS(1679), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [102704] = 5, - ACTIONS(103), 1, + [104687] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6504), 1, + ACTIONS(6578), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6580), 1, aux_sym__immediate_decimal_token5, - STATE(3370), 1, + STATE(3420), 1, sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(749), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [102728] = 5, + [104713] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6511), 1, + ACTIONS(6587), 1, anon_sym_DASH2, - ACTIONS(6508), 2, + ACTIONS(6584), 2, sym__newline, anon_sym_COMMA, - STATE(3371), 2, + STATE(3421), 2, sym_comment, aux_sym_parameter_repeat2, - ACTIONS(6506), 7, + ACTIONS(6582), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -224833,409 +226728,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102752] = 4, + [104737] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3372), 1, + ACTIONS(6576), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3422), 1, sym_comment, - ACTIONS(1480), 3, + STATE(3535), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3708), 1, + sym_cell_path, + ACTIONS(1647), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1478), 8, + ACTIONS(1649), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102774] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6282), 1, - aux_sym__immediate_decimal_token5, - STATE(3373), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102798] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5378), 1, - anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(3374), 1, - sym_comment, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5376), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102824] = 10, + [104767] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, - anon_sym_LPAREN2, ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1623), 1, + anon_sym_LBRACE, + ACTIONS(1627), 1, anon_sym_DOT, - ACTIONS(2878), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(3375), 1, + STATE(3423), 1, sym_comment, - STATE(4183), 1, + STATE(4146), 1, sym__immediate_decimal, - ACTIONS(6430), 2, + ACTIONS(6398), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, + ACTIONS(6400), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4178), 2, + STATE(4145), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [102858] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3376), 1, - sym_comment, - ACTIONS(1545), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1543), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102880] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3377), 1, - sym_comment, - ACTIONS(1468), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1466), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102902] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3378), 1, - sym_comment, - STATE(3380), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1458), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [102930] = 4, + [104801] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3379), 1, + ACTIONS(6434), 1, + aux_sym__immediate_decimal_token5, + STATE(3424), 1, sym_comment, - ACTIONS(1472), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1470), 8, + ACTIONS(739), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102952] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3380), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1524), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [102978] = 9, + [104825] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(173), 1, aux_sym_expr_unary_token1, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(3381), 1, + STATE(3425), 1, sym_comment, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(953), 4, + STATE(905), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103010] = 4, + [104857] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3382), 1, - sym_comment, - ACTIONS(1476), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1474), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, + ACTIONS(6576), 1, anon_sym_DOT2, - [103032] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3383), 1, + STATE(346), 1, + sym_path, + STATE(374), 1, + sym_cell_path, + STATE(3426), 1, sym_comment, - ACTIONS(1516), 3, + STATE(3535), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1446), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1514), 8, + ACTIONS(1444), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [103054] = 6, + [104887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6518), 1, + ACTIONS(2148), 1, anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(3384), 1, + STATE(3427), 1, sym_comment, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(6516), 7, + ACTIONS(2146), 10, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103080] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1596), 1, - anon_sym_LBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3385), 1, - sym_comment, - STATE(4713), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103114] = 8, + [104909] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3378), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3386), 1, + ACTIONS(6589), 1, + aux_sym__immediate_decimal_token5, + STATE(3428), 1, sym_comment, - STATE(3661), 1, - sym_cell_path, - ACTIONS(1679), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1681), 4, + ACTIONS(755), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [103144] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3387), 1, - sym_comment, - STATE(4753), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103180] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6321), 1, - aux_sym__immediate_decimal_token5, - STATE(3388), 1, - sym_comment, - ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, + sym__unquoted_pattern_in_list, + ACTIONS(757), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103204] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACE, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3389), 1, + [104933] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6593), 1, + anon_sym_DASH2, + STATE(3421), 1, + aux_sym_parameter_repeat2, + STATE(3429), 1, sym_comment, - STATE(4790), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103240] = 6, + ACTIONS(1474), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(6591), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104959] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6520), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6522), 1, - aux_sym__immediate_decimal_token5, - STATE(3390), 1, + ACTIONS(5526), 1, + anon_sym_DASH2, + STATE(3421), 1, + aux_sym_parameter_repeat2, + STATE(3430), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, + ACTIONS(1474), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(5524), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103266] = 6, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104985] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5318), 1, + ACTIONS(6597), 1, anon_sym_DASH2, - STATE(3371), 1, + STATE(3421), 1, aux_sym_parameter_repeat2, - STATE(3391), 1, + STATE(3431), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(1474), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5316), 7, + ACTIONS(6595), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -225243,62 +226935,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103292] = 6, + [105011] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token5, - STATE(3392), 1, - sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 6, + ACTIONS(908), 1, + sym__entry_separator, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6599), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(6601), 1, + anon_sym_DOT_DOT2, + ACTIONS(6605), 1, sym_filesize_unit, + ACTIONS(6607), 1, sym_duration_unit, - sym__entry_separator, - [103318] = 9, + STATE(3432), 1, + sym_comment, + STATE(4720), 1, + sym__expr_parenthesized_immediate, + ACTIONS(866), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6603), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [105047] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3433), 1, + sym_comment, + ACTIONS(2610), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [105071] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1774), 1, + ACTIONS(1778), 1, anon_sym_LPAREN, - ACTIONS(2690), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(2878), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(3393), 1, + STATE(3434), 1, sym_comment, - ACTIONS(1937), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(953), 4, + STATE(905), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103350] = 6, + [105103] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6530), 1, + ACTIONS(5522), 1, anon_sym_DASH2, - STATE(3371), 1, + STATE(3421), 1, aux_sym_parameter_repeat2, - STATE(3394), 1, + STATE(3435), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(1474), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6528), 7, + ACTIONS(5520), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -225306,118 +227022,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103376] = 4, + [105129] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6532), 1, - anon_sym_else, - STATE(3395), 1, + ACTIONS(5510), 1, + anon_sym_DASH2, + STATE(3421), 1, + aux_sym_parameter_repeat2, + STATE(3436), 1, sym_comment, - ACTIONS(6043), 10, + ACTIONS(1474), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(5508), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [103398] = 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105155] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(73), 1, + aux_sym_expr_unary_token1, + ACTIONS(1657), 1, + anon_sym_DOLLAR, + ACTIONS(4862), 1, + anon_sym_LPAREN, + ACTIONS(4866), 1, + anon_sym_DASH2, + STATE(1274), 1, + sym__expr_unary_minus, + STATE(3437), 1, + sym_comment, + ACTIONS(2399), 2, + anon_sym_true, + anon_sym_false, + STATE(1296), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [105187] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2406), 1, + ACTIONS(2429), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - STATE(945), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(3396), 1, + STATE(3438), 1, sym_comment, - ACTIONS(2398), 2, + ACTIONS(2421), 2, anon_sym_true, anon_sym_false, - STATE(953), 4, + STATE(905), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103430] = 6, - ACTIONS(103), 1, + [105219] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6534), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6536), 1, + ACTIONS(2686), 1, + aux_sym_expr_unary_token1, + ACTIONS(4866), 1, + anon_sym_DASH2, + ACTIONS(4881), 1, + anon_sym_DOLLAR, + ACTIONS(5329), 1, + anon_sym_LPAREN, + STATE(1274), 1, + sym__expr_unary_minus, + STATE(3439), 1, + sym_comment, + ACTIONS(2399), 2, + anon_sym_true, + anon_sym_false, + STATE(1296), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [105251] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6609), 1, aux_sym__immediate_decimal_token5, - STATE(3397), 1, + STATE(3440), 1, sym_comment, - ACTIONS(747), 3, - anon_sym_RBRACE, + ACTIONS(755), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(757), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [103456] = 5, + [105275] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6454), 1, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1588), 1, + anon_sym_RBRACE, + ACTIONS(1780), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token2, + STATE(3441), 1, + sym_comment, + STATE(4733), 1, + sym__immediate_decimal, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4293), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105311] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6611), 1, + anon_sym_else, + STATE(3442), 1, + sym_comment, + ACTIONS(6246), 10, + sym__newline, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [105333] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, aux_sym__immediate_decimal_token5, - STATE(3398), 1, + STATE(3443), 1, sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(739), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(741), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [103480] = 5, - ACTIONS(103), 1, + [105357] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6538), 1, - aux_sym__immediate_decimal_token5, - STATE(3399), 1, + ACTIONS(6615), 1, + anon_sym_DASH2, + STATE(3421), 1, + aux_sym_parameter_repeat2, + STATE(3444), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(1474), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(6613), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105383] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(908), 1, + sym__space, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(5172), 1, + sym__unquoted_pattern, + ACTIONS(6617), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + ACTIONS(6621), 1, + sym_filesize_unit, + ACTIONS(6623), 1, + sym_duration_unit, + STATE(3445), 1, + sym_comment, + STATE(4710), 1, + sym__expr_parenthesized_immediate, + ACTIONS(866), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6619), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [105419] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6625), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6627), 1, + aux_sym__immediate_decimal_token5, + STATE(3446), 1, + sym_comment, + ACTIONS(1738), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [103504] = 6, + ACTIONS(1740), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [105444] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6540), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6542), 1, + ACTIONS(6564), 1, aux_sym__immediate_decimal_token5, - STATE(3400), 1, + STATE(3447), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, + ACTIONS(741), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -225425,1002 +227274,1041 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103530] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3401), 1, - sym_comment, - STATE(3922), 1, - sym__immediate_decimal, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4234), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103563] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(6544), 1, - anon_sym_DQUOTE, - ACTIONS(6546), 1, - anon_sym_SQUOTE, - ACTIONS(6548), 1, - anon_sym_BQUOTE, - ACTIONS(6550), 1, - aux_sym_path_token1, - STATE(2374), 1, - sym_val_string, - STATE(3402), 1, - sym_comment, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103594] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(6552), 1, - anon_sym_DQUOTE, - ACTIONS(6554), 1, - anon_sym_SQUOTE, - ACTIONS(6556), 1, - anon_sym_BQUOTE, - ACTIONS(6558), 1, - aux_sym_path_token1, - STATE(3403), 1, - sym_comment, - STATE(3610), 1, - sym_val_string, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103625] = 9, + [105467] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DQUOTE, - ACTIONS(6562), 1, - anon_sym_SQUOTE, - ACTIONS(6564), 1, - anon_sym_BQUOTE, - ACTIONS(6566), 1, - aux_sym_path_token1, - ACTIONS(6568), 1, - sym_raw_string_begin, - STATE(336), 1, - sym_val_string, - STATE(3404), 1, + STATE(3448), 1, sym_comment, - STATE(365), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103656] = 10, + ACTIONS(747), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105488] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1454), 1, + anon_sym_BANG, + STATE(3449), 1, + sym_comment, + ACTIONS(1452), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1450), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [105511] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(1653), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, anon_sym_DOLLAR, - ACTIONS(5743), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6570), 1, - aux_sym__immediate_decimal_token2, - STATE(3405), 1, - sym_comment, - STATE(3600), 1, + STATE(848), 1, sym__immediate_decimal, - ACTIONS(6572), 2, + STATE(3450), 1, + sym_comment, + ACTIONS(6400), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3625), 2, + ACTIONS(6629), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(847), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103689] = 10, - ACTIONS(103), 1, + [105542] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(1667), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, anon_sym_DOLLAR, - ACTIONS(5934), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6574), 1, - aux_sym__immediate_decimal_token2, - STATE(3406), 1, - sym_comment, - STATE(3914), 1, + STATE(864), 1, sym__immediate_decimal, - ACTIONS(6576), 2, + STATE(3451), 1, + sym_comment, + ACTIONS(6400), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + ACTIONS(6629), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(849), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103722] = 4, - ACTIONS(103), 1, + [105573] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3407), 1, + ACTIONS(6631), 1, + aux_sym__immediate_decimal_token5, + STATE(3452), 1, sym_comment, - ACTIONS(771), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(757), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103743] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6578), 1, - anon_sym_DQUOTE, - ACTIONS(6580), 1, - anon_sym_SQUOTE, - ACTIONS(6582), 1, - anon_sym_BQUOTE, - ACTIONS(6584), 1, - aux_sym_path_token1, - ACTIONS(6586), 1, - sym_raw_string_begin, - STATE(374), 1, - sym_val_string, - STATE(3408), 1, - sym_comment, - STATE(391), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103774] = 10, + [105596] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, - ACTIONS(6047), 1, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4956), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, + ACTIONS(4958), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3409), 1, - sym_comment, - STATE(3719), 1, + ACTIONS(5213), 1, + aux_sym_unquoted_token2, + STATE(2584), 1, sym__immediate_decimal, - ACTIONS(6051), 2, + STATE(3453), 1, + sym_comment, + ACTIONS(4960), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(2779), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103807] = 10, + [105629] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5837), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6248), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(6442), 1, + ACTIONS(4994), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, + ACTIONS(4996), 1, aux_sym__immediate_decimal_token2, - STATE(3410), 1, - sym_comment, - STATE(4350), 1, + ACTIONS(5213), 1, + aux_sym_unquoted_token2, + STATE(2892), 1, sym__immediate_decimal, - ACTIONS(6446), 2, + STATE(3454), 1, + sym_comment, + ACTIONS(4998), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(3216), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103840] = 10, + [105662] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(6095), 1, anon_sym_DOLLAR, - ACTIONS(6478), 1, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6101), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6103), 1, aux_sym__immediate_decimal_token2, - STATE(3411), 1, + ACTIONS(6384), 1, + aux_sym__unquoted_in_list_token2, + STATE(3455), 1, sym_comment, - STATE(4660), 1, + STATE(3658), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6105), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(3897), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103873] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6484), 1, - aux_sym__immediate_decimal_token5, - STATE(3412), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103896] = 6, + [105695] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6592), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6594), 1, - aux_sym__immediate_decimal_token5, - STATE(3413), 1, - sym_comment, - ACTIONS(1726), 4, - sym__space, + ACTIONS(6218), 1, + anon_sym_DOLLAR, + ACTIONS(6220), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [103921] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3414), 1, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6384), 1, + aux_sym__unquoted_in_list_token2, + STATE(3456), 1, sym_comment, - ACTIONS(849), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103942] = 9, + STATE(4033), 1, + sym__immediate_decimal, + ACTIONS(6226), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4377), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105728] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(6596), 1, + ACTIONS(6633), 1, anon_sym_DQUOTE, - ACTIONS(6598), 1, + ACTIONS(6635), 1, anon_sym_SQUOTE, - ACTIONS(6600), 1, + ACTIONS(6637), 1, anon_sym_BQUOTE, - ACTIONS(6602), 1, + ACTIONS(6639), 1, aux_sym_path_token1, - STATE(406), 1, + STATE(401), 1, sym_val_string, - STATE(3415), 1, + STATE(3457), 1, sym_comment, - STATE(415), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [103973] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6604), 1, - anon_sym_DOT, - ACTIONS(6606), 1, - aux_sym__immediate_decimal_token5, - STATE(3416), 1, - sym_comment, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [103998] = 4, + [105759] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6299), 1, - anon_sym_DASH2, - STATE(3417), 1, - sym_comment, - ACTIONS(4376), 9, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1673), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [104019] = 11, + STATE(869), 1, + sym__immediate_decimal, + STATE(3458), 1, + sym_comment, + ACTIONS(6400), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6629), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(867), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105790] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, + STATE(3459), 1, + sym_comment, + ACTIONS(747), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(6608), 1, anon_sym_DOT_DOT2, - ACTIONS(6612), 1, - sym_filesize_unit, - ACTIONS(6614), 1, - sym_duration_unit, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - STATE(3418), 1, - sym_comment, - STATE(4630), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6610), 2, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [104054] = 5, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [105811] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6488), 1, + ACTIONS(6556), 1, aux_sym__immediate_decimal_token5, - STATE(3419), 1, + STATE(3460), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(739), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + sym__unquoted_pattern_in_record, + ACTIONS(741), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104077] = 10, + sym__entry_separator, + [105834] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4969), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(5862), 1, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(6398), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, + ACTIONS(6641), 1, aux_sym__immediate_decimal_token2, - STATE(3420), 1, + STATE(3461), 1, sym_comment, - STATE(3608), 1, + STATE(4025), 1, sym__immediate_decimal, - ACTIONS(5866), 2, + ACTIONS(6643), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3853), 2, + STATE(4132), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104110] = 10, + [105867] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4969), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(6055), 1, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(6548), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, + ACTIONS(6645), 1, aux_sym__immediate_decimal_token2, - STATE(3421), 1, + STATE(3462), 1, sym_comment, - STATE(3961), 1, + STATE(4724), 1, sym__immediate_decimal, - ACTIONS(6059), 2, + ACTIONS(6647), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2930), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104143] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3022), 1, - sym_raw_string_begin, - ACTIONS(6550), 1, - aux_sym_path_token1, - ACTIONS(6618), 1, - anon_sym_DQUOTE, - ACTIONS(6620), 1, - anon_sym_SQUOTE, - ACTIONS(6622), 1, - anon_sym_BQUOTE, - STATE(2374), 1, - sym_val_string, - STATE(3422), 1, - sym_comment, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [104174] = 6, + [105900] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6624), 1, + ACTIONS(6649), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6626), 1, + ACTIONS(6651), 1, aux_sym__immediate_decimal_token5, - STATE(3423), 1, + STATE(3463), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(1738), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1728), 4, + ACTIONS(1740), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [104199] = 4, + [105925] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3424), 1, + ACTIONS(6653), 1, + anon_sym_DOT, + ACTIONS(6655), 1, + aux_sym__immediate_decimal_token5, + STATE(3464), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(1750), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1752), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [105950] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3465), 1, + sym_comment, + ACTIONS(755), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(749), 6, + ACTIONS(757), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104220] = 4, - ACTIONS(3), 1, + [105971] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3425), 1, + STATE(3466), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1507), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1505), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [105992] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3467), 1, + sym_comment, + ACTIONS(789), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(791), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104241] = 6, - ACTIONS(3), 1, + sym__entry_separator, + [106013] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6628), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6630), 1, - aux_sym__immediate_decimal_token5, - STATE(3426), 1, + STATE(3468), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [106034] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1724), 1, sym__unquoted_pattern, - ACTIONS(1726), 6, + ACTIONS(6657), 1, + anon_sym_DOT_DOT2, + ACTIONS(6661), 1, + sym_filesize_unit, + ACTIONS(6663), 1, + sym_duration_unit, + STATE(3469), 1, + sym_comment, + ACTIONS(6659), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(908), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, + [106063] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3470), 1, + sym_comment, + ACTIONS(1460), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [104266] = 9, - ACTIONS(3), 1, + sym__entry_separator, + ACTIONS(1458), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [106084] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + STATE(3471), 1, + sym_comment, + ACTIONS(1511), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1509), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [106105] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(1667), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(5086), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5088), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5270), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6665), 1, anon_sym_DOLLAR, - STATE(737), 1, + STATE(2685), 1, sym__immediate_decimal, - STATE(3427), 1, + STATE(3472), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6667), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(736), 2, + STATE(2964), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104297] = 9, - ACTIONS(3), 1, + [106138] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(1671), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(5191), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5193), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5270), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6665), 1, anon_sym_DOLLAR, - STATE(739), 1, + STATE(3001), 1, sym__immediate_decimal, - STATE(3428), 1, + STATE(3473), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6669), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(738), 2, + STATE(3349), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104328] = 4, - ACTIONS(103), 1, + [106171] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3429), 1, + ACTIONS(6342), 1, + anon_sym_DASH2, + STATE(3474), 1, sym_comment, - ACTIONS(849), 4, + ACTIONS(4373), 9, + sym_identifier, + sym__newline, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(851), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [104349] = 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106192] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(6095), 1, anon_sym_DOLLAR, - ACTIONS(4850), 1, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6179), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, + ACTIONS(6181), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - STATE(2505), 1, - sym__immediate_decimal, - STATE(3430), 1, + ACTIONS(6384), 1, + aux_sym__unquoted_in_list_token2, + STATE(3475), 1, sym_comment, - ACTIONS(4854), 2, + STATE(3721), 1, + sym__immediate_decimal, + ACTIONS(6183), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2605), 2, + STATE(3913), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104382] = 10, + [106225] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(6671), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6673), 1, + aux_sym__immediate_decimal_token5, + STATE(3476), 1, + sym_comment, + ACTIONS(1738), 4, anon_sym_LPAREN2, - ACTIONS(3663), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1740), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [106250] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1780), 1, anon_sym_DOLLAR, - ACTIONS(4884), 1, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6300), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, + ACTIONS(6302), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - STATE(2699), 1, - sym__immediate_decimal, - STATE(3431), 1, + ACTIONS(6384), 1, + aux_sym__unquoted_in_list_token2, + STATE(3477), 1, sym_comment, - ACTIONS(4888), 2, + STATE(4108), 1, + sym__immediate_decimal, + ACTIONS(6304), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2930), 2, + STATE(4377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104415] = 9, - ACTIONS(3), 1, + [106283] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6675), 1, + anon_sym_DOT, + ACTIONS(6677), 1, + aux_sym__immediate_decimal_token5, + STATE(3478), 1, + sym_comment, + ACTIONS(1750), 4, anon_sym_LPAREN2, - ACTIONS(1675), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1752), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [106308] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6095), 1, anon_sym_DOLLAR, - STATE(741), 1, - sym__immediate_decimal, - STATE(3432), 1, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6238), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6240), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6679), 1, + aux_sym__unquoted_in_record_token2, + STATE(3479), 1, sym_comment, - ACTIONS(6432), 2, + STATE(3691), 1, + sym__immediate_decimal, + ACTIONS(6242), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(740), 2, + STATE(3913), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104446] = 9, + [106341] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6634), 1, - anon_sym_DQUOTE, - ACTIONS(6636), 1, - anon_sym_SQUOTE, - ACTIONS(6638), 1, - anon_sym_BQUOTE, - ACTIONS(6640), 1, - aux_sym_path_token1, - ACTIONS(6642), 1, - sym_raw_string_begin, - STATE(1772), 1, - sym_val_string, - STATE(3433), 1, - sym_comment, - STATE(1780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [104477] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(1780), 1, anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(3434), 1, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6388), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6390), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6679), 1, + aux_sym__unquoted_in_record_token2, + STATE(3480), 1, sym_comment, - ACTIONS(6432), 2, + STATE(4226), 1, + sym__immediate_decimal, + ACTIONS(6392), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(721), 2, + STATE(4377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104508] = 5, + [106374] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_BANG, - STATE(3435), 1, + ACTIONS(866), 1, + anon_sym_RBRACE, + ACTIONS(908), 1, + sym__entry_separator, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(6679), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6681), 1, + anon_sym_DOT_DOT2, + ACTIONS(6685), 1, + sym_filesize_unit, + ACTIONS(6687), 1, + sym_duration_unit, + STATE(3481), 1, sym_comment, - ACTIONS(1440), 3, + STATE(4752), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6683), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1438), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + [106409] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(6691), 1, + aux_sym__immediate_decimal_token5, + STATE(3482), 1, + sym_comment, + ACTIONS(1752), 2, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [104531] = 10, + sym__unquoted_pattern, + ACTIONS(1750), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [106434] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(1592), 1, + ACTIONS(1663), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1762), 1, + ACTIONS(1810), 1, aux_sym_unquoted_token2, - ACTIONS(6644), 1, + ACTIONS(6693), 1, anon_sym_DOLLAR, - ACTIONS(6646), 1, + ACTIONS(6695), 1, aux_sym__immediate_decimal_token2, - STATE(642), 1, + STATE(687), 1, sym__immediate_decimal, - STATE(3436), 1, + STATE(3483), 1, sym_comment, - ACTIONS(6648), 2, + ACTIONS(6697), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(947), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104564] = 10, + [106467] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(1635), 1, + ACTIONS(1683), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1762), 1, + ACTIONS(1810), 1, aux_sym_unquoted_token2, - ACTIONS(6644), 1, + ACTIONS(6693), 1, anon_sym_DOLLAR, - ACTIONS(6650), 1, + ACTIONS(6699), 1, aux_sym__immediate_decimal_token2, - STATE(941), 1, + STATE(989), 1, sym__immediate_decimal, - STATE(3437), 1, + STATE(3484), 1, sym_comment, - ACTIONS(6652), 2, + ACTIONS(6701), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(1299), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104597] = 9, + [106500] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(105), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(6654), 1, + ACTIONS(6703), 1, anon_sym_DQUOTE, - ACTIONS(6656), 1, + ACTIONS(6705), 1, anon_sym_SQUOTE, - ACTIONS(6658), 1, + ACTIONS(6707), 1, anon_sym_BQUOTE, - ACTIONS(6660), 1, + ACTIONS(6709), 1, aux_sym_path_token1, - STATE(502), 1, + STATE(2266), 1, sym_val_string, - STATE(3438), 1, + STATE(3485), 1, sym_comment, - STATE(480), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104628] = 6, + [106531] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6662), 1, - anon_sym_DOT, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - STATE(3439), 1, + ACTIONS(866), 1, + anon_sym_RBRACK, + ACTIONS(908), 1, + sym__entry_separator, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6599), 1, + anon_sym_LPAREN2, + ACTIONS(6711), 1, + anon_sym_DOT_DOT2, + ACTIONS(6715), 1, + sym_filesize_unit, + ACTIONS(6717), 1, + sym_duration_unit, + STATE(3486), 1, + sym_comment, + STATE(4720), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6713), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [106566] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3487), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(755), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(757), 6, anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [106587] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3488), 1, + sym_comment, + ACTIONS(1519), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1738), 4, + ACTIONS(1517), 7, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [104653] = 5, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [106608] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6666), 1, - aux_sym__immediate_decimal_token5, - STATE(3440), 1, + STATE(3489), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(1523), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104676] = 9, + sym__entry_separator, + ACTIONS(1521), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [106629] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6668), 1, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(6719), 1, anon_sym_DQUOTE, - ACTIONS(6670), 1, + ACTIONS(6721), 1, anon_sym_SQUOTE, - ACTIONS(6672), 1, + ACTIONS(6723), 1, anon_sym_BQUOTE, - ACTIONS(6674), 1, + ACTIONS(6725), 1, aux_sym_path_token1, - ACTIONS(6676), 1, - sym_raw_string_begin, - STATE(3441), 1, - sym_comment, - STATE(3677), 1, + STATE(490), 1, sym_val_string, - STATE(3791), 4, + STATE(3490), 1, + sym_comment, + STATE(501), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104707] = 10, + [106660] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3491), 1, + sym_comment, + ACTIONS(1527), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1525), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [106681] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6727), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6729), 1, + aux_sym__immediate_decimal_token5, + STATE(3492), 1, + sym_comment, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [106706] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(4836), 1, + ACTIONS(3777), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, - ACTIONS(6678), 1, + ACTIONS(6733), 1, aux_sym__immediate_decimal_token2, - STATE(2433), 1, + STATE(1843), 1, sym__immediate_decimal, - STATE(3442), 1, + STATE(3493), 1, sym_comment, - ACTIONS(6680), 2, + ACTIONS(6735), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2576), 2, + STATE(695), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104740] = 10, + [106739] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(4844), 1, + ACTIONS(3936), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, - ACTIONS(6682), 1, + ACTIONS(6737), 1, aux_sym__immediate_decimal_token2, - STATE(2626), 1, + STATE(1954), 1, sym__immediate_decimal, - STATE(3443), 1, + STATE(3494), 1, sym_comment, - ACTIONS(6684), 2, + ACTIONS(6739), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104773] = 9, + [106772] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6686), 1, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(6741), 1, anon_sym_DQUOTE, - ACTIONS(6688), 1, + ACTIONS(6743), 1, anon_sym_SQUOTE, - ACTIONS(6690), 1, + ACTIONS(6745), 1, anon_sym_BQUOTE, - ACTIONS(6692), 1, + ACTIONS(6747), 1, aux_sym_path_token1, - ACTIONS(6694), 1, - sym_raw_string_begin, - STATE(3268), 1, + STATE(3392), 1, sym_val_string, - STATE(3444), 1, + STATE(3495), 1, sym_comment, - STATE(3372), 4, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104804] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6696), 1, - aux_sym__immediate_decimal_token5, - STATE(3445), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104827] = 10, + [106803] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(4825), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5164), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(6698), 1, + ACTIONS(5815), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6749), 1, aux_sym__immediate_decimal_token2, - STATE(2406), 1, - sym__immediate_decimal, - STATE(3446), 1, + STATE(3496), 1, sym_comment, - ACTIONS(6700), 2, + STATE(3640), 1, + sym__immediate_decimal, + ACTIONS(6751), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2500), 2, + STATE(3748), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104860] = 10, + [106836] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(4840), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5164), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(6702), 1, + ACTIONS(5974), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6753), 1, aux_sym__immediate_decimal_token2, - STATE(2523), 1, - sym__immediate_decimal, - STATE(3447), 1, + STATE(3497), 1, sym_comment, - ACTIONS(6704), 2, + STATE(4050), 1, + sym__immediate_decimal, + ACTIONS(6755), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104893] = 4, + [106869] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3448), 1, + STATE(3498), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(789), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 8, + ACTIONS(791), 8, anon_sym_if, sym__newline, anon_sym_PIPE, @@ -226429,858 +228317,857 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104914] = 10, + [106890] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5837), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(6335), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - STATE(3449), 1, - sym_comment, - STATE(4159), 1, - sym__immediate_decimal, - ACTIONS(6339), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4234), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104947] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6706), 1, - aux_sym__immediate_decimal_token5, - STATE(3450), 1, - sym_comment, - ACTIONS(771), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [104970] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(5172), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(5930), 1, + ACTIONS(6052), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6708), 1, + ACTIONS(6054), 1, aux_sym__immediate_decimal_token2, - STATE(3451), 1, + STATE(3499), 1, sym_comment, - STATE(3687), 1, + STATE(3625), 1, sym__immediate_decimal, - ACTIONS(6710), 2, + ACTIONS(6056), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3625), 2, + STATE(3788), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105003] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3452), 1, - sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [105024] = 10, + [106923] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(6145), 1, + ACTIONS(5172), 1, + aux_sym_unquoted_token2, + ACTIONS(6191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6193), 1, aux_sym__immediate_decimal_token2, - STATE(3453), 1, + STATE(3500), 1, sym_comment, - STATE(4112), 1, + STATE(3987), 1, sym__immediate_decimal, - ACTIONS(6714), 2, + ACTIONS(6195), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(2982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105057] = 9, + [106956] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(942), 1, + ACTIONS(2988), 1, + sym_raw_string_begin, + ACTIONS(6757), 1, anon_sym_DQUOTE, - ACTIONS(944), 1, + ACTIONS(6759), 1, anon_sym_SQUOTE, - ACTIONS(946), 1, + ACTIONS(6761), 1, anon_sym_BQUOTE, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(6716), 1, + ACTIONS(6763), 1, aux_sym_path_token1, - STATE(2455), 1, + STATE(2433), 1, sym_val_string, - STATE(3454), 1, + STATE(3501), 1, sym_comment, - STATE(2472), 4, + STATE(2590), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105088] = 10, + [106987] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(3374), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6718), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(6720), 1, + ACTIONS(4916), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4918), 1, aux_sym__immediate_decimal_token2, - STATE(1441), 1, + ACTIONS(5172), 1, + aux_sym_unquoted_token2, + STATE(2542), 1, sym__immediate_decimal, - STATE(3455), 1, + STATE(3502), 1, sym_comment, - ACTIONS(6722), 2, + ACTIONS(4920), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + STATE(2649), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105121] = 11, + [107020] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACK, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(6724), 1, - anon_sym_DOT_DOT2, - ACTIONS(6728), 1, - sym_filesize_unit, - ACTIONS(6730), 1, - sym_duration_unit, - STATE(3456), 1, - sym_comment, - STATE(4728), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6726), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105156] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6169), 1, + ACTIONS(4926), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6171), 1, + ACTIONS(4928), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - STATE(3457), 1, - sym_comment, - STATE(3693), 1, - sym__immediate_decimal, - ACTIONS(6173), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3780), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105189] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(5172), 1, aux_sym_unquoted_token2, - ACTIONS(3450), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6718), 1, - anon_sym_DOLLAR, - ACTIONS(6732), 1, - aux_sym__immediate_decimal_token2, - STATE(1495), 1, + STATE(2749), 1, sym__immediate_decimal, - STATE(3458), 1, + STATE(3503), 1, sym_comment, - ACTIONS(6734), 2, + ACTIONS(4930), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(2982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105222] = 9, + [107053] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6736), 1, + ACTIONS(6765), 1, anon_sym_DQUOTE, - ACTIONS(6738), 1, + ACTIONS(6767), 1, anon_sym_SQUOTE, - ACTIONS(6740), 1, + ACTIONS(6769), 1, anon_sym_BQUOTE, - ACTIONS(6742), 1, + ACTIONS(6771), 1, aux_sym_path_token1, - ACTIONS(6744), 1, + ACTIONS(6773), 1, sym_raw_string_begin, - STATE(1882), 1, + STATE(1748), 1, sym_val_string, - STATE(3459), 1, + STATE(3504), 1, sym_comment, - STATE(1953), 4, + STATE(1783), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105253] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token5, - STATE(3460), 1, - sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [105276] = 10, + [107084] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(5003), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5005), 1, + ACTIONS(1594), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6746), 1, + ACTIONS(1724), 1, + aux_sym_unquoted_token2, + ACTIONS(6731), 1, anon_sym_DOLLAR, - STATE(2612), 1, + ACTIONS(6775), 1, + aux_sym__immediate_decimal_token2, + STATE(543), 1, sym__immediate_decimal, - STATE(3461), 1, + STATE(3505), 1, sym_comment, - ACTIONS(6748), 2, + ACTIONS(6777), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2886), 2, + STATE(695), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105309] = 10, + [107117] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5013), 1, + ACTIONS(1637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6746), 1, + ACTIONS(1724), 1, + aux_sym_unquoted_token2, + ACTIONS(6731), 1, anon_sym_DOLLAR, - STATE(2983), 1, + ACTIONS(6779), 1, + aux_sym__immediate_decimal_token2, + STATE(949), 1, sym__immediate_decimal, - STATE(3462), 1, + STATE(3506), 1, sym_comment, - ACTIONS(6750), 2, + ACTIONS(6781), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3290), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105342] = 10, + [107150] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6783), 1, + anon_sym_DQUOTE, + ACTIONS(6785), 1, + anon_sym_SQUOTE, + ACTIONS(6787), 1, + anon_sym_BQUOTE, + ACTIONS(6789), 1, + aux_sym_path_token1, + ACTIONS(6791), 1, + sym_raw_string_begin, + STATE(3507), 1, + sym_comment, + STATE(3763), 1, + sym_val_string, + STATE(3832), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107181] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1810), 1, aux_sym_unquoted_token2, - ACTIONS(3940), 1, + ACTIONS(4885), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(5331), 1, anon_sym_DOLLAR, - ACTIONS(6752), 1, + ACTIONS(6793), 1, aux_sym__immediate_decimal_token2, - STATE(1850), 1, + STATE(2506), 1, sym__immediate_decimal, - STATE(3463), 1, + STATE(3508), 1, sym_comment, - ACTIONS(6754), 2, + ACTIONS(6795), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1960), 2, + STATE(2625), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105375] = 10, + [107214] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4870), 1, + ACTIONS(1810), 1, + aux_sym_unquoted_token2, + ACTIONS(4910), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, + ACTIONS(5331), 1, + anon_sym_DOLLAR, + ACTIONS(6797), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5048), 1, - aux_sym_unquoted_token2, - STATE(2565), 1, + STATE(2657), 1, sym__immediate_decimal, - STATE(3464), 1, + STATE(3509), 1, sym_comment, - ACTIONS(4874), 2, + ACTIONS(6799), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2682), 2, + STATE(1299), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105408] = 10, + [107247] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6747), 1, + aux_sym_path_token1, + ACTIONS(6801), 1, + anon_sym_DQUOTE, + ACTIONS(6803), 1, + anon_sym_SQUOTE, + ACTIONS(6805), 1, + anon_sym_BQUOTE, + ACTIONS(6807), 1, + sym_raw_string_begin, + STATE(3392), 1, + sym_val_string, + STATE(3510), 1, + sym_comment, + STATE(3466), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107278] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(3954), 1, + ACTIONS(4877), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(6756), 1, + ACTIONS(6809), 1, aux_sym__immediate_decimal_token2, - STATE(1974), 1, + STATE(2476), 1, sym__immediate_decimal, - STATE(3465), 1, + STATE(3511), 1, sym_comment, - ACTIONS(6758), 2, + ACTIONS(6811), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(2550), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105441] = 10, + [107311] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(6430), 1, + ACTIONS(4895), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(6813), 1, aux_sym__immediate_decimal_token2, - STATE(3466), 1, - sym_comment, - STATE(3977), 1, + STATE(2626), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + STATE(3512), 1, + sym_comment, + ACTIONS(6815), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4135), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105474] = 9, + [107344] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(827), 1, + ACTIONS(6817), 1, anon_sym_DQUOTE, - ACTIONS(829), 1, + ACTIONS(6819), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(6821), 1, anon_sym_BQUOTE, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(6764), 1, + ACTIONS(6823), 1, aux_sym_path_token1, - STATE(2404), 1, + ACTIONS(6825), 1, + sym_raw_string_begin, + STATE(333), 1, sym_val_string, - STATE(3467), 1, + STATE(3513), 1, sym_comment, - STATE(2454), 4, + STATE(344), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105505] = 10, + [107375] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1655), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(6718), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(6766), 1, + ACTIONS(6041), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6827), 1, aux_sym__immediate_decimal_token2, - STATE(693), 1, - sym__immediate_decimal, - STATE(3468), 1, + STATE(3514), 1, sym_comment, - ACTIONS(6768), 2, + STATE(3778), 1, + sym__immediate_decimal, + ACTIONS(6829), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + STATE(3748), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105538] = 10, + [107408] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(6718), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(6770), 1, + ACTIONS(6187), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6831), 1, aux_sym__immediate_decimal_token2, - STATE(1047), 1, - sym__immediate_decimal, - STATE(3469), 1, + STATE(3515), 1, sym_comment, - ACTIONS(6772), 2, + STATE(4393), 1, + sym__immediate_decimal, + ACTIONS(6833), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105571] = 6, + [107441] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - STATE(3470), 1, + ACTIONS(962), 1, + anon_sym_DQUOTE, + ACTIONS(964), 1, + anon_sym_SQUOTE, + ACTIONS(966), 1, + anon_sym_BQUOTE, + ACTIONS(978), 1, + sym_raw_string_begin, + ACTIONS(6835), 1, + aux_sym_path_token1, + STATE(2489), 1, + sym_val_string, + STATE(3516), 1, sym_comment, - ACTIONS(1736), 4, - sym__space, + STATE(2536), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107472] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1659), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [105596] = 10, + ACTIONS(1810), 1, + aux_sym_unquoted_token2, + ACTIONS(3376), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6693), 1, + anon_sym_DOLLAR, + ACTIONS(6837), 1, + aux_sym__immediate_decimal_token2, + STATE(1448), 1, + sym__immediate_decimal, + STATE(3517), 1, + sym_comment, + ACTIONS(6839), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(947), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107505] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4916), 1, + ACTIONS(1810), 1, + aux_sym_unquoted_token2, + ACTIONS(3460), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, + ACTIONS(6693), 1, + anon_sym_DOLLAR, + ACTIONS(6841), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5048), 1, - aux_sym_unquoted_token2, - STATE(2816), 1, + STATE(1507), 1, sym__immediate_decimal, - STATE(3471), 1, + STATE(3518), 1, sym_comment, - ACTIONS(4920), 2, + ACTIONS(6843), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3201), 2, + STATE(1299), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105629] = 10, + [107538] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6845), 1, + anon_sym_DQUOTE, + ACTIONS(6847), 1, + anon_sym_SQUOTE, + ACTIONS(6849), 1, + anon_sym_BQUOTE, + ACTIONS(6851), 1, + aux_sym_path_token1, + ACTIONS(6853), 1, + sym_raw_string_begin, + STATE(1895), 1, + sym_val_string, + STATE(3519), 1, + sym_comment, + STATE(1918), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107569] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(3347), 1, + ACTIONS(3946), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, - ACTIONS(6778), 1, + ACTIONS(6855), 1, aux_sym__immediate_decimal_token2, - STATE(1436), 1, + STATE(1869), 1, sym__immediate_decimal, - STATE(3472), 1, + STATE(3520), 1, sym_comment, - ACTIONS(6780), 2, + ACTIONS(6857), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(1961), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105662] = 10, + [107602] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(3378), 1, + ACTIONS(3960), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, - ACTIONS(6782), 1, + ACTIONS(6859), 1, aux_sym__immediate_decimal_token2, - STATE(1470), 1, + STATE(1978), 1, sym__immediate_decimal, - STATE(3473), 1, + STATE(3521), 1, sym_comment, - ACTIONS(6784), 2, + ACTIONS(6861), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105695] = 10, + [107635] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(846), 1, + anon_sym_DQUOTE, + ACTIONS(848), 1, + anon_sym_SQUOTE, + ACTIONS(850), 1, + anon_sym_BQUOTE, + ACTIONS(864), 1, + sym_raw_string_begin, + ACTIONS(6863), 1, + aux_sym_path_token1, + STATE(2467), 1, + sym_val_string, + STATE(3522), 1, + sym_comment, + STATE(2499), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107666] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(3762), 1, + ACTIONS(3358), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, - ACTIONS(6786), 1, + ACTIONS(6865), 1, aux_sym__immediate_decimal_token2, - STATE(1827), 1, + STATE(1433), 1, sym__immediate_decimal, - STATE(3474), 1, + STATE(3523), 1, sym_comment, - ACTIONS(6788), 2, + ACTIONS(6867), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(695), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105728] = 10, + [107699] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(3900), 1, + ACTIONS(3370), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, - ACTIONS(6790), 1, + ACTIONS(6869), 1, aux_sym__immediate_decimal_token2, - STATE(1952), 1, + STATE(1464), 1, sym__immediate_decimal, - STATE(3475), 1, + STATE(3524), 1, sym_comment, - ACTIONS(6792), 2, + ACTIONS(6871), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105761] = 9, + [107732] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6794), 1, + ACTIONS(6873), 1, anon_sym_DQUOTE, - ACTIONS(6796), 1, + ACTIONS(6875), 1, anon_sym_SQUOTE, - ACTIONS(6798), 1, + ACTIONS(6877), 1, anon_sym_BQUOTE, - ACTIONS(6800), 1, + ACTIONS(6879), 1, aux_sym_path_token1, - ACTIONS(6802), 1, + ACTIONS(6881), 1, sym_raw_string_begin, - STATE(3476), 1, + STATE(3525), 1, sym_comment, - STATE(3934), 1, + STATE(4017), 1, sym_val_string, - STATE(4140), 4, + STATE(4093), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105792] = 9, + [107763] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(6544), 1, + ACTIONS(6883), 1, anon_sym_DQUOTE, - ACTIONS(6546), 1, + ACTIONS(6885), 1, anon_sym_SQUOTE, - ACTIONS(6548), 1, + ACTIONS(6887), 1, anon_sym_BQUOTE, - ACTIONS(6804), 1, + ACTIONS(6889), 1, aux_sym_path_token1, - STATE(2263), 1, + ACTIONS(6891), 1, + sym_raw_string_begin, + STATE(1713), 1, sym_val_string, - STATE(3477), 1, + STATE(3526), 1, sym_comment, - STATE(2228), 4, + STATE(1775), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105823] = 10, + [107794] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3478), 1, + ACTIONS(6893), 1, + anon_sym_DQUOTE, + ACTIONS(6895), 1, + anon_sym_SQUOTE, + ACTIONS(6897), 1, + anon_sym_BQUOTE, + ACTIONS(6899), 1, + aux_sym_path_token1, + ACTIONS(6901), 1, + sym_raw_string_begin, + STATE(2399), 1, + sym_val_string, + STATE(3527), 1, sym_comment, - STATE(3603), 1, - sym__immediate_decimal, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3860), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105856] = 9, + STATE(2449), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107825] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1426), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(6552), 1, + ACTIONS(6703), 1, anon_sym_DQUOTE, - ACTIONS(6554), 1, + ACTIONS(6705), 1, anon_sym_SQUOTE, - ACTIONS(6556), 1, + ACTIONS(6707), 1, anon_sym_BQUOTE, - ACTIONS(6692), 1, + ACTIONS(6763), 1, aux_sym_path_token1, - STATE(3268), 1, + STATE(2433), 1, sym_val_string, - STATE(3479), 1, + STATE(3528), 1, sym_comment, - STATE(3505), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105887] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6806), 1, - anon_sym_DOT, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token5, - STATE(3480), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105912] = 4, + [107856] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3481), 1, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(6741), 1, + anon_sym_DQUOTE, + ACTIONS(6743), 1, + anon_sym_SQUOTE, + ACTIONS(6745), 1, + anon_sym_BQUOTE, + ACTIONS(6903), 1, + aux_sym_path_token1, + STATE(3529), 1, sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [105933] = 6, + STATE(3698), 1, + sym_val_string, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107887] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6810), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6812), 1, - aux_sym__immediate_decimal_token5, - STATE(3482), 1, + ACTIONS(6905), 1, + anon_sym_DQUOTE, + ACTIONS(6907), 1, + anon_sym_SQUOTE, + ACTIONS(6909), 1, + anon_sym_BQUOTE, + ACTIONS(6911), 1, + aux_sym_path_token1, + ACTIONS(6913), 1, + sym_raw_string_begin, + STATE(334), 1, + sym_val_string, + STATE(3530), 1, sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [105958] = 9, + STATE(367), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107918] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6814), 1, + ACTIONS(6915), 1, anon_sym_DQUOTE, - ACTIONS(6816), 1, + ACTIONS(6917), 1, anon_sym_SQUOTE, - ACTIONS(6818), 1, + ACTIONS(6919), 1, anon_sym_BQUOTE, - ACTIONS(6820), 1, + ACTIONS(6921), 1, aux_sym_path_token1, - ACTIONS(6822), 1, + ACTIONS(6923), 1, sym_raw_string_begin, - STATE(1733), 1, + STATE(2301), 1, sym_val_string, - STATE(3483), 1, + STATE(3531), 1, sym_comment, - STATE(1749), 4, + STATE(2319), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105989] = 4, + [107949] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3484), 1, + STATE(3532), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(789), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + ACTIONS(791), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [106010] = 4, + [107970] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3485), 1, + ACTIONS(6925), 1, + aux_sym__immediate_decimal_token5, + STATE(3533), 1, sym_comment, - ACTIONS(849), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(755), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(851), 6, + sym__unquoted_pattern_in_record, + ACTIONS(757), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [106031] = 9, - ACTIONS(103), 1, + [107993] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6824), 1, - anon_sym_DQUOTE, - ACTIONS(6826), 1, - anon_sym_SQUOTE, - ACTIONS(6828), 1, - anon_sym_BQUOTE, - ACTIONS(6830), 1, - aux_sym_path_token1, - ACTIONS(6832), 1, - sym_raw_string_begin, - STATE(2359), 1, - sym_val_string, - STATE(3486), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1623), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(826), 1, + sym__immediate_decimal, + STATE(3534), 1, sym_comment, - STATE(2420), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106062] = 8, - ACTIONS(3), 1, + ACTIONS(6400), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6629), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(825), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108024] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(6834), 1, + ACTIONS(6576), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3535), 1, + sym_comment, + STATE(3536), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1494), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1492), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - ACTIONS(6838), 1, - sym_filesize_unit, - ACTIONS(6840), 1, - sym_duration_unit, - STATE(3487), 1, + [108051] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6927), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3536), 2, sym_comment, - ACTIONS(6836), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1498), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [106091] = 4, + sym__entry_separator, + ACTIONS(1496), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [108076] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3488), 1, + ACTIONS(6574), 1, + aux_sym__immediate_decimal_token5, + STATE(3537), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, + ACTIONS(741), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -227288,70 +229175,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106112] = 4, + [108099] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3489), 1, + STATE(3538), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(755), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 6, + ACTIONS(757), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106133] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6842), 1, - anon_sym_DQUOTE, - ACTIONS(6844), 1, - anon_sym_SQUOTE, - ACTIONS(6846), 1, - anon_sym_BQUOTE, - ACTIONS(6848), 1, - aux_sym_path_token1, - ACTIONS(6850), 1, - sym_raw_string_begin, - STATE(337), 1, - sym_val_string, - STATE(3490), 1, - sym_comment, - STATE(343), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106164] = 4, + [108120] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3491), 1, + STATE(3539), 1, sym_comment, - ACTIONS(771), 3, - anon_sym_RBRACE, + ACTIONS(789), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, + sym__unquoted_pattern, + ACTIONS(791), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [106184] = 4, + [108141] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3492), 1, + ACTIONS(6930), 1, + aux_sym__immediate_decimal_token5, + STATE(3540), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 7, + ACTIONS(757), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -227359,1460 +229227,1435 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106204] = 7, + [108164] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2843), 1, - sym_cell_path, - STATE(3493), 1, + STATE(3541), 1, sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1866), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [106230] = 8, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108185] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3494), 1, + STATE(3542), 1, sym_comment, - STATE(3919), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106258] = 8, - ACTIONS(3), 1, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108206] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, - anon_sym_DOLLAR, - STATE(2997), 1, - sym__immediate_decimal, - STATE(3495), 1, + ACTIONS(6932), 1, + anon_sym_DOT, + ACTIONS(6934), 1, + aux_sym__immediate_decimal_token5, + STATE(3543), 1, sym_comment, - ACTIONS(4912), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6856), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2996), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106286] = 7, - ACTIONS(3), 1, + ACTIONS(1750), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1752), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [108231] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2914), 1, - sym_cell_path, - STATE(3496), 1, + ACTIONS(6936), 1, + anon_sym_DQUOTE, + ACTIONS(6938), 1, + anon_sym_SQUOTE, + ACTIONS(6940), 1, + anon_sym_BQUOTE, + ACTIONS(6942), 1, + aux_sym_path_token1, + ACTIONS(6944), 1, + sym_raw_string_begin, + STATE(370), 1, + sym_val_string, + STATE(3544), 1, sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1858), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [106312] = 4, - ACTIONS(103), 1, + STATE(379), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [108262] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3497), 1, + ACTIONS(6946), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6948), 1, + aux_sym__immediate_decimal_token5, + STATE(3545), 1, sym_comment, - ACTIONS(849), 3, - anon_sym_RBRACE, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(851), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(749), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [106332] = 8, + [108286] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6854), 1, - anon_sym_DOLLAR, - STATE(3498), 1, - sym_comment, - STATE(4020), 1, - sym__immediate_decimal, - ACTIONS(6055), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6858), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106360] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3830), 1, + ACTIONS(6950), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - STATE(3499), 1, + STATE(3546), 1, sym_comment, - STATE(4106), 1, + STATE(4227), 1, sym__immediate_decimal, - ACTIONS(6073), 2, + ACTIONS(6300), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6860), 2, + ACTIONS(6952), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4105), 2, + STATE(4144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106388] = 5, + [108314] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6862), 1, + ACTIONS(6954), 1, aux_sym__immediate_decimal_token5, - STATE(3500), 1, + STATE(3547), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1816), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1804), 4, + ACTIONS(1818), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [106410] = 8, - ACTIONS(3), 1, + [108336] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(6864), 1, - anon_sym_DOT_DOT2, - ACTIONS(6868), 1, - sym_filesize_unit, - ACTIONS(6870), 1, - sym_duration_unit, - STATE(3501), 1, + ACTIONS(6934), 1, + aux_sym__immediate_decimal_token5, + STATE(3548), 1, sym_comment, - ACTIONS(6866), 2, + ACTIONS(1750), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [106438] = 8, + sym__entry_separator, + ACTIONS(1752), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [108358] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - STATE(1313), 1, + STATE(1297), 1, sym__immediate_decimal, - STATE(3502), 1, + STATE(3549), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1712), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1306), 2, + STATE(1295), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106466] = 8, + [108386] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - STATE(2710), 1, - sym__immediate_decimal, - STATE(3503), 1, - sym_comment, - ACTIONS(4884), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6872), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106494] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(727), 1, + STATE(1302), 1, sym__immediate_decimal, - STATE(3504), 1, + STATE(3550), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1712), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + STATE(1300), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106522] = 4, + [108414] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1480), 1, + STATE(3551), 1, + sym_comment, + ACTIONS(747), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - STATE(3505), 1, + [108434] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6958), 1, + aux_sym__immediate_decimal_token5, + STATE(3552), 1, sym_comment, - ACTIONS(1478), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(1740), 3, anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [108458] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6960), 1, + aux_sym__immediate_decimal_token5, + STATE(3553), 1, + sym_comment, + ACTIONS(1816), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1818), 4, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106542] = 8, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [108480] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(958), 1, + STATE(838), 1, sym__immediate_decimal, - STATE(3506), 1, + STATE(3554), 1, sym_comment, - ACTIONS(1635), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1637), 2, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + ACTIONS(1631), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(837), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106570] = 8, + [108508] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - STATE(3274), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(902), 1, sym__immediate_decimal, - STATE(3507), 1, + STATE(3555), 1, sym_comment, - ACTIONS(5007), 2, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(5081), 2, + ACTIONS(1631), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(3271), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106598] = 4, - ACTIONS(103), 1, + [108536] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1476), 1, - sym__entry_separator, - STATE(3508), 1, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2961), 1, + sym_cell_path, + STATE(3556), 1, sym_comment, - ACTIONS(1474), 8, - anon_sym_COLON, - anon_sym_RBRACK, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1844), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106618] = 8, + anon_sym_DASH_DASH, + [108562] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - STATE(3509), 1, + ACTIONS(6950), 1, + anon_sym_DOLLAR, + STATE(3557), 1, sym_comment, - STATE(4200), 1, + STATE(4142), 1, sym__immediate_decimal, - ACTIONS(6335), 2, + ACTIONS(6408), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6874), 2, + ACTIONS(6964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(4140), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106646] = 8, + [108590] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(727), 1, + STATE(902), 1, sym__immediate_decimal, - STATE(3510), 1, + STATE(3558), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(726), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106674] = 4, + [108618] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1516), 1, - sym__entry_separator, - STATE(3511), 1, + ACTIONS(6966), 1, + anon_sym_DOT, + ACTIONS(6968), 1, + aux_sym__immediate_decimal_token5, + STATE(3559), 1, sym_comment, - ACTIONS(1514), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(1752), 3, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106694] = 8, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1750), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [108642] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - STATE(2614), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(1957), 1, sym__immediate_decimal, - STATE(3512), 1, + STATE(3560), 1, sym_comment, - ACTIONS(4844), 2, + ACTIONS(3946), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, + ACTIONS(3948), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(1961), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106722] = 8, + [108670] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3830), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(3513), 1, - sym_comment, - STATE(3930), 1, + STATE(913), 1, sym__immediate_decimal, - ACTIONS(6073), 2, + STATE(3561), 1, + sym_comment, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6860), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106750] = 6, + [108698] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6876), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6878), 1, - aux_sym__immediate_decimal_token5, - STATE(3514), 1, + STATE(3562), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 5, + ACTIONS(6970), 9, + anon_sym_EQ, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [106774] = 8, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [108716] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2534), 1, - sym__immediate_decimal, - STATE(3515), 1, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2933), 1, + sym_cell_path, + STATE(3563), 1, sym_comment, - ACTIONS(4840), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106802] = 8, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1838), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [108742] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, - ACTIONS(6880), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR, - STATE(2888), 1, + STATE(2898), 1, sym__immediate_decimal, - STATE(3516), 1, + STATE(3564), 1, sym_comment, - ACTIONS(4916), 2, + ACTIONS(4994), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6882), 2, + ACTIONS(6974), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3130), 2, + STATE(3188), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106830] = 8, + [108770] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - STATE(3517), 1, - sym_comment, - STATE(4229), 1, + STATE(918), 1, sym__immediate_decimal, - ACTIONS(6442), 2, + STATE(3565), 1, + sym_comment, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6884), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(947), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106858] = 6, + [108798] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6886), 1, - anon_sym_DOT, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token5, - STATE(3518), 1, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2877), 1, + sym_cell_path, + STATE(3566), 1, sym_comment, - ACTIONS(739), 2, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1872), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [108824] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4119), 1, anon_sym_DOT_DOT2, + ACTIONS(6976), 1, + sym_filesize_unit, + ACTIONS(6978), 1, + sym_duration_unit, + ACTIONS(6980), 1, sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, + STATE(3567), 1, + sym_comment, + ACTIONS(4121), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106882] = 8, + ACTIONS(908), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [108852] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - STATE(2993), 1, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + STATE(1304), 1, sym__immediate_decimal, - STATE(3519), 1, + STATE(3568), 1, sym_comment, - ACTIONS(5013), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5015), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3226), 2, + ACTIONS(1712), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1299), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106910] = 8, + [108880] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR, - STATE(3520), 1, - sym_comment, - STATE(4124), 1, + STATE(3184), 1, sym__immediate_decimal, - ACTIONS(6145), 2, + STATE(3569), 1, + sym_comment, + ACTIONS(5074), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, + ACTIONS(6982), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(3177), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106938] = 8, + [108908] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(6950), 1, anon_sym_DOLLAR, - STATE(3521), 1, + STATE(3570), 1, sym_comment, - STATE(4723), 1, + STATE(4726), 1, sym__immediate_decimal, - ACTIONS(6478), 2, + ACTIONS(6408), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + ACTIONS(6964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(4144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106966] = 8, + [108936] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1502), 1, - sym__immediate_decimal, - STATE(3522), 1, + ACTIONS(6691), 1, + aux_sym__immediate_decimal_token5, + STATE(3571), 1, sym_comment, - ACTIONS(3450), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1306), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106994] = 8, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108958] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(2716), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - STATE(2084), 1, - sym__immediate_decimal, - STATE(3523), 1, + STATE(3572), 1, sym_comment, - ACTIONS(3954), 2, + STATE(4063), 1, + sym__immediate_decimal, + ACTIONS(6179), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(6964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(3913), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107022] = 8, + [108986] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - STATE(1487), 1, - sym__immediate_decimal, - STATE(3524), 1, + ACTIONS(6950), 1, + anon_sym_DOLLAR, + STATE(3573), 1, sym_comment, - ACTIONS(3378), 2, + STATE(4773), 1, + sym__immediate_decimal, + ACTIONS(6408), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, + ACTIONS(6964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(4377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107050] = 8, + [109014] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(908), 1, + sym__entry_separator, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6601), 1, + anon_sym_DOT_DOT2, + ACTIONS(6605), 1, + sym_filesize_unit, + ACTIONS(6607), 1, + sym_duration_unit, + STATE(3574), 1, + sym_comment, + ACTIONS(866), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6603), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109044] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3575), 1, + sym_comment, + ACTIONS(755), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(757), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [109064] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - STATE(956), 1, + STATE(994), 1, sym__immediate_decimal, - STATE(3525), 1, + STATE(3576), 1, sym_comment, - ACTIONS(1655), 2, + ACTIONS(1683), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1657), 2, + ACTIONS(1685), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + STATE(1300), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107078] = 9, - ACTIONS(103), 1, + [109092] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4139), 1, + ACTIONS(6984), 1, + aux_sym__immediate_decimal_token5, + STATE(3577), 1, + sym_comment, + ACTIONS(1818), 2, anon_sym_DOT_DOT2, - ACTIONS(4969), 1, sym__unquoted_pattern, - ACTIONS(6494), 1, - sym_filesize_unit, - ACTIONS(6496), 1, - sym_duration_unit, - STATE(3526), 1, - sym_comment, - ACTIONS(868), 2, + ACTIONS(1816), 6, + anon_sym_if, sym__newline, - anon_sym_SEMI, - ACTIONS(4141), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107108] = 8, + [109114] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(6880), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(3103), 1, + STATE(838), 1, sym__immediate_decimal, - STATE(3527), 1, + STATE(3578), 1, sym_comment, - ACTIONS(4938), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6890), 2, + ACTIONS(5817), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3101), 2, + ACTIONS(6250), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(837), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107136] = 4, + [109142] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3579), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109162] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1468), 1, - sym__entry_separator, - STATE(3528), 1, + STATE(3580), 1, sym_comment, - ACTIONS(1466), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(789), 3, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [107156] = 8, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(791), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [109182] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(3529), 1, - sym_comment, - STATE(4676), 1, + STATE(1929), 1, sym__immediate_decimal, - ACTIONS(6250), 2, + STATE(3581), 1, + sym_comment, + ACTIONS(3936), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(3938), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107184] = 8, + [109210] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(6986), 1, anon_sym_DOLLAR, - STATE(1300), 1, + STATE(3067), 1, sym__immediate_decimal, - STATE(3530), 1, + STATE(3582), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(6472), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1298), 2, + ACTIONS(6988), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3066), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107212] = 8, + [109238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - STATE(3531), 1, + STATE(3583), 1, sym_comment, - STATE(4106), 1, - sym__immediate_decimal, - ACTIONS(6250), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4105), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107240] = 3, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109258] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3532), 1, + STATE(3584), 1, sym_comment, - ACTIONS(6894), 9, - anon_sym_EQ, + ACTIONS(789), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(791), 7, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109278] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3585), 1, + sym_comment, + ACTIONS(789), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(791), 7, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [107258] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109298] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - STATE(904), 1, + ACTIONS(6986), 1, + anon_sym_DOLLAR, + STATE(3067), 1, sym__immediate_decimal, - STATE(3533), 1, + STATE(3586), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(4990), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(6990), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(3066), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107286] = 5, + [109326] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6896), 1, - aux_sym__immediate_decimal_token5, - STATE(3534), 1, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(6986), 1, + anon_sym_DOLLAR, + STATE(3587), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107308] = 8, + STATE(4030), 1, + sym__immediate_decimal, + ACTIONS(6191), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6992), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3070), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109354] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6220), 1, anon_sym_LPAREN2, - STATE(904), 1, - sym__immediate_decimal, - STATE(3535), 1, + ACTIONS(6994), 1, + anon_sym_DOLLAR, + STATE(3588), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + STATE(4142), 1, + sym__immediate_decimal, + ACTIONS(6222), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(728), 2, + ACTIONS(6996), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4140), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107336] = 5, + [109382] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6808), 1, + ACTIONS(6998), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7000), 1, aux_sym__immediate_decimal_token5, - STATE(3536), 1, + STATE(3589), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 6, - anon_sym_if, + ACTIONS(1738), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107358] = 8, + [109406] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - STATE(709), 1, + ACTIONS(6986), 1, + anon_sym_DOLLAR, + STATE(2768), 1, sym__immediate_decimal, - STATE(3537), 1, + STATE(3590), 1, sym_comment, - ACTIONS(1592), 2, + ACTIONS(4926), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1594), 2, + ACTIONS(7002), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(3070), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107386] = 4, + [109434] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3538), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(838), 1, + sym__immediate_decimal, + STATE(3591), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107406] = 8, + ACTIONS(1596), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1631), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(837), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109462] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(3539), 1, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(3592), 1, sym_comment, - STATE(3911), 1, + STATE(4791), 1, sym__immediate_decimal, - ACTIONS(6047), 2, + ACTIONS(6548), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(6550), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107434] = 8, + [109490] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(3540), 1, - sym_comment, - STATE(4750), 1, + STATE(922), 1, sym__immediate_decimal, - ACTIONS(6250), 2, + STATE(3593), 1, + sym_comment, + ACTIONS(1637), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(1639), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107462] = 4, + [109518] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3541), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107482] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3542), 1, - sym_comment, - ACTIONS(747), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 6, + ACTIONS(3317), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [107502] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(727), 1, + STATE(3398), 1, sym__immediate_decimal, - STATE(3543), 1, + STATE(3594), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(5090), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(5244), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + STATE(3397), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107530] = 8, + [109546] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(6898), 1, - sym_filesize_unit, - ACTIONS(6900), 1, - sym_duration_unit, - ACTIONS(6902), 1, - sym__unquoted_pattern, - STATE(3544), 1, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6950), 1, + anon_sym_DOLLAR, + STATE(3595), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [107558] = 8, + STATE(4233), 1, + sym__immediate_decimal, + ACTIONS(6388), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7004), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4144), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109574] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - STATE(727), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(838), 1, sym__immediate_decimal, - STATE(3545), 1, + STATE(3596), 1, sym_comment, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + ACTIONS(3962), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(837), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107586] = 4, + [109602] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3546), 1, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + ACTIONS(4881), 1, + anon_sym_DOLLAR, + STATE(2659), 1, + sym__immediate_decimal, + STATE(3597), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(4910), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4912), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1300), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109630] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(908), 1, + sym__space, + ACTIONS(4119), 1, anon_sym_DOT_DOT2, + ACTIONS(5172), 1, sym__unquoted_pattern, - ACTIONS(851), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(6621), 1, sym_filesize_unit, + ACTIONS(6623), 1, sym_duration_unit, - [107606] = 8, + STATE(3598), 1, + sym_comment, + ACTIONS(866), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(4121), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109660] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6220), 1, anon_sym_LPAREN2, - STATE(955), 1, - sym__immediate_decimal, - STATE(3547), 1, + ACTIONS(6994), 1, + anon_sym_DOLLAR, + STATE(3599), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + STATE(3999), 1, + sym__immediate_decimal, + ACTIONS(6222), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(888), 2, + ACTIONS(6996), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107634] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - STATE(3548), 1, - sym_comment, - ACTIONS(1736), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [107656] = 4, + [109688] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3549), 1, + ACTIONS(7006), 1, + anon_sym_DOT, + ACTIONS(7008), 1, + aux_sym__immediate_decimal_token5, + STATE(3600), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1752), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 7, + ACTIONS(1750), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107676] = 8, + [109712] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(1083), 1, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(2576), 1, sym__immediate_decimal, - STATE(3550), 1, + STATE(3601), 1, sym_comment, - ACTIONS(1683), 2, + ACTIONS(4895), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1685), 2, + ACTIONS(4897), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107704] = 8, + [109740] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - STATE(1300), 1, + ACTIONS(3799), 1, + anon_sym_DOLLAR, + STATE(3014), 1, sym__immediate_decimal, - STATE(3551), 1, + STATE(3602), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(5193), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1298), 2, + ACTIONS(5195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3268), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107732] = 8, + [109768] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(727), 1, - sym__immediate_decimal, - STATE(3552), 1, + STATE(3603), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, + STATE(4286), 1, + sym__immediate_decimal, + ACTIONS(6187), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + ACTIONS(6189), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107760] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - STATE(3553), 1, - sym_comment, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [107782] = 6, + [109796] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6904), 1, - anon_sym_DOT, - ACTIONS(6906), 1, - aux_sym__immediate_decimal_token5, - STATE(3554), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107806] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6468), 1, - anon_sym_DOT_DOT2, - ACTIONS(6472), 1, - sym_filesize_unit, - ACTIONS(6474), 1, - sym_duration_unit, - STATE(3555), 1, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(696), 1, + sym__immediate_decimal, + STATE(3604), 1, sym_comment, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6470), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107836] = 8, + ACTIONS(1594), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1596), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(695), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109824] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - STATE(1956), 1, + STATE(1492), 1, sym__immediate_decimal, - STATE(3556), 1, + STATE(3605), 1, sym_comment, - ACTIONS(3940), 2, + ACTIONS(3460), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, + ACTIONS(3462), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1960), 2, + STATE(1300), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107864] = 8, + [109852] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(955), 1, + STATE(2082), 1, sym__immediate_decimal, - STATE(3557), 1, + STATE(3606), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107892] = 8, + [109880] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(1266), 1, + STATE(913), 1, sym__immediate_decimal, - STATE(3558), 1, + STATE(3607), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1631), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1264), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107920] = 6, - ACTIONS(103), 1, + [109908] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6908), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6910), 1, - aux_sym__immediate_decimal_token5, - STATE(3559), 1, - sym_comment, - ACTIONS(1728), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 4, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [107944] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1472), 1, - sym__entry_separator, - STATE(3560), 1, + STATE(1460), 1, + sym__immediate_decimal, + STATE(3608), 1, sym_comment, - ACTIONS(1470), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [107964] = 4, + ACTIONS(3370), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3372), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(839), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109936] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3561), 1, + STATE(3609), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, ACTIONS(749), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107984] = 7, + [109956] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2899), 1, - sym_cell_path, - STATE(3562), 1, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + ACTIONS(4881), 1, + anon_sym_DOLLAR, + STATE(1297), 1, + sym__immediate_decimal, + STATE(3610), 1, sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1882), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108010] = 5, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1712), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1295), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109984] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6912), 1, + ACTIONS(6655), 1, aux_sym__immediate_decimal_token5, - STATE(3563), 1, + STATE(3611), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1750), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 4, + ACTIONS(1752), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [108032] = 6, + [110006] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6914), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6916), 1, - aux_sym__immediate_decimal_token5, - STATE(3564), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108056] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6606), 1, - aux_sym__immediate_decimal_token5, - STATE(3565), 1, - sym_comment, - ACTIONS(1736), 4, + ACTIONS(1590), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108078] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(1924), 1, + STATE(838), 1, sym__immediate_decimal, - STATE(3566), 1, + STATE(3612), 1, sym_comment, - ACTIONS(3900), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, + ACTIONS(6400), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108106] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, - anon_sym_DOLLAR, - STATE(2997), 1, - sym__immediate_decimal, - STATE(3567), 1, - sym_comment, - ACTIONS(6254), 2, + ACTIONS(6629), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6918), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2996), 2, + STATE(837), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108134] = 4, - ACTIONS(103), 1, + [110034] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1545), 1, - sym__entry_separator, - STATE(3568), 1, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2265), 1, + sym_cell_path, + STATE(2562), 1, + sym_path, + STATE(3613), 1, sym_comment, - ACTIONS(1543), 8, - anon_sym_COLON, - anon_sym_RBRACK, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1446), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [108154] = 5, + anon_sym_DASH_DASH, + [110060] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7010), 1, + anon_sym_DOT, + ACTIONS(7012), 1, + aux_sym__immediate_decimal_token5, + STATE(3614), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110084] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6920), 1, + ACTIONS(7014), 1, aux_sym__immediate_decimal_token5, - STATE(3569), 1, + STATE(3615), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1816), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(1818), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108176] = 3, + sym__unquoted_pattern, + [110106] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3570), 1, + STATE(3616), 1, sym_comment, - ACTIONS(6922), 9, + ACTIONS(7016), 9, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -228822,26057 +230665,26220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [108194] = 6, + [110124] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1724), 1, + sym__unquoted_pattern, + ACTIONS(7018), 1, + anon_sym_DOT_DOT2, + ACTIONS(7022), 1, + sym_filesize_unit, + ACTIONS(7024), 1, + sym_duration_unit, + STATE(3617), 1, + sym_comment, + ACTIONS(7020), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(908), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110152] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6924), 1, - anon_sym_DOT, - ACTIONS(6926), 1, + ACTIONS(6677), 1, aux_sym__immediate_decimal_token5, - STATE(3571), 1, + STATE(3618), 1, sym_comment, - ACTIONS(1738), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 4, + ACTIONS(1750), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [108218] = 7, + ACTIONS(1752), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [110174] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2258), 1, - sym_cell_path, - STATE(2511), 1, - sym_path, - STATE(3572), 1, + STATE(3619), 1, sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 5, - anon_sym_EQ, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 7, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_GT2, anon_sym_DASH_DASH, - [108244] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110194] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6930), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(3133), 1, - sym_cell_path, - STATE(3573), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(3620), 1, sym_comment, - ACTIONS(6928), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108269] = 7, - ACTIONS(3), 1, + STATE(3952), 1, + sym__immediate_decimal, + ACTIONS(5974), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5976), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(839), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110222] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_DOT2, - STATE(518), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, - sym_path, - STATE(1333), 1, - sym_cell_path, - STATE(3574), 1, + ACTIONS(1460), 1, + sym__entry_separator, + STATE(3621), 1, sym_comment, - ACTIONS(6932), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108294] = 5, + ACTIONS(1458), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110241] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6934), 1, + ACTIONS(7008), 1, aux_sym__immediate_decimal_token5, - STATE(3575), 1, + STATE(3622), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1752), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 5, + ACTIONS(1750), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108315] = 7, - ACTIONS(3), 1, + [110262] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(1840), 1, + sym__table_head_separator, + ACTIONS(7028), 1, anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3035), 1, - sym_cell_path, - STATE(3576), 1, + STATE(3623), 1, sym_comment, - STATE(3592), 1, + STATE(4367), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(6936), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108340] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(6938), 1, - anon_sym_DOT_DOT2, - STATE(3577), 1, - sym_comment, - ACTIONS(6940), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [108363] = 4, + STATE(4745), 1, + sym_path, + STATE(5023), 1, + sym_cell_path, + ACTIONS(7026), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__entry_separator, + [110289] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3578), 1, + STATE(3624), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1816), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1804), 4, + ACTIONS(1818), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [108382] = 4, - ACTIONS(3), 1, + [110308] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3579), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(1726), 6, - anon_sym_if, + ACTIONS(2001), 1, + sym__space, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(7030), 1, + anon_sym_DOT_DOT2, + STATE(3625), 1, + sym_comment, + ACTIONS(2003), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + anon_sym_SEMI, + ACTIONS(7032), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108401] = 7, + [110335] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(7036), 1, anon_sym_DOT2, - STATE(423), 1, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(2603), 1, sym_path, - STATE(951), 1, + STATE(2969), 1, sym_cell_path, - STATE(3580), 1, + STATE(3626), 1, sym_comment, - ACTIONS(6942), 4, + ACTIONS(7034), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108426] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1884), 1, - sym__table_head_separator, - ACTIONS(6947), 1, - anon_sym_DOT_DOT, - ACTIONS(6949), 1, - anon_sym_DOT2, - STATE(3581), 1, - sym_comment, - STATE(3755), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, - sym_path, - STATE(4368), 1, - sym_cell_path, - ACTIONS(6944), 2, - anon_sym_RBRACK, - sym__entry_separator, - [108455] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6953), 1, - anon_sym_DASH2, - STATE(3582), 1, - sym_comment, - ACTIONS(6951), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [108474] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3583), 1, - sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108493] = 4, + [110360] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3584), 1, + STATE(3627), 1, sym_comment, - ACTIONS(1870), 4, + ACTIONS(1854), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1872), 4, + ACTIONS(1856), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [108512] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3585), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108531] = 7, + [110379] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6957), 1, + ACTIONS(7040), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(346), 1, sym_path, - STATE(3586), 1, + STATE(3628), 1, sym_comment, - STATE(3778), 1, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4556), 1, + STATE(4625), 1, sym_cell_path, - ACTIONS(6955), 4, + ACTIONS(7038), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108556] = 7, + [110404] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6961), 1, + ACTIONS(5052), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(446), 1, sym_path, - STATE(2556), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3035), 1, + STATE(3629), 1, + sym_comment, + STATE(4356), 1, sym_cell_path, - STATE(3587), 1, + ACTIONS(7042), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110429] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(3031), 1, + sym_cell_path, + STATE(3630), 1, sym_comment, - ACTIONS(6959), 4, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7044), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108581] = 4, + [110454] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3588), 1, + ACTIONS(7046), 1, + aux_sym__immediate_decimal_token5, + STATE(3631), 1, sym_comment, - ACTIONS(1872), 2, + ACTIONS(1818), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 6, - anon_sym_if, + ACTIONS(1816), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108600] = 5, + [110475] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token5, - STATE(3589), 1, + ACTIONS(5052), 1, + anon_sym_DOT2, + STATE(446), 1, + sym_path, + STATE(2294), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3632), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108621] = 5, + STATE(4139), 1, + sym_cell_path, + ACTIONS(7048), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110500] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6926), 1, + ACTIONS(6968), 1, aux_sym__immediate_decimal_token5, - STATE(3590), 1, + STATE(3633), 1, sym_comment, - ACTIONS(1738), 3, + ACTIONS(1752), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1736), 4, + ACTIONS(1750), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [108642] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3591), 1, - sym_comment, - STATE(4217), 1, - sym_cell_path, - ACTIONS(6963), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [108667] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3592), 1, - sym_comment, - STATE(3593), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108690] = 5, + [110521] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6965), 1, + ACTIONS(7052), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2562), 1, sym_path, - STATE(3593), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108711] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(423), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(951), 1, + STATE(3031), 1, sym_cell_path, - STATE(3594), 1, + STATE(3634), 1, sym_comment, - ACTIONS(6968), 4, + ACTIONS(7050), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108736] = 5, + [110546] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6906), 1, - aux_sym__immediate_decimal_token5, - STATE(3595), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108757] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3596), 1, - sym_comment, - ACTIONS(1870), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108776] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3597), 1, + STATE(3635), 1, sym_comment, - ACTIONS(1726), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108795] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(6970), 1, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, - STATE(3598), 1, - sym_comment, - ACTIONS(1976), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6972), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108822] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(6974), 1, - anon_sym_alias, - ACTIONS(6976), 1, - anon_sym_const, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - STATE(3599), 1, - sym_comment, - [108853] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, sym__unquoted_pattern, - ACTIONS(6986), 1, - anon_sym_DOT_DOT2, - STATE(3600), 1, - sym_comment, - ACTIONS(6988), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 4, + ACTIONS(1738), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [108876] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6990), 1, - aux_sym__immediate_decimal_token5, - STATE(3601), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 5, - anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108897] = 7, + [110565] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6994), 1, + ACTIONS(1842), 1, anon_sym_DOT2, - STATE(1947), 1, + STATE(421), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(446), 1, sym_path, - STATE(2183), 1, + STATE(898), 1, sym_cell_path, - STATE(3602), 1, + STATE(3636), 1, sym_comment, - ACTIONS(6992), 4, + ACTIONS(7054), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108922] = 8, - ACTIONS(103), 1, + [110590] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(6996), 1, - anon_sym_DOT_DOT2, - STATE(3603), 1, + ACTIONS(2251), 1, + anon_sym_DOT2, + STATE(525), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(827), 1, + sym_path, + STATE(1316), 1, + sym_cell_path, + STATE(3637), 1, sym_comment, - ACTIONS(1966), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108949] = 5, + ACTIONS(7056), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110615] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7000), 1, + ACTIONS(7058), 1, aux_sym__immediate_decimal_token5, - STATE(3604), 1, + STATE(3638), 1, sym_comment, - ACTIONS(1804), 3, + ACTIONS(1818), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1802), 4, + ACTIONS(1816), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [108970] = 7, - ACTIONS(3), 1, + [110636] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(1840), 1, + sym__table_head_separator, + ACTIONS(7026), 1, + anon_sym_DOT_DOT, + ACTIONS(7063), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(3639), 1, + sym_comment, + STATE(3879), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4125), 1, sym_path, - STATE(951), 1, + STATE(4475), 1, sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3605), 1, - sym_comment, - ACTIONS(7002), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108995] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(7060), 2, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7004), 1, + [110665] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(7065), 1, anon_sym_DOT_DOT2, - STATE(3606), 1, + STATE(3640), 1, sym_comment, - ACTIONS(1976), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7006), 2, + ACTIONS(7067), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109022] = 7, + ACTIONS(2001), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110688] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(1842), 1, anon_sym_DOT2, - STATE(423), 1, + STATE(421), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(446), 1, sym_path, - STATE(951), 1, + STATE(898), 1, sym_cell_path, - STATE(3607), 1, + STATE(3641), 1, sym_comment, - ACTIONS(7008), 4, + ACTIONS(7069), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109047] = 8, + [110713] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, + ACTIONS(2011), 1, sym__space, - ACTIONS(1968), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(7010), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(7071), 1, anon_sym_DOT_DOT2, - STATE(3608), 1, + STATE(3642), 1, sym_comment, - ACTIONS(1966), 2, + ACTIONS(2013), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7012), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109074] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7014), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7016), 1, - aux_sym__immediate_decimal_token5, - STATE(3609), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(7073), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109097] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1448), 1, - sym__entry_separator, - ACTIONS(7018), 1, - anon_sym_QMARK2, - ACTIONS(7020), 1, - anon_sym_BANG, - STATE(3610), 1, - sym_comment, - STATE(3947), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [109122] = 6, + [110740] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7022), 1, - anon_sym_DOT, - ACTIONS(7024), 1, - aux_sym__immediate_decimal_token5, - STATE(3611), 1, + STATE(3643), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1818), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109145] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7028), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(3030), 1, - sym_cell_path, - STATE(3612), 1, - sym_comment, - ACTIONS(7026), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109170] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3613), 1, - sym_comment, - STATE(4297), 1, - sym_cell_path, - ACTIONS(7030), 4, + sym__unquoted_pattern, + ACTIONS(1816), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109195] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3614), 1, - sym_comment, - ACTIONS(1802), 4, - sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [109214] = 7, + [110759] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5052), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(446), 1, sym_path, - STATE(1333), 1, + STATE(898), 1, sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3615), 1, - sym_comment, - ACTIONS(7032), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109239] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3616), 1, - sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109258] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3617), 1, - sym_comment, - ACTIONS(1802), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109277] = 4, + STATE(2294), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3644), 1, + sym_comment, + ACTIONS(7075), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110784] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3618), 1, + STATE(3645), 1, sym_comment, - ACTIONS(1870), 4, + ACTIONS(1738), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1872), 4, + ACTIONS(1740), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [109296] = 7, + [110803] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(1842), 1, anon_sym_DOT2, - STATE(518), 1, + STATE(421), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, + STATE(446), 1, sym_path, - STATE(1333), 1, + STATE(898), 1, sym_cell_path, - STATE(3619), 1, + STATE(3646), 1, sym_comment, - ACTIONS(7034), 4, + ACTIONS(7077), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109321] = 8, + [110828] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7081), 1, + anon_sym_DASH2, + STATE(3647), 1, + sym_comment, + ACTIONS(7079), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110847] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1884), 1, - sym__table_head_separator, - ACTIONS(7036), 1, - anon_sym_DOT2, - STATE(3620), 1, + ACTIONS(1519), 1, + sym__entry_separator, + STATE(3648), 1, sym_comment, - STATE(4059), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - STATE(4963), 1, - sym_cell_path, - ACTIONS(6947), 3, + ACTIONS(1517), 7, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - sym__entry_separator, - [109348] = 8, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110866] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1434), 1, + ACTIONS(1507), 1, sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3621), 1, + STATE(3649), 1, sym_comment, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3884), 1, - sym_path, - STATE(4318), 1, - sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(1505), 7, anon_sym_RBRACK, - anon_sym_GT2, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [109375] = 6, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110885] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7040), 1, - anon_sym_DOT, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - STATE(3622), 1, + ACTIONS(5312), 1, + anon_sym_DOT2, + STATE(827), 1, + sym_path, + STATE(1316), 1, + sym_cell_path, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3650), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109397] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(7044), 1, + ACTIONS(7083), 4, + anon_sym_in, sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3623), 1, - sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, - sym__assignment_pattern, - [109425] = 6, + anon_sym_nu, + anon_sym_env, + [110910] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1523), 1, sym__entry_separator, - ACTIONS(7048), 1, - anon_sym_DOT2, - STATE(3884), 1, - sym_path, - STATE(3624), 2, + STATE(3651), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(1521), 7, anon_sym_RBRACK, - anon_sym_GT2, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [109447] = 5, - ACTIONS(3), 1, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110929] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7051), 1, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7085), 1, anon_sym_DOT_DOT2, - STATE(3625), 1, + STATE(3652), 1, sym_comment, - ACTIONS(7053), 2, + ACTIONS(2013), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7087), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109467] = 4, - ACTIONS(103), 1, + [110956] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3626), 1, + ACTIONS(7089), 1, + anon_sym_DOT, + ACTIONS(7091), 1, + aux_sym__immediate_decimal_token5, + STATE(3653), 1, sym_comment, - ACTIONS(1804), 3, - anon_sym_RBRACE, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1802), 4, - anon_sym_LPAREN2, + ACTIONS(741), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [109485] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1513), 1, - sym_parameter_parens, - STATE(1514), 1, - sym_parameter_bracks, - STATE(3627), 1, - sym_comment, - STATE(3724), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109513] = 9, + sym_filesize_unit, + sym_duration_unit, + [110979] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1542), 1, - sym_parameter_parens, - STATE(1543), 1, - sym_parameter_bracks, - STATE(3628), 1, + ACTIONS(2251), 1, + anon_sym_DOT2, + STATE(525), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(827), 1, + sym_path, + STATE(1316), 1, + sym_cell_path, + STATE(3654), 1, sym_comment, - STATE(3651), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109541] = 9, - ACTIONS(3), 1, + ACTIONS(7093), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [111004] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1544), 1, - sym_parameter_parens, - STATE(1545), 1, - sym_parameter_bracks, - STATE(3629), 1, + STATE(3655), 1, sym_comment, - STATE(3659), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109569] = 6, + ACTIONS(1816), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1818), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [111023] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7061), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7063), 1, - aux_sym__immediate_decimal_token5, - STATE(3630), 1, + STATE(3656), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1738), 4, sym__space, anon_sym_LPAREN2, - ACTIONS(1728), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1740), 4, sym__newline, anon_sym_SEMI, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - [109591] = 6, + [111042] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7065), 1, - anon_sym_DOT, - ACTIONS(7067), 1, + ACTIONS(7095), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7097), 1, aux_sym__immediate_decimal_token5, - STATE(3631), 1, + STATE(3657), 1, sym_comment, - ACTIONS(1736), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109613] = 8, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111065] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2001), 1, sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3632), 1, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_DOT_DOT2, + STATE(3658), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4102), 1, - sym_cell_path, - ACTIONS(1868), 2, + ACTIONS(2003), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [109639] = 9, + anon_sym_DOT_DOT, + ACTIONS(7101), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111092] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1523), 1, - sym_parameter_parens, - STATE(1524), 1, - sym_parameter_bracks, - STATE(3633), 1, + ACTIONS(7012), 1, + aux_sym__immediate_decimal_token5, + STATE(3659), 1, sym_comment, - STATE(3713), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109667] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7071), 1, + ACTIONS(739), 2, anon_sym_DOT_DOT2, - STATE(3634), 1, - sym_comment, - ACTIONS(7073), 2, + sym__unquoted_pattern, + ACTIONS(741), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109687] = 5, + sym_filesize_unit, + sym_duration_unit, + [111113] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7075), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(7103), 1, anon_sym_DOT_DOT2, - STATE(3635), 1, + STATE(3660), 1, sym_comment, - ACTIONS(7077), 2, + ACTIONS(7105), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 4, + ACTIONS(2011), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109707] = 5, - ACTIONS(3), 1, + [111136] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7079), 1, - anon_sym_DOT_DOT2, - STATE(3636), 1, + STATE(3661), 1, sym_comment, - ACTIONS(7081), 2, + ACTIONS(1816), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 4, - anon_sym_if, + ACTIONS(1818), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109727] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [111155] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7083), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7085), 1, + ACTIONS(7107), 1, aux_sym__immediate_decimal_token5, - STATE(3637), 1, - sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [109749] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3638), 1, + STATE(3662), 1, sym_comment, - ACTIONS(1874), 3, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1876), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [109767] = 8, + sym_filesize_unit, + sym_duration_unit, + [111176] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7087), 1, - anon_sym_DOT_DOT2, - STATE(3639), 1, + STATE(3663), 1, sym_comment, - ACTIONS(7089), 2, + ACTIONS(1854), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109793] = 7, + ACTIONS(1856), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [111195] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1460), 1, + ACTIONS(1446), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(3624), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3640), 1, - sym_comment, - STATE(3884), 1, + STATE(346), 1, sym_path, - ACTIONS(1458), 3, + STATE(374), 1, + sym_cell_path, + STATE(3664), 1, + sym_comment, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 3, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [109817] = 9, + anon_sym_RBRACE, + anon_sym_COLON2, + [111222] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(3665), 1, + sym_comment, + STATE(3666), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1494), 5, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(7057), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + anon_sym_GT2, anon_sym_DASH_DASH, - STATE(1531), 1, - sym_parameter_parens, - STATE(1532), 1, - sym_parameter_bracks, - STATE(3641), 1, - sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109845] = 9, + [111245] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7111), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(3666), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1498), 5, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(7057), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + anon_sym_GT2, anon_sym_DASH_DASH, - STATE(1546), 1, - sym_parameter_parens, - STATE(1547), 1, - sym_parameter_bracks, - STATE(3642), 1, + [111266] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1527), 1, + sym__entry_separator, + STATE(3667), 1, sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109873] = 7, + ACTIONS(1525), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [111285] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7091), 1, - anon_sym_DOT, - STATE(3643), 1, + ACTIONS(7116), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + STATE(3198), 1, + sym_cell_path, + STATE(3668), 1, sym_comment, - STATE(4179), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [109897] = 5, - ACTIONS(3), 1, + ACTIONS(7114), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [111310] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7093), 1, - aux_sym__immediate_decimal_token5, - STATE(3644), 1, + STATE(3669), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 4, + ACTIONS(1854), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109917] = 4, - ACTIONS(3), 1, + sym__entry_separator, + ACTIONS(1856), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [111329] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3645), 1, + STATE(3670), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1738), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109935] = 9, + sym__entry_separator, + ACTIONS(1740), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [111348] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7095), 1, - anon_sym_RBRACK, - STATE(3646), 1, + ACTIONS(7120), 1, + anon_sym_DOT2, + STATE(1946), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + STATE(2188), 1, + sym_cell_path, + STATE(3671), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5018), 1, - sym__table_body, - [109963] = 8, + ACTIONS(7118), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [111373] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1434), 1, + ACTIONS(1511), 1, sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(368), 1, - sym_cell_path, - STATE(3647), 1, + STATE(3672), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1432), 2, + ACTIONS(1509), 7, anon_sym_RBRACK, anon_sym_RBRACE, - [109989] = 9, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [111392] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1548), 1, - sym_parameter_parens, - STATE(1549), 1, - sym_parameter_bracks, - STATE(3648), 1, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(7122), 1, + anon_sym_alias, + ACTIONS(7124), 1, + anon_sym_const, + ACTIONS(7126), 1, + anon_sym_def, + ACTIONS(7128), 1, + anon_sym_use, + ACTIONS(7130), 1, + anon_sym_extern, + ACTIONS(7132), 1, + anon_sym_module, + STATE(3673), 1, sym_comment, - STATE(3674), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110017] = 4, - ACTIONS(103), 1, + [111423] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3649), 1, + STATE(3674), 1, sym_comment, - ACTIONS(1872), 3, - anon_sym_RBRACE, + ACTIONS(1856), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 4, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(1854), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [110035] = 9, + [111442] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3940), 1, sym__newline, - ACTIONS(7097), 1, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7136), 1, anon_sym_RBRACK, - STATE(3650), 1, + STATE(3675), 1, sym_comment, - STATE(4021), 1, + STATE(4083), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4471), 1, sym_val_list, - STATE(4577), 1, + STATE(4512), 1, aux_sym__table_body_repeat1, - STATE(4949), 1, + STATE(4837), 1, sym__table_body, - [110063] = 9, + [111470] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1551), 1, - sym_parameter_parens, - STATE(1552), 1, - sym_parameter_bracks, - STATE(3651), 1, + ACTIONS(1740), 1, + sym__unquoted_pattern, + ACTIONS(7138), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7140), 1, + aux_sym__immediate_decimal_token5, + STATE(3676), 1, sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110091] = 4, - ACTIONS(3), 1, + ACTIONS(1738), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [111492] = 9, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3652), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7126), 1, + anon_sym_def, + ACTIONS(7128), 1, + anon_sym_use, + ACTIONS(7130), 1, + anon_sym_extern, + ACTIONS(7132), 1, + anon_sym_module, + ACTIONS(7142), 1, + anon_sym_alias, + ACTIONS(7144), 1, + anon_sym_const, + STATE(3677), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110109] = 7, + [111520] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3678), 1, + sym_comment, + STATE(3932), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4333), 1, + sym__assignment_pattern, + [111548] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6961), 1, + ACTIONS(6962), 1, anon_sym_DOT2, - STATE(2258), 1, - sym_cell_path, - STATE(2511), 1, + STATE(2562), 1, sym_path, - STATE(2556), 1, + STATE(3104), 1, + sym_cell_path, + STATE(3665), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3653), 1, + STATE(3679), 1, sym_comment, - ACTIONS(1434), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [110133] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(1876), 3, anon_sym_LBRACK, - ACTIONS(7057), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, anon_sym_DASH_DASH, - STATE(1576), 1, - sym_parameter_parens, - STATE(1604), 1, - sym_parameter_bracks, - STATE(3654), 1, - sym_comment, - STATE(3727), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110161] = 8, + [111572] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(1872), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(346), 1, sym_path, - STATE(3655), 1, + STATE(3680), 1, sym_comment, - STATE(3778), 1, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4214), 1, + STATE(4580), 1, sym_cell_path, - ACTIONS(1860), 2, + ACTIONS(1874), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [110187] = 9, + [111598] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1556), 1, + sym_parameter_parens, + STATE(1557), 1, + sym_parameter_bracks, + STATE(3681), 1, + sym_comment, + STATE(3697), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, + sym_long_flag, + [111626] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(7156), 1, + anon_sym_DOT_DOT2, + STATE(3682), 1, + sym_comment, + ACTIONS(7158), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2011), 3, sym__newline, - ACTIONS(7099), 1, - anon_sym_RBRACK, - STATE(3656), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [111648] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7160), 1, + anon_sym_alias, + ACTIONS(7162), 1, + anon_sym_const, + ACTIONS(7164), 1, + anon_sym_def, + ACTIONS(7166), 1, + anon_sym_use, + ACTIONS(7168), 1, + anon_sym_extern, + ACTIONS(7170), 1, + anon_sym_module, + STATE(3683), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(4955), 1, - sym__table_body, - [110215] = 9, + [111676] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1528), 1, + STATE(1516), 1, sym_parameter_parens, - STATE(1529), 1, + STATE(1517), 1, sym_parameter_bracks, - STATE(3657), 1, + STATE(3684), 1, sym_comment, - STATE(3708), 1, + STATE(3746), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4588), 1, sym_long_flag, - [110243] = 9, + [111704] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1553), 1, + STATE(1558), 1, sym_parameter_parens, - STATE(1554), 1, + STATE(1559), 1, sym_parameter_bracks, - STATE(3658), 1, + STATE(3685), 1, sym_comment, - STATE(3688), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4588), 1, sym_long_flag, - [110271] = 9, + [111732] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1509), 1, + STATE(1560), 1, sym_parameter_parens, - STATE(1662), 1, + STATE(1561), 1, sym_parameter_bracks, - STATE(3659), 1, + STATE(3686), 1, sym_comment, - STATE(4039), 1, + STATE(3761), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4588), 1, sym_long_flag, - [110299] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6949), 1, - anon_sym_DOT2, - STATE(3660), 1, - sym_comment, - STATE(3755), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, - sym_path, - STATE(4421), 1, - sym_cell_path, - ACTIONS(1860), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [110323] = 4, - ACTIONS(103), 1, + [111760] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3661), 1, + STATE(3687), 1, sym_comment, - ACTIONS(1641), 3, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1643), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [110341] = 9, - ACTIONS(103), 1, + [111778] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3662), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(7172), 1, + anon_sym_DOT, + STATE(3688), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, - sym__assignment_pattern, - [110369] = 4, + STATE(4120), 1, + sym__immediate_decimal, + ACTIONS(6398), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6400), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [111802] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3663), 1, + STATE(3689), 1, sym_comment, - ACTIONS(1822), 3, + ACTIONS(1647), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1824), 4, + ACTIONS(1649), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [110387] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1878), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3664), 1, - sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4113), 1, - sym_cell_path, - ACTIONS(1880), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [110413] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7101), 1, - anon_sym_RBRACK, - STATE(3665), 1, - sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5044), 1, - sym__table_body, - [110441] = 9, + [111820] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1663), 1, + STATE(1518), 1, sym_parameter_parens, - STATE(1664), 1, + STATE(1519), 1, sym_parameter_bracks, - STATE(3641), 1, - aux_sym_decl_def_repeat1, - STATE(3666), 1, + STATE(3690), 1, sym_comment, - STATE(4547), 1, + STATE(3933), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, sym_long_flag, - [110469] = 8, + [111848] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2001), 1, sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3667), 1, + ACTIONS(2003), 1, + anon_sym_RBRACE, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(7174), 1, + anon_sym_DOT_DOT2, + STATE(3691), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4096), 1, - sym_cell_path, - ACTIONS(1864), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [110495] = 8, + ACTIONS(7176), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111874] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1878), 1, + ACTIONS(908), 1, sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3668), 1, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6711), 1, + anon_sym_DOT_DOT2, + ACTIONS(6715), 1, + sym_filesize_unit, + ACTIONS(6717), 1, + sym_duration_unit, + STATE(3692), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4113), 1, - sym_cell_path, - ACTIONS(1880), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [110521] = 8, + ACTIONS(6713), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111900] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(7048), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7180), 1, anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3669), 1, + STATE(3693), 1, sym_comment, - STATE(3778), 1, + STATE(3921), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4096), 1, + STATE(4386), 1, + sym_path, + STATE(4486), 1, sym_cell_path, - ACTIONS(1864), 2, + ACTIONS(7178), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [110547] = 9, + anon_sym_DOT_DOT, + [111926] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7103), 1, - anon_sym_RBRACK, - STATE(3670), 1, - sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5054), 1, - sym__table_body, - [110575] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7105), 1, - anon_sym_alias, - ACTIONS(7107), 1, - anon_sym_const, - ACTIONS(7109), 1, - anon_sym_def, - ACTIONS(7111), 1, - anon_sym_use, - ACTIONS(7113), 1, - anon_sym_extern, - ACTIONS(7115), 1, - anon_sym_module, - STATE(3671), 1, + STATE(3694), 1, sym_comment, - [110603] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6724), 1, + ACTIONS(1818), 2, anon_sym_DOT_DOT2, - ACTIONS(6728), 1, - sym_filesize_unit, - ACTIONS(6730), 1, - sym_duration_unit, - STATE(3672), 1, - sym_comment, - ACTIONS(6726), 2, + sym__unquoted_pattern, + ACTIONS(1816), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110629] = 8, + [111944] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7182), 1, + anon_sym_DOT, + ACTIONS(7184), 1, + aux_sym__immediate_decimal_token5, + STATE(3695), 1, + sym_comment, + ACTIONS(1750), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1752), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [111966] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(2011), 1, sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACK, - ACTIONS(1978), 1, + ACTIONS(2013), 1, + anon_sym_RBRACE, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7117), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7186), 1, anon_sym_DOT_DOT2, - STATE(3673), 1, + STATE(3696), 1, sym_comment, - ACTIONS(7119), 2, + ACTIONS(7188), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110655] = 9, + [111992] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1555), 1, - sym_parameter_parens, - STATE(1556), 1, + STATE(1533), 1, sym_parameter_bracks, - STATE(3674), 1, + STATE(1676), 1, + sym_parameter_parens, + STATE(3697), 1, sym_comment, - STATE(4039), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4588), 1, sym_long_flag, - [110683] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7121), 1, - anon_sym_RBRACK, - STATE(3675), 1, - sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(4993), 1, - sym__table_body, - [110711] = 8, + [112020] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, + ACTIONS(1434), 1, sym__entry_separator, - ACTIONS(7123), 1, - anon_sym_DOT_DOT2, - ACTIONS(7127), 1, - sym_filesize_unit, - ACTIONS(7129), 1, - sym_duration_unit, - STATE(3676), 1, - sym_comment, - ACTIONS(7125), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110737] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7131), 1, + ACTIONS(7190), 1, anon_sym_QMARK2, - ACTIONS(7133), 1, + ACTIONS(7192), 1, anon_sym_BANG, - STATE(3677), 1, + STATE(3698), 1, sym_comment, - STATE(4266), 1, + STATE(4378), 1, sym__path_suffix, - ACTIONS(1446), 4, + ACTIONS(1432), 3, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, + anon_sym_DOT_DOT, anon_sym_DOT2, - [110759] = 6, - ACTIONS(103), 1, + [112044] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7135), 1, - anon_sym_DOT, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token5, - STATE(3678), 1, + STATE(3699), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(1856), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - [110781] = 6, + ACTIONS(1854), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112062] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_DOT, - ACTIONS(7141), 1, - aux_sym__immediate_decimal_token5, - STATE(3679), 1, + ACTIONS(1498), 1, + sym__entry_separator, + ACTIONS(7194), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3700), 2, sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON2, + [112084] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3701), 1, + sym_comment, + ACTIONS(1880), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1738), 3, + ACTIONS(1882), 4, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [110803] = 6, + anon_sym_DOT_DOT2, + [112102] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1876), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3702), 1, + sym_comment, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4380), 1, + sym_cell_path, + ACTIONS(1878), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [112128] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7197), 1, + aux_sym__immediate_decimal_token5, + STATE(3703), 1, + sym_comment, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(757), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112148] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7143), 1, + ACTIONS(7201), 1, anon_sym_DOT_DOT2, - STATE(3680), 1, + STATE(3704), 1, sym_comment, - ACTIONS(7145), 2, + ACTIONS(7203), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 3, + ACTIONS(7199), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [110825] = 6, + [112168] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7147), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7149), 1, - aux_sym__immediate_decimal_token5, - STATE(3681), 1, - sym_comment, - ACTIONS(1728), 2, + ACTIONS(7201), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 3, - anon_sym_LBRACE, + STATE(3705), 1, + sym_comment, + ACTIONS(7203), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110847] = 8, - ACTIONS(103), 1, + ACTIONS(7205), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [112188] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1882), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3682), 1, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(1724), 1, + sym__unquoted_pattern, + ACTIONS(7207), 1, + anon_sym_DOT_DOT2, + ACTIONS(7211), 1, + sym_filesize_unit, + ACTIONS(7213), 1, + sym_duration_unit, + STATE(3706), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4176), 1, - sym_cell_path, - ACTIONS(1884), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [110873] = 4, + ACTIONS(7209), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112214] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3683), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7215), 1, + anon_sym_DOT, + STATE(3707), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + STATE(4186), 1, + sym__immediate_decimal, + ACTIONS(7217), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7219), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [112238] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3708), 1, + sym_comment, + ACTIONS(1768), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110891] = 8, + sym__entry_separator, + ACTIONS(1770), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [112256] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5233), 1, + ACTIONS(5421), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(346), 1, sym_path, - STATE(3684), 1, + STATE(3709), 1, sym_comment, - STATE(3778), 1, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4483), 1, + STATE(4510), 1, sym_cell_path, - ACTIONS(5231), 2, + ACTIONS(5419), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [110917] = 9, + [112282] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3710), 1, + sym_comment, + STATE(3932), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4335), 1, + sym__assignment_pattern, + [112310] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7151), 1, - anon_sym_RBRACK, - STATE(3685), 1, + ACTIONS(7052), 1, + anon_sym_DOT2, + STATE(2265), 1, + sym_cell_path, + STATE(2562), 1, + sym_path, + STATE(2570), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3711), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(4797), 1, - sym__table_body, - [110945] = 9, + ACTIONS(1446), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [112334] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, + ACTIONS(7122), 1, + anon_sym_alias, + ACTIONS(7124), 1, + anon_sym_const, + ACTIONS(7126), 1, anon_sym_def, - ACTIONS(6980), 1, + ACTIONS(7128), 1, anon_sym_use, - ACTIONS(6982), 1, + ACTIONS(7130), 1, anon_sym_extern, - ACTIONS(6984), 1, + ACTIONS(7132), 1, anon_sym_module, - ACTIONS(7153), 1, - anon_sym_alias, - ACTIONS(7155), 1, - anon_sym_const, - STATE(3686), 1, - sym_comment, - [110973] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7157), 1, - anon_sym_DOT_DOT2, - STATE(3687), 1, + STATE(3712), 1, sym_comment, - ACTIONS(7159), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110995] = 9, + [112362] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1557), 1, + STATE(1512), 1, sym_parameter_parens, - STATE(1558), 1, + STATE(1513), 1, sym_parameter_bracks, - STATE(3688), 1, - sym_comment, - STATE(4039), 1, + STATE(3685), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [111023] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3689), 1, + STATE(3713), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, - sym__assignment_pattern, - [111051] = 7, + STATE(4588), 1, + sym_long_flag, + [112390] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(6962), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2562), 1, sym_path, - STATE(3032), 1, + STATE(3121), 1, sym_cell_path, - STATE(3592), 1, + STATE(3665), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3690), 1, + STATE(3714), 1, sym_comment, - ACTIONS(1878), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [111075] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(1868), 3, anon_sym_LBRACK, - ACTIONS(7057), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, anon_sym_DASH_DASH, - STATE(1559), 1, - sym_parameter_parens, - STATE(1560), 1, - sym_parameter_bracks, - STATE(3691), 1, - sym_comment, - STATE(3706), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [111103] = 8, + [112414] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5273), 1, + ACTIONS(1876), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7180), 1, anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3692), 1, + STATE(3715), 1, sym_comment, - STATE(3778), 1, + STATE(3921), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4514), 1, + STATE(4380), 1, sym_cell_path, - ACTIONS(5271), 2, + STATE(4386), 1, + sym_path, + ACTIONS(1878), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [111129] = 8, + anon_sym_DOT_DOT, + [112440] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1964), 1, + ACTIONS(1844), 1, sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(7161), 1, - anon_sym_DOT_DOT2, - STATE(3693), 1, - sym_comment, - ACTIONS(7163), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111155] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3694), 1, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3716), 1, sym_comment, - ACTIONS(1728), 3, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4600), 1, + sym_cell_path, + ACTIONS(1846), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [111173] = 9, + [112466] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6974), 1, - anon_sym_alias, - ACTIONS(6976), 1, - anon_sym_const, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - STATE(3695), 1, + ACTIONS(1868), 1, + sym__entry_separator, + ACTIONS(7180), 1, + anon_sym_DOT2, + STATE(3717), 1, sym_comment, - [111201] = 8, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4225), 1, + sym_cell_path, + STATE(4386), 1, + sym_path, + ACTIONS(1870), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [112492] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7030), 1, + ACTIONS(1838), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3696), 1, - sym_comment, - STATE(3884), 1, + STATE(346), 1, sym_path, - STATE(4478), 1, + STATE(3718), 1, + sym_comment, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4420), 1, sym_cell_path, - ACTIONS(7165), 2, + ACTIONS(1840), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [111227] = 9, + anon_sym_RBRACE, + [112518] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3940), 1, sym__newline, - ACTIONS(7167), 1, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7221), 1, anon_sym_RBRACK, - STATE(3697), 1, + STATE(3719), 1, sym_comment, - STATE(4021), 1, + STATE(4083), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4471), 1, sym_val_list, - STATE(4577), 1, + STATE(4512), 1, aux_sym__table_body_repeat1, - STATE(5098), 1, + STATE(4928), 1, sym__table_body, - [111255] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7169), 1, - anon_sym_DOT, - STATE(3698), 1, - sym_comment, - STATE(4088), 1, - sym__immediate_decimal, - ACTIONS(7171), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7173), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [111279] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2826), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3699), 1, - sym_comment, - ACTIONS(1850), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [111303] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7175), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7177), 1, - aux_sym__immediate_decimal_token5, - STATE(3700), 1, - sym_comment, - ACTIONS(1726), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111325] = 9, + [112546] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7038), 1, + ACTIONS(7063), 1, anon_sym_DOT2, - ACTIONS(7165), 1, - anon_sym_DOT_DOT, - ACTIONS(7179), 1, - anon_sym_RBRACK, - ACTIONS(7183), 1, - sym__entry_separator, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3701), 1, + STATE(3720), 1, sym_comment, - STATE(3884), 1, + STATE(3879), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4125), 1, sym_path, - STATE(4449), 1, + STATE(4631), 1, sym_cell_path, - [111353] = 9, - ACTIONS(3), 1, + ACTIONS(1874), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [112570] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7187), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2001), 1, + sym__entry_separator, + ACTIONS(2003), 1, anon_sym_RBRACK, - STATE(3702), 1, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(7223), 1, + anon_sym_DOT_DOT2, + STATE(3721), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5180), 1, - sym__table_body, - [111381] = 7, - ACTIONS(3), 1, + ACTIONS(7225), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112596] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(5409), 1, + sym__entry_separator, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(346), 1, sym_path, - STATE(2934), 1, - sym_cell_path, - STATE(3592), 1, + STATE(3722), 1, + sym_comment, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3703), 1, + STATE(4622), 1, + sym_cell_path, + ACTIONS(5407), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [112622] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7227), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7229), 1, + aux_sym__immediate_decimal_token5, + STATE(3723), 1, sym_comment, - ACTIONS(1862), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [111405] = 7, + ACTIONS(1738), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1740), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [112644] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6949), 1, + ACTIONS(7042), 1, + sym__entry_separator, + ACTIONS(7180), 1, anon_sym_DOT2, - STATE(3704), 1, + STATE(3724), 1, sym_comment, - STATE(3755), 1, + STATE(3921), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, + STATE(4386), 1, sym_path, - STATE(4368), 1, + STATE(4576), 1, sym_cell_path, - ACTIONS(1884), 3, + ACTIONS(7231), 2, anon_sym_RBRACK, + anon_sym_DOT_DOT, + [112670] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3725), 1, + sym_comment, + ACTIONS(1858), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - sym__table_head_separator, - [111429] = 4, + ACTIONS(1860), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [112688] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3705), 1, + ACTIONS(7233), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7235), 1, + aux_sym__immediate_decimal_token5, + STATE(3726), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1738), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111447] = 9, - ACTIONS(3), 1, + [112710] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1561), 1, - sym_parameter_parens, - STATE(1562), 1, - sym_parameter_bracks, - STATE(3706), 1, + ACTIONS(5383), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3727), 1, sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [111475] = 9, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4624), 1, + sym_cell_path, + ACTIONS(5381), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [112736] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6944), 1, - anon_sym_RBRACK, - ACTIONS(6947), 1, + ACTIONS(7178), 1, anon_sym_DOT_DOT, - ACTIONS(7069), 1, + ACTIONS(7180), 1, anon_sym_DOT2, - ACTIONS(7189), 1, + ACTIONS(7237), 1, + anon_sym_RBRACK, + ACTIONS(7241), 1, sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3707), 1, + STATE(3728), 1, sym_comment, - STATE(3778), 1, + STATE(3921), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4176), 1, + STATE(4386), 1, + sym_path, + STATE(4614), 1, sym_cell_path, - [111503] = 9, + [112764] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1516), 1, + STATE(1524), 1, sym_parameter_parens, - STATE(1517), 1, + STATE(1525), 1, sym_parameter_bracks, - STATE(3708), 1, + STATE(3729), 1, sym_comment, - STATE(4039), 1, + STATE(3732), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4588), 1, sym_long_flag, - [111531] = 9, + [112792] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3940), 1, sym__newline, - ACTIONS(7192), 1, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7245), 1, anon_sym_RBRACK, - STATE(3709), 1, + STATE(3730), 1, sym_comment, - STATE(4021), 1, + STATE(4083), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4471), 1, sym_val_list, - STATE(4577), 1, + STATE(4512), 1, aux_sym__table_body_repeat1, - STATE(5051), 1, + STATE(5003), 1, sym__table_body, - [111559] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_LBRACE, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(7194), 1, - anon_sym_DOT_DOT2, - ACTIONS(7198), 1, - sym_filesize_unit, - ACTIONS(7200), 1, - sym_duration_unit, - STATE(3710), 1, - sym_comment, - ACTIONS(7196), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111585] = 8, + [112820] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7026), 1, + anon_sym_DOT_DOT, + ACTIONS(7060), 1, + anon_sym_RBRACK, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(339), 1, + ACTIONS(7247), 1, + sym__entry_separator, + STATE(346), 1, sym_path, - STATE(3711), 1, + STATE(3731), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4554), 1, - sym_cell_path, - ACTIONS(5249), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [111611] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6963), 1, - sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3712), 1, - sym_comment, - STATE(3884), 1, - sym_path, - STATE(4513), 1, + STATE(4420), 1, sym_cell_path, - ACTIONS(7202), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [111637] = 9, + [112848] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1533), 1, + STATE(1529), 1, sym_parameter_parens, - STATE(1534), 1, + STATE(1530), 1, sym_parameter_bracks, - STATE(3713), 1, + STATE(3732), 1, sym_comment, - STATE(4039), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4588), 1, sym_long_flag, - [111665] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7206), 1, - anon_sym_DOT_DOT2, - STATE(3714), 1, - sym_comment, - ACTIONS(7208), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7204), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111685] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7206), 1, - anon_sym_DOT_DOT2, - STATE(3715), 1, - sym_comment, - ACTIONS(7208), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7210), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111705] = 9, + [112876] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1538), 1, + STATE(1531), 1, sym_parameter_parens, - STATE(1539), 1, + STATE(1532), 1, sym_parameter_bracks, - STATE(3642), 1, - aux_sym_decl_def_repeat1, - STATE(3716), 1, + STATE(3733), 1, sym_comment, - STATE(4547), 1, + STATE(3737), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, sym_long_flag, - [111733] = 4, + [112904] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3717), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111751] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1850), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3718), 1, - sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4335), 1, - sym_cell_path, - ACTIONS(1853), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [111777] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7250), 1, anon_sym_RBRACK, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(7212), 1, - anon_sym_DOT_DOT2, - STATE(3719), 1, - sym_comment, - ACTIONS(7214), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111803] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7216), 1, - anon_sym_alias, - ACTIONS(7218), 1, - anon_sym_const, - STATE(3720), 1, + STATE(3734), 1, sym_comment, - [111831] = 9, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(4986), 1, + sym__table_body, + [112932] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1540), 1, + STATE(1537), 1, sym_parameter_parens, - STATE(1541), 1, + STATE(1538), 1, sym_parameter_bracks, - STATE(3721), 1, + STATE(3735), 1, sym_comment, - STATE(4039), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4588), 1, sym_long_flag, - [111859] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7220), 1, - anon_sym_alias, - ACTIONS(7222), 1, - anon_sym_const, - STATE(3722), 1, - sym_comment, - [111887] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7024), 1, - aux_sym__immediate_decimal_token5, - STATE(3723), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111907] = 9, + [112960] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1521), 1, + STATE(1539), 1, sym_parameter_parens, - STATE(1522), 1, + STATE(1540), 1, sym_parameter_bracks, - STATE(3724), 1, + STATE(3736), 1, sym_comment, - STATE(4039), 1, + STATE(3739), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4588), 1, sym_long_flag, - [111935] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7224), 1, - anon_sym_alias, - ACTIONS(7226), 1, - anon_sym_const, - STATE(3725), 1, - sym_comment, - [111963] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3726), 1, - sym_comment, - ACTIONS(1886), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1888), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [111981] = 9, + [112988] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1526), 1, + STATE(1542), 1, sym_parameter_parens, - STATE(1527), 1, + STATE(1543), 1, sym_parameter_bracks, - STATE(3727), 1, + STATE(3737), 1, sym_comment, - STATE(4039), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4588), 1, sym_long_flag, - [112009] = 9, + [113016] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7228), 1, - anon_sym_RBRACK, - STATE(3728), 1, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1545), 1, + sym_parameter_parens, + STATE(1546), 1, + sym_parameter_bracks, + STATE(3738), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(4975), 1, - sym__table_body, - [112037] = 9, + STATE(3741), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, + sym_long_flag, + [113044] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1535), 1, + STATE(1547), 1, sym_parameter_parens, - STATE(1536), 1, + STATE(1548), 1, sym_parameter_bracks, - STATE(3721), 1, - aux_sym_decl_def_repeat1, - STATE(3729), 1, + STATE(3739), 1, sym_comment, - STATE(4547), 1, + STATE(3933), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, sym_long_flag, - [112065] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3730), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [112083] = 8, + [113072] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2702), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - STATE(3731), 1, + STATE(3740), 1, sym_comment, - STATE(3933), 1, + STATE(3932), 1, sym__variable_name, - STATE(4060), 1, + STATE(4180), 1, sym_val_variable, - STATE(4383), 1, + STATE(4332), 1, sym__assignment_pattern, - [112108] = 7, + [113100] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3340), 1, - sym__blosure, - STATE(3732), 1, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1550), 1, + sym_parameter_parens, + STATE(1551), 1, + sym_parameter_bracks, + STATE(3741), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112131] = 6, + STATE(3933), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, + sym_long_flag, + [113128] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(57), 1, - anon_sym_AT, - STATE(3733), 1, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1552), 1, + sym_parameter_parens, + STATE(1553), 1, + sym_parameter_bracks, + STATE(3742), 1, sym_comment, - STATE(3803), 1, - aux_sym_attribute_list_repeat1, - STATE(4624), 1, - sym_attribute, - ACTIONS(7232), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [112152] = 7, + STATE(3743), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, + sym_long_flag, + [113156] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3340), 1, - sym__blosure, - STATE(3734), 1, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1554), 1, + sym_parameter_parens, + STATE(1555), 1, + sym_parameter_bracks, + STATE(3743), 1, sym_comment, - STATE(3788), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112175] = 7, + STATE(3933), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, + sym_long_flag, + [113184] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3341), 1, - sym__blosure, - STATE(3735), 1, + STATE(3744), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112198] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, + ACTIONS(789), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(791), 5, anon_sym_LBRACE, - STATE(3341), 1, - sym__blosure, - STATE(3736), 1, - sym_comment, - STATE(3790), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112221] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113202] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5338), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - ACTIONS(7236), 1, - sym_short_flag_identifier, - STATE(3073), 1, - sym__flag_equals_value, - STATE(3737), 1, + STATE(3745), 1, sym_comment, - ACTIONS(5336), 2, - sym__newline, - anon_sym_SEMI, - [112244] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5346), 1, - sym__space, - ACTIONS(7238), 1, + ACTIONS(1818), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - STATE(3738), 1, - sym_comment, - ACTIONS(5344), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7240), 2, + sym__unquoted_pattern_in_record, + ACTIONS(1816), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112265] = 4, + sym__entry_separator, + [113220] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7242), 1, - anon_sym_LT, - STATE(3739), 1, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1673), 1, + sym_parameter_parens, + STATE(1674), 1, + sym_parameter_bracks, + STATE(3746), 1, sym_comment, - ACTIONS(5920), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [112282] = 4, + STATE(3933), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, + sym_long_flag, + [113248] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7244), 1, - anon_sym_LT, - STATE(3740), 1, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_RBRACK, + STATE(3747), 1, sym_comment, - ACTIONS(5920), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [112299] = 6, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(5054), 1, + sym__table_body, + [113276] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7246), 1, - anon_sym_DOT, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token5, - STATE(3741), 1, + ACTIONS(7254), 1, + anon_sym_DOT_DOT2, + STATE(3748), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(7256), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [112320] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7250), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token5, - STATE(3742), 1, - sym_comment, - ACTIONS(1736), 3, + ACTIONS(2134), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [112341] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3743), 1, - sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, - sym__assignment_pattern, - [112366] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3744), 1, - sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, - sym__assignment_pattern, - [112391] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3745), 1, - sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, - sym__assignment_pattern, - [112416] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7256), 1, - aux_sym__immediate_decimal_token5, - STATE(3746), 1, - sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [112437] = 7, - ACTIONS(103), 1, + [113296] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7262), 1, - anon_sym_DQUOTE2, - STATE(3747), 1, - sym_comment, - STATE(3752), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [112460] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7264), 1, - aux_sym_unquoted_token2, - STATE(3748), 1, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1509), 1, + sym_parameter_bracks, + STATE(1675), 1, + sym_parameter_parens, + STATE(3749), 1, sym_comment, - STATE(4133), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112483] = 7, + STATE(3773), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, + sym_long_flag, + [113324] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7264), 1, - aux_sym_unquoted_token2, - STATE(3749), 1, + ACTIONS(1446), 1, + sym__entry_separator, + ACTIONS(7180), 1, + anon_sym_DOT2, + STATE(3750), 1, sym_comment, - STATE(4996), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112506] = 6, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4386), 1, + sym_path, + STATE(4526), 1, + sym_cell_path, + ACTIONS(1444), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [113350] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(7258), 1, anon_sym_DOT_DOT2, - ACTIONS(7264), 1, - sym__unquoted_pattern, - STATE(3750), 1, + STATE(3751), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(7260), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7266), 2, - sym_filesize_unit, - sym_duration_unit, - [112527] = 6, + ACTIONS(2066), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113370] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(3751), 1, - sym_comment, - STATE(4989), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112548] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7268), 1, - anon_sym_DQUOTE2, + ACTIONS(7262), 1, + anon_sym_DOT_DOT2, STATE(3752), 1, sym_comment, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [112571] = 5, + ACTIONS(7264), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2074), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113390] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, + ACTIONS(7266), 1, + anon_sym_DOT_DOT2, STATE(3753), 1, sym_comment, - STATE(4324), 1, - sym_block, - ACTIONS(7270), 4, + ACTIONS(7268), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2082), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [112590] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113410] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, + ACTIONS(7091), 1, + aux_sym__immediate_decimal_token5, STATE(3754), 1, sym_comment, - STATE(4330), 1, - sym_block, - ACTIONS(7270), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [112609] = 6, - ACTIONS(103), 1, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(741), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113430] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6949), 1, + ACTIONS(6962), 1, anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2871), 1, + sym_cell_path, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3755), 1, sym_comment, - STATE(3758), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, - sym_path, - ACTIONS(1458), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [112630] = 6, - ACTIONS(103), 1, + ACTIONS(1848), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [113454] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7204), 1, - sym__entry_separator, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7270), 1, + anon_sym_RBRACK, STATE(3756), 1, sym_comment, - ACTIONS(7272), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7276), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [112651] = 6, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(4857), 1, + sym__table_body, + [113482] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(866), 1, + anon_sym_RBRACE, + ACTIONS(908), 1, sym__entry_separator, - ACTIONS(7274), 1, + ACTIONS(7272), 1, anon_sym_DOT_DOT2, + ACTIONS(7276), 1, + sym_filesize_unit, + ACTIONS(7278), 1, + sym_duration_unit, STATE(3757), 1, sym_comment, - ACTIONS(7276), 2, + ACTIONS(7274), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7278), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [112672] = 5, - ACTIONS(103), 1, + [113508] = 9, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, ACTIONS(7280), 1, - anon_sym_DOT2, - STATE(4108), 1, - sym_path, - STATE(3758), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [112691] = 5, - ACTIONS(3), 1, + STATE(3758), 1, + sym_comment, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(4998), 1, + sym__table_body, + [113536] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7283), 1, - aux_sym__immediate_decimal_token5, STATE(3759), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1740), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 3, - anon_sym_LBRACE, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112710] = 7, - ACTIONS(103), 1, + sym__entry_separator, + [113554] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7285), 1, - anon_sym_DQUOTE2, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7282), 1, + anon_sym_RBRACK, STATE(3760), 1, sym_comment, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [112733] = 7, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(5115), 1, + sym__table_body, + [113582] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3247), 1, - sym__blosure, - STATE(3732), 1, - aux_sym__repeat_newline, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1544), 1, + sym_parameter_parens, + STATE(1549), 1, + sym_parameter_bracks, STATE(3761), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112756] = 8, + STATE(3933), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, + sym_long_flag, + [113610] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7287), 1, - anon_sym_if, - ACTIONS(7289), 1, - sym__newline, - ACTIONS(7291), 1, - anon_sym_PIPE, - ACTIONS(7293), 1, - anon_sym_EQ_GT, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1534), 1, + sym_parameter_parens, + STATE(1535), 1, + sym_parameter_bracks, + STATE(3690), 1, + aux_sym_decl_def_repeat1, STATE(3762), 1, sym_comment, - STATE(4182), 1, - aux_sym_match_pattern_repeat1, - STATE(4917), 1, - sym_match_guard, - [112781] = 7, - ACTIONS(3), 1, + STATE(4588), 1, + sym_long_flag, + [113638] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3272), 1, - sym__blosure, + ACTIONS(7284), 1, + anon_sym_QMARK2, + ACTIONS(7286), 1, + anon_sym_BANG, STATE(3763), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112804] = 7, + STATE(4153), 1, + sym__path_suffix, + ACTIONS(1432), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [113660] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3940), 1, sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3272), 1, - sym__blosure, - STATE(3735), 1, - aux_sym__repeat_newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7288), 1, + anon_sym_RBRACK, STATE(3764), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112827] = 6, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(5097), 1, + sym__table_body, + [113688] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7295), 1, - anon_sym_DOT, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7063), 1, + anon_sym_DOT2, STATE(3765), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, + STATE(3879), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4125), 1, + sym_path, + STATE(4475), 1, + sym_cell_path, + ACTIONS(1840), 3, anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [112848] = 6, + sym__entry_separator, + sym__table_head_separator, + [113712] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7290), 1, + anon_sym_RBRACK, STATE(3766), 1, sym_comment, - STATE(5192), 1, - sym__immediate_decimal, - ACTIONS(7299), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112869] = 8, - ACTIONS(3), 1, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(5107), 1, + sym__table_body, + [113740] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7303), 1, - sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - ACTIONS(7307), 1, - anon_sym_RPAREN, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(1494), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3700), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3767), 1, sym_comment, - STATE(4139), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [112894] = 5, - ACTIONS(3), 1, + ACTIONS(1492), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON2, + [113764] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, + ACTIONS(1848), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3768), 1, sym_comment, - STATE(4336), 1, - sym_block, - ACTIONS(7309), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(4568), 1, + sym_cell_path, + ACTIONS(1851), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [112913] = 5, - ACTIONS(3), 1, + [113790] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, + ACTIONS(7292), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7294), 1, + aux_sym__immediate_decimal_token5, STATE(3769), 1, sym_comment, - STATE(4340), 1, - sym_block, - ACTIONS(7309), 4, + ACTIONS(1738), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1740), 3, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [112932] = 8, - ACTIONS(103), 1, + sym__unquoted_pattern, + [113812] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3653), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7311), 1, - anon_sym_RBRACE, - STATE(339), 1, - sym_path, + ACTIONS(7296), 1, + anon_sym_DOT, + ACTIONS(7298), 1, + aux_sym__immediate_decimal_token5, STATE(3770), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4335), 1, - sym_cell_path, - [112957] = 7, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113834] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2826), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(3771), 1, sym_comment, - ACTIONS(5600), 2, - anon_sym_EQ, - anon_sym_GT2, - [112980] = 8, - ACTIONS(103), 1, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113852] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5600), 1, - sym__entry_separator, - ACTIONS(5602), 1, - anon_sym_GT2, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(3772), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4335), 1, - sym_cell_path, - [113005] = 8, - ACTIONS(103), 1, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113870] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_RBRACK, - ACTIONS(5247), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1520), 1, + sym_parameter_parens, + STATE(1521), 1, + sym_parameter_bracks, STATE(3773), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4730), 1, - sym_cell_path, - [113030] = 7, + STATE(3933), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, + sym_long_flag, + [113898] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7317), 1, + ACTIONS(2011), 1, sym__entry_separator, - STATE(2234), 1, - aux_sym__types_body_repeat2, + ACTIONS(2013), 1, + anon_sym_RBRACK, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7300), 1, + anon_sym_DOT_DOT2, STATE(3774), 1, sym_comment, - STATE(4751), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7315), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [113053] = 8, + ACTIONS(7302), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113924] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, STATE(3775), 1, sym_comment, - STATE(3940), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4619), 1, - sym__assignment_pattern_parenthesized, - [113078] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1856), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1854), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1868), 1, - anon_sym_GT2, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, + [113942] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(7304), 1, + anon_sym_DOT, + ACTIONS(7306), 1, + aux_sym__immediate_decimal_token5, STATE(3776), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4102), 1, - sym_cell_path, - [113103] = 8, + ACTIONS(1750), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113964] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(1868), 1, sym__entry_separator, - ACTIONS(1884), 1, - anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(346), 1, + sym_path, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, STATE(3777), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4176), 1, + STATE(4225), 1, sym_cell_path, - [113128] = 7, - ACTIONS(103), 1, + ACTIONS(1870), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [113990] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1460), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(7308), 1, + anon_sym_DOT_DOT2, STATE(3778), 1, sym_comment, - STATE(3797), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1458), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [113151] = 8, + ACTIONS(7310), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2001), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [114012] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, - ACTIONS(1860), 1, - anon_sym_GT2, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7126), 1, + anon_sym_def, + ACTIONS(7128), 1, + anon_sym_use, + ACTIONS(7130), 1, + anon_sym_extern, + ACTIONS(7132), 1, + anon_sym_module, + ACTIONS(7312), 1, + anon_sym_alias, + ACTIONS(7314), 1, + anon_sym_const, STATE(3779), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4214), 1, - sym_cell_path, - [113176] = 6, + [114040] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__entry_separator, - ACTIONS(7320), 1, - anon_sym_DOT_DOT2, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7126), 1, + anon_sym_def, + ACTIONS(7128), 1, + anon_sym_use, + ACTIONS(7130), 1, + anon_sym_extern, + ACTIONS(7132), 1, + anon_sym_module, + ACTIONS(7316), 1, + anon_sym_alias, + ACTIONS(7318), 1, + anon_sym_const, STATE(3780), 1, sym_comment, - ACTIONS(2154), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7322), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113197] = 7, - ACTIONS(103), 1, + [114068] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7324), 1, - anon_sym_DQUOTE2, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_RBRACK, STATE(3781), 1, sym_comment, - STATE(3785), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [113220] = 7, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(5229), 1, + sym__table_body, + [114096] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4147), 1, - aux_sym_unquoted_token2, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7126), 1, + anon_sym_def, + ACTIONS(7128), 1, + anon_sym_use, + ACTIONS(7130), 1, + anon_sym_extern, + ACTIONS(7132), 1, + anon_sym_module, + ACTIONS(7322), 1, + anon_sym_alias, + ACTIONS(7324), 1, + anon_sym_const, STATE(3782), 1, sym_comment, - STATE(4133), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113243] = 7, + [114124] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4147), 1, - aux_sym_unquoted_token2, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(7326), 1, + anon_sym_DOT, + ACTIONS(7328), 1, + aux_sym__immediate_decimal_token5, STATE(3783), 1, sym_comment, - STATE(4996), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113266] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3784), 1, - sym_comment, - STATE(3940), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4371), 1, - sym__assignment_pattern_parenthesized, - [113291] = 7, - ACTIONS(103), 1, + ACTIONS(1750), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1752), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [114146] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7326), 1, - anon_sym_DQUOTE2, - STATE(3785), 1, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1527), 1, + sym_parameter_parens, + STATE(1528), 1, + sym_parameter_bracks, + STATE(3735), 1, + aux_sym_decl_def_repeat1, + STATE(3784), 1, sym_comment, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [113314] = 8, + STATE(4588), 1, + sym_long_flag, + [114174] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - STATE(3786), 1, + STATE(3785), 1, sym_comment, - STATE(3940), 1, + STATE(4005), 1, sym__variable_name, - STATE(4060), 1, + STATE(4180), 1, sym_val_variable, - STATE(4405), 1, + STATE(4581), 1, sym__assignment_pattern_parenthesized, - [113339] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3218), 1, - sym__blosure, - STATE(3763), 1, - aux_sym__repeat_newline, - STATE(3787), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [113362] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3224), 1, - sym__blosure, - STATE(3788), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [113385] = 7, + [114199] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(3224), 1, - sym__blosure, - STATE(3789), 1, + STATE(3786), 1, sym_comment, - STATE(3824), 1, - aux_sym__repeat_newline, - STATE(3113), 2, + STATE(4210), 1, sym_block, - sym_val_closure, - [113408] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(7330), 4, sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3225), 1, - sym__blosure, - STATE(3790), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [113431] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [114218] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3791), 1, + ACTIONS(7328), 1, + aux_sym__immediate_decimal_token5, + STATE(3787), 1, sym_comment, - ACTIONS(1478), 6, - anon_sym_RBRACK, + ACTIONS(1750), 2, + anon_sym_LPAREN2, sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113446] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(461), 1, - anon_sym_RPAREN, - ACTIONS(7303), 1, - sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3792), 1, - sym_comment, - STATE(4188), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [113471] = 5, - ACTIONS(3), 1, + ACTIONS(1752), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [114237] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7067), 1, - aux_sym__immediate_decimal_token5, - STATE(3793), 1, + ACTIONS(2134), 1, + sym__space, + ACTIONS(7332), 1, + anon_sym_DOT_DOT2, + STATE(3788), 1, sym_comment, - ACTIONS(1736), 4, - anon_sym_if, + ACTIONS(2136), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [113490] = 8, + anon_sym_SEMI, + ACTIONS(7334), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114258] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7328), 1, - anon_sym_RBRACE, - ACTIONS(7330), 1, - sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3794), 1, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3789), 1, sym_comment, - STATE(4682), 1, - sym_cell_path, - [113515] = 3, + STATE(4079), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4472), 1, + sym__assignment_pattern, + [114283] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3795), 1, - sym_comment, - ACTIONS(1543), 6, - anon_sym_RBRACK, + ACTIONS(7199), 1, sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113530] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3796), 1, + ACTIONS(7338), 1, + anon_sym_DOT_DOT2, + STATE(3790), 1, sym_comment, - ACTIONS(1466), 6, + ACTIONS(7336), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113545] = 6, + anon_sym_DOT_DOT, + ACTIONS(7340), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114304] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(7205), 1, sym__entry_separator, - ACTIONS(7332), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - ACTIONS(1524), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(3797), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [113566] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3798), 1, + ACTIONS(7338), 1, + anon_sym_DOT_DOT2, + STATE(3791), 1, sym_comment, - ACTIONS(1470), 6, + ACTIONS(7340), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7342), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113581] = 3, + anon_sym_DOT_DOT, + [114325] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3799), 1, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3792), 1, sym_comment, - ACTIONS(1474), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113596] = 3, - ACTIONS(103), 1, + STATE(4079), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4423), 1, + sym__assignment_pattern, + [114350] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3800), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3318), 1, + sym__blosure, + STATE(3793), 1, sym_comment, - ACTIONS(1514), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113611] = 5, + STATE(3224), 2, + sym_block, + sym_val_closure, + [114373] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(4119), 1, + anon_sym_DOT_DOT2, + ACTIONS(7348), 1, sym__unquoted_pattern, - ACTIONS(7335), 1, - aux_sym__immediate_decimal_token5, - STATE(3801), 1, + STATE(3794), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [113630] = 8, + ACTIONS(4121), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7346), 2, + sym_filesize_unit, + sym_duration_unit, + [114394] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - STATE(3802), 1, + STATE(3795), 1, sym_comment, - STATE(3933), 1, + STATE(3956), 1, sym__variable_name, - STATE(4060), 1, + STATE(4180), 1, sym_val_variable, - STATE(4389), 1, - sym__assignment_pattern, - [113655] = 5, + STATE(4455), 1, + sym__assignment_pattern_parenthesized, + [114419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7339), 1, - anon_sym_AT, - STATE(4624), 1, - sym_attribute, - STATE(3803), 2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3796), 1, sym_comment, - aux_sym_attribute_list_repeat1, - ACTIONS(7337), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [113674] = 8, + STATE(4209), 1, + sym_block, + ACTIONS(7330), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [114438] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - STATE(3804), 1, + STATE(3797), 1, sym_comment, - STATE(3933), 1, + STATE(3956), 1, sym__variable_name, - STATE(4060), 1, + STATE(4180), 1, sym_val_variable, - STATE(4390), 1, - sym__assignment_pattern, - [113699] = 7, - ACTIONS(103), 1, + STATE(4581), 1, + sym__assignment_pattern_parenthesized, + [114463] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7342), 1, - aux_sym_unquoted_token2, - STATE(3805), 1, + ACTIONS(7352), 1, + anon_sym_AT, + STATE(4830), 1, + sym_attribute, + STATE(3798), 2, sym_comment, - STATE(4133), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113722] = 7, - ACTIONS(103), 1, + aux_sym_attribute_list_repeat1, + ACTIONS(7350), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [114482] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7342), 1, - aux_sym_unquoted_token2, - STATE(3806), 1, + ACTIONS(447), 1, + anon_sym_RPAREN, + ACTIONS(7355), 1, + sym__newline, + ACTIONS(7357), 1, + anon_sym_SEMI, + STATE(1358), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3799), 1, sym_comment, - STATE(4996), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113745] = 6, - ACTIONS(103), 1, + STATE(4252), 1, + aux_sym__block_body_repeat1, + STATE(4467), 1, + aux_sym__repeat_newline, + [114507] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, - ACTIONS(7344), 1, - anon_sym_DOT_DOT2, - STATE(3807), 1, + ACTIONS(7359), 1, + aux_sym__immediate_decimal_token5, + STATE(3800), 1, sym_comment, - ACTIONS(2102), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7346), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113766] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2076), 1, - sym__entry_separator, - ACTIONS(7348), 1, + ACTIONS(1818), 2, anon_sym_DOT_DOT2, - STATE(3808), 1, - sym_comment, - ACTIONS(2078), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7350), 2, + sym__unquoted_pattern, + ACTIONS(1816), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113787] = 6, - ACTIONS(103), 1, + [114526] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__entry_separator, - ACTIONS(7352), 1, - anon_sym_DOT_DOT2, - STATE(3809), 1, + ACTIONS(7361), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7363), 1, + aux_sym__immediate_decimal_token5, + STATE(3801), 1, sym_comment, - ACTIONS(2122), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7354), 2, + ACTIONS(1738), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113808] = 5, - ACTIONS(103), 1, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [114547] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token5, - STATE(3810), 1, + ACTIONS(57), 1, + anon_sym_AT, + STATE(3798), 1, + aux_sym_attribute_list_repeat1, + STATE(3802), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 3, + STATE(4830), 1, + sym_attribute, + ACTIONS(7365), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [114568] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7355), 1, sym__newline, + ACTIONS(7357), 1, anon_sym_SEMI, - sym__unquoted_pattern, - [113827] = 6, + ACTIONS(7367), 1, + anon_sym_RPAREN, + STATE(1358), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3803), 1, + sym_comment, + STATE(4114), 1, + aux_sym__block_body_repeat1, + STATE(4467), 1, + aux_sym__repeat_newline, + [114593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(7342), 1, - sym__unquoted_pattern, - STATE(3811), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + STATE(3804), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7266), 2, - sym_filesize_unit, - sym_duration_unit, - [113848] = 5, - ACTIONS(103), 1, + STATE(4913), 1, + sym__immediate_decimal, + ACTIONS(7369), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7371), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [114614] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1440), 1, - sym__entry_separator, - ACTIONS(7356), 1, - anon_sym_QMARK2, - STATE(3812), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [113867] = 5, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(3318), 1, + sym__blosure, + STATE(3805), 1, + sym_comment, + STATE(3876), 1, + aux_sym__repeat_newline, + STATE(3224), 2, + sym_block, + sym_val_closure, + [114637] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7358), 1, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7375), 1, aux_sym__immediate_decimal_token5, - STATE(3813), 1, + STATE(3806), 1, sym_comment, - ACTIONS(1802), 2, - sym__space, + ACTIONS(1738), 2, anon_sym_LPAREN2, - ACTIONS(1804), 3, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1740), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [114658] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, sym__unquoted_pattern, - [113886] = 6, + STATE(3807), 1, + sym_comment, + STATE(5009), 1, + sym__immediate_decimal, + ACTIONS(6548), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6550), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [114679] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7360), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7366), 1, + ACTIONS(7381), 1, anon_sym_DQUOTE2, - STATE(4205), 1, + STATE(3808), 1, + sym_comment, + STATE(3848), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7363), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(3814), 2, + [114702] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3809), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [113907] = 8, - ACTIONS(103), 1, + STATE(4274), 1, + sym_block, + ACTIONS(7383), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [114721] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3815), 1, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3810), 1, sym_comment, - STATE(4014), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4405), 1, - sym__assignment_pattern_parenthesized, - [113932] = 8, + STATE(4275), 1, + sym_block, + ACTIONS(7383), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [114740] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, + ACTIONS(2702), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2704), 1, anon_sym_COLON2, - ACTIONS(5164), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(7044), 1, + ACTIONS(7146), 1, sym_identifier, - STATE(3816), 1, + STATE(3811), 1, sym_comment, - STATE(4060), 1, + STATE(4180), 1, sym_val_variable, - STATE(5164), 1, + STATE(5223), 1, sym__variable_name, - [113957] = 7, + [114765] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6691), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(3812), 1, + sym_comment, + ACTIONS(1750), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [114784] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3352), 1, + sym__blosure, + STATE(3813), 1, + sym_comment, + STATE(3224), 2, + sym_block, + sym_val_closure, + [114807] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4303), 1, + ACTIONS(2066), 1, sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - ACTIONS(7368), 1, - sym_long_flag_identifier, - STATE(2933), 1, - sym__flag_equals_value, - STATE(3817), 1, + ACTIONS(7387), 1, + anon_sym_DOT_DOT2, + STATE(3814), 1, sym_comment, - ACTIONS(4301), 2, + ACTIONS(2068), 2, sym__newline, anon_sym_SEMI, - [113980] = 6, - ACTIONS(3), 1, + ACTIONS(7389), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114828] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(3818), 1, + ACTIONS(2074), 1, + sym__space, + ACTIONS(7391), 1, + anon_sym_DOT_DOT2, + STATE(3815), 1, sym_comment, - STATE(4872), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114001] = 7, + ACTIONS(2076), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7393), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114849] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(2082), 1, + sym__space, + ACTIONS(7395), 1, + anon_sym_DOT_DOT2, + STATE(3816), 1, + sym_comment, + ACTIONS(2084), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7397), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114870] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7399), 1, + aux_sym__immediate_decimal_token5, + STATE(3817), 1, + sym_comment, + ACTIONS(1816), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1818), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [114889] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7370), 1, + ACTIONS(7401), 1, anon_sym_DQUOTE2, - STATE(3819), 1, + STATE(3818), 1, sym_comment, STATE(3823), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114024] = 8, - ACTIONS(3), 1, + [114912] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7303), 1, - sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3820), 1, + ACTIONS(7109), 1, + anon_sym_DOT2, + ACTIONS(7403), 1, + anon_sym_RBRACE, + ACTIONS(7405), 1, + sym__entry_separator, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3819), 1, sym_comment, - STATE(4154), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [114049] = 7, + STATE(4666), 1, + sym_cell_path, + [114937] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6430), 1, + ACTIONS(6398), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6641), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6902), 1, + ACTIONS(6980), 1, aux_sym_unquoted_token2, - STATE(3821), 1, + STATE(3820), 1, sym_comment, - STATE(4133), 1, + STATE(4203), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6643), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114072] = 7, + [114960] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6548), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6645), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6902), 1, + ACTIONS(6980), 1, aux_sym_unquoted_token2, - STATE(3822), 1, + STATE(3821), 1, sym_comment, - STATE(4996), 1, + STATE(4840), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6647), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114095] = 7, + [114983] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7407), 1, + sym_long_flag_identifier, + ACTIONS(7409), 1, + anon_sym_EQ2, + STATE(3822), 1, + sym_comment, + STATE(4584), 1, + sym__flag_equals_value, + ACTIONS(4282), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [115004] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7374), 1, + ACTIONS(7411), 1, anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, STATE(3823), 1, sym_comment, - STATE(4205), 1, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114118] = 7, + [115027] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3623), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + ACTIONS(7413), 1, + anon_sym_RBRACE, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3824), 1, + sym_comment, + STATE(4568), 1, + sym_cell_path, + [115052] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7417), 1, + anon_sym_DOT, + ACTIONS(7419), 1, + aux_sym__immediate_decimal_token5, + STATE(3825), 1, + sym_comment, + ACTIONS(1750), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1752), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [115073] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7421), 1, + anon_sym_LT, + STATE(3826), 1, + sym_comment, + ACTIONS(4944), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [115090] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3827), 1, + sym_comment, + STATE(4106), 1, + sym_block, + ACTIONS(7423), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [115109] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1706), 1, + sym__entry_separator, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, + STATE(3828), 1, + sym_comment, + ACTIONS(1604), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115130] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7344), 1, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3263), 1, + STATE(3306), 1, sym__blosure, - STATE(3824), 1, + STATE(3829), 1, sym_comment, - STATE(3113), 2, + STATE(3910), 1, + aux_sym__repeat_newline, + STATE(3224), 2, sym_block, sym_val_closure, - [114141] = 7, + [115153] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(5393), 1, + anon_sym_RBRACK, + ACTIONS(5395), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3830), 1, + sym_comment, + STATE(4760), 1, + sym_cell_path, + [115178] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7376), 1, + ACTIONS(7429), 1, anon_sym_DQUOTE2, - STATE(3825), 1, + STATE(3831), 1, sym_comment, - STATE(3828), 1, + STATE(3836), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114164] = 7, + [115201] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, + STATE(3832), 1, + sym_comment, + ACTIONS(1505), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [115216] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5213), 1, aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(6398), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6641), 1, aux_sym__immediate_decimal_token2, - STATE(3826), 1, + STATE(3833), 1, sym_comment, - STATE(4133), 1, + STATE(4203), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6643), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114187] = 7, + [115239] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5213), 1, aux_sym_unquoted_token2, - ACTIONS(6478), 1, + ACTIONS(6548), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6645), 1, aux_sym__immediate_decimal_token2, - STATE(3827), 1, + STATE(3834), 1, sym_comment, - STATE(4996), 1, + STATE(4840), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6647), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114210] = 7, + [115262] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + sym__unquoted_pattern, + ACTIONS(7431), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7433), 1, + aux_sym__immediate_decimal_token5, + STATE(3835), 1, + sym_comment, + ACTIONS(1738), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115283] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7378), 1, + ACTIONS(7435), 1, anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3828), 1, + STATE(3836), 1, sym_comment, - STATE(4205), 1, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114233] = 7, + [115306] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7298), 1, + aux_sym__immediate_decimal_token5, + STATE(3837), 1, + sym_comment, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115325] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(7306), 1, + aux_sym__immediate_decimal_token5, + STATE(3838), 1, + sym_comment, + ACTIONS(1750), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115344] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7437), 1, + anon_sym_if, + ACTIONS(7439), 1, + sym__newline, + ACTIONS(7441), 1, + anon_sym_PIPE, + ACTIONS(7443), 1, + anon_sym_EQ_GT, + STATE(3839), 1, + sym_comment, + STATE(4326), 1, + aux_sym_match_pattern_repeat1, + STATE(5018), 1, + sym_match_guard, + [115369] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7380), 1, + ACTIONS(7445), 1, anon_sym_DQUOTE2, - STATE(3829), 1, + STATE(3840), 1, sym_comment, - STATE(3832), 1, + STATE(3847), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114256] = 7, + [115392] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3841), 1, + sym_comment, + ACTIONS(1458), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [115407] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4969), 1, + ACTIONS(5172), 1, aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(6398), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6641), 1, aux_sym__immediate_decimal_token2, - STATE(3830), 1, + STATE(3842), 1, sym_comment, - STATE(4133), 1, + STATE(4203), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6643), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114279] = 7, + [115430] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4969), 1, + ACTIONS(5172), 1, aux_sym_unquoted_token2, - ACTIONS(6478), 1, + ACTIONS(6548), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6645), 1, aux_sym__immediate_decimal_token2, - STATE(3831), 1, + STATE(3843), 1, sym_comment, - STATE(4996), 1, + STATE(4840), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6647), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114302] = 7, + [115453] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3329), 1, + sym__blosure, + STATE(3844), 1, + sym_comment, + STATE(3224), 2, + sym_block, + sym_val_closure, + [115476] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(3329), 1, + sym__blosure, + STATE(3845), 1, + sym_comment, + STATE(3914), 1, + aux_sym__repeat_newline, + STATE(3224), 2, + sym_block, + sym_val_closure, + [115499] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3832), 1, + STATE(3846), 1, sym_comment, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114325] = 7, + ACTIONS(1509), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [115514] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7384), 1, + ACTIONS(7447), 1, anon_sym_DQUOTE2, - STATE(3833), 1, + STATE(3847), 1, sym_comment, - STATE(3834), 1, + STATE(3925), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114348] = 7, + [115537] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7386), 1, + ACTIONS(7449), 1, anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3834), 1, + STATE(3848), 1, sym_comment, - STATE(4205), 1, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114371] = 7, + [115560] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7388), 1, + ACTIONS(7451), 1, anon_sym_DQUOTE2, - STATE(3835), 1, + STATE(3849), 1, sym_comment, - STATE(3837), 1, + STATE(3853), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114394] = 8, + [115583] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7390), 1, - anon_sym_RBRACE, - ACTIONS(7392), 1, + ACTIONS(2066), 1, sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3836), 1, + ACTIONS(7453), 1, + anon_sym_DOT_DOT2, + STATE(3850), 1, sym_comment, - STATE(4654), 1, - sym_cell_path, - [114419] = 7, + ACTIONS(2068), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7455), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115604] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7394), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3837), 1, + ACTIONS(2074), 1, + sym__entry_separator, + ACTIONS(7457), 1, + anon_sym_DOT_DOT2, + STATE(3851), 1, sym_comment, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114442] = 6, + ACTIONS(2076), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7459), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115625] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7396), 1, + ACTIONS(7217), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7398), 1, - aux_sym__immediate_decimal_token5, - STATE(3838), 1, + ACTIONS(7461), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7465), 1, + aux_sym__unquoted_in_record_token2, + STATE(3852), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [114463] = 7, + STATE(4098), 1, + sym__immediate_decimal, + ACTIONS(7463), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [115648] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7400), 1, + ACTIONS(7467), 1, anon_sym_DQUOTE2, - STATE(3839), 1, + STATE(3853), 1, sym_comment, - STATE(3840), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114486] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7402), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3925), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3840), 1, - sym_comment, - STATE(4205), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114509] = 7, + [115671] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7171), 1, + ACTIONS(7369), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7404), 1, - aux_sym__immediate_decimal_token2, - STATE(3841), 1, - sym_comment, - STATE(4323), 1, - sym__immediate_decimal, - ACTIONS(7406), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114532] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6616), 1, + ACTIONS(7465), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7299), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7408), 1, + ACTIONS(7469), 1, aux_sym__immediate_decimal_token2, - STATE(3842), 1, + STATE(3854), 1, sym_comment, - STATE(5077), 1, + STATE(4999), 1, sym__immediate_decimal, - ACTIONS(7410), 2, + ACTIONS(7471), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114555] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7412), 1, - anon_sym_DOT_DOT2, - STATE(3843), 1, - sym_comment, - ACTIONS(7414), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7416), 2, - sym_filesize_unit, - sym_duration_unit, - [114576] = 6, - ACTIONS(3), 1, + [115694] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(4282), 1, + sym__space, + ACTIONS(7473), 1, sym_long_flag_identifier, - ACTIONS(7420), 1, + ACTIONS(7475), 1, anon_sym_EQ2, - STATE(3844), 1, - sym_comment, - STATE(4599), 1, + STATE(3053), 1, sym__flag_equals_value, - ACTIONS(4303), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [114597] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3845), 1, + STATE(3855), 1, sym_comment, - STATE(4337), 1, - sym_block, - ACTIONS(7422), 4, + ACTIONS(4280), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [114616] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1706), 1, - sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - STATE(3846), 1, - sym_comment, - ACTIONS(1619), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114637] = 8, + [115717] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5265), 1, - anon_sym_RBRACK, - ACTIONS(5267), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3847), 1, + ACTIONS(7377), 1, + anon_sym_LPAREN, + ACTIONS(7477), 1, + anon_sym_DQUOTE2, + STATE(3856), 1, sym_comment, - STATE(4678), 1, - sym_cell_path, - [114662] = 6, - ACTIONS(103), 1, + STATE(3859), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7379), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [115740] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(7238), 1, + ACTIONS(7465), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7479), 1, anon_sym_DOT_DOT2, - STATE(3848), 1, + STATE(3857), 1, sym_comment, - ACTIONS(1619), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7240), 2, + ACTIONS(7481), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114683] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7141), 1, - aux_sym__immediate_decimal_token5, - STATE(3849), 1, - sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [114702] = 5, + ACTIONS(7483), 2, + sym_filesize_unit, + sym_duration_unit, + [115761] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7428), 1, + ACTIONS(7485), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7487), 1, aux_sym__immediate_decimal_token5, - STATE(3850), 1, + STATE(3858), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1738), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1804), 3, + ACTIONS(1740), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [114721] = 6, + [115782] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7430), 1, - anon_sym_DOT, - ACTIONS(7432), 1, - aux_sym__immediate_decimal_token5, - STATE(3851), 1, + ACTIONS(7377), 1, + anon_sym_LPAREN, + ACTIONS(7489), 1, + anon_sym_DQUOTE2, + STATE(3859), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [114742] = 5, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7379), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [115805] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - STATE(3852), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 3, + ACTIONS(3787), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114761] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2152), 1, - sym__space, - ACTIONS(7434), 1, - anon_sym_DOT_DOT2, - STATE(3853), 1, + STATE(3860), 1, sym_comment, - ACTIONS(2154), 2, + STATE(4174), 1, + sym_block, + ACTIONS(7491), 4, sym__newline, anon_sym_SEMI, - ACTIONS(7436), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114782] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3854), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114799] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3855), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114816] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3856), 1, - sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(851), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114833] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7272), 1, - anon_sym_DOT_DOT, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, - STATE(3857), 1, - sym_comment, - ACTIONS(7276), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114856] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, - sym__entry_separator, - STATE(3858), 1, - sym_comment, - ACTIONS(7276), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114879] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [115824] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7317), 1, - sym__entry_separator, - STATE(2232), 1, - aux_sym__types_body_repeat2, - STATE(3859), 1, + ACTIONS(7377), 1, + anon_sym_LPAREN, + ACTIONS(7493), 1, + anon_sym_DQUOTE2, + STATE(3861), 1, sym_comment, - STATE(4751), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7448), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [114902] = 6, + STATE(3865), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7379), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [115847] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2082), 1, sym__entry_separator, - ACTIONS(7450), 1, + ACTIONS(7495), 1, anon_sym_DOT_DOT2, - STATE(3860), 1, + STATE(3862), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2084), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7452), 2, + anon_sym_RBRACE, + ACTIONS(7497), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114923] = 6, + [115868] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, - ACTIONS(7454), 1, - anon_sym_DOT_DOT2, - STATE(3861), 1, - sym_comment, - ACTIONS(2102), 2, + ACTIONS(5389), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7456), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114944] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(5391), 1, sym__entry_separator, - ACTIONS(7458), 1, - anon_sym_DOT_DOT2, - STATE(3862), 1, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3863), 1, sym_comment, - ACTIONS(2078), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7460), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114965] = 6, + STATE(4757), 1, + sym_cell_path, + [115893] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__entry_separator, - ACTIONS(7462), 1, - anon_sym_DOT_DOT2, - STATE(3863), 1, + STATE(3864), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(1517), 6, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7464), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114986] = 7, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [115908] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7466), 1, + ACTIONS(7499), 1, anon_sym_DQUOTE2, - STATE(3760), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3864), 1, + STATE(3865), 1, sym_comment, - STATE(4205), 1, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115009] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3865), 1, - sym_comment, - STATE(3915), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, - sym__assignment_pattern, - [115034] = 8, - ACTIONS(103), 1, + [115931] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, STATE(3866), 1, sym_comment, - STATE(3915), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, - sym__assignment_pattern, - [115059] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3867), 1, - sym_comment, - STATE(3915), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, - sym__assignment_pattern, - [115084] = 6, + STATE(4874), 1, + sym__immediate_decimal, + ACTIONS(7369), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7371), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [115952] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7468), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7470), 1, + ACTIONS(7501), 1, + anon_sym_DOT, + ACTIONS(7503), 1, aux_sym__immediate_decimal_token5, - STATE(3868), 1, + STATE(3867), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1750), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 2, + ACTIONS(1752), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [115105] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2100), 1, - sym__space, - ACTIONS(7472), 1, - anon_sym_DOT_DOT2, - STATE(3869), 1, - sym_comment, - ACTIONS(2102), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7474), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115126] = 6, - ACTIONS(103), 1, + [115973] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2076), 1, - sym__space, - ACTIONS(7476), 1, - anon_sym_DOT_DOT2, - STATE(3870), 1, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3868), 1, sym_comment, - ACTIONS(2078), 2, + STATE(4187), 1, + sym_block, + ACTIONS(7505), 4, sym__newline, anon_sym_SEMI, - ACTIONS(7478), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115147] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [115992] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(3871), 1, + STATE(3869), 1, sym_comment, - STATE(4289), 1, + STATE(4188), 1, sym_block, - ACTIONS(7480), 4, + ACTIONS(7505), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [115166] = 6, + [116011] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__space, - ACTIONS(7482), 1, - anon_sym_DOT_DOT2, - STATE(3872), 1, + STATE(3870), 1, sym_comment, - ACTIONS(2122), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7484), 2, + ACTIONS(1521), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [116026] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3871), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115187] = 5, + sym_filesize_unit, + sym_duration_unit, + [116043] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7486), 1, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(7507), 1, anon_sym_DOT, - STATE(3873), 1, + ACTIONS(7509), 1, + aux_sym__immediate_decimal_token5, + STATE(3872), 1, sym_comment, - ACTIONS(1736), 4, - anon_sym_if, + ACTIONS(1750), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115206] = 6, - ACTIONS(3), 1, + [116064] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3873), 1, + sym_comment, + STATE(4079), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4640), 1, + sym__assignment_pattern, + [116089] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, STATE(3874), 1, sym_comment, - STATE(5199), 1, - sym__immediate_decimal, - ACTIONS(7299), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [115227] = 5, + ACTIONS(1525), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [116104] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3875), 1, - sym_comment, - STATE(4095), 1, - sym_block, - ACTIONS(7488), 4, + ACTIONS(7355), 1, sym__newline, + ACTIONS(7357), 1, anon_sym_SEMI, + ACTIONS(7511), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [115246] = 8, - ACTIONS(103), 1, + STATE(1358), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3875), 1, + sym_comment, + STATE(4319), 1, + aux_sym__block_body_repeat1, + STATE(4467), 1, + aux_sym__repeat_newline, + [116129] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3394), 1, + sym__blosure, STATE(3876), 1, sym_comment, - STATE(3957), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, - sym__assignment_pattern, - [115271] = 8, + STATE(3224), 2, + sym_block, + sym_val_closure, + [116152] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, STATE(3877), 1, sym_comment, - STATE(3957), 1, + STATE(3932), 1, sym__variable_name, - STATE(4060), 1, + STATE(4180), 1, sym_val_variable, - STATE(4251), 1, + STATE(4332), 1, sym__assignment_pattern, - [115296] = 8, + [116177] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, + ACTIONS(7336), 1, + anon_sym_DOT_DOT, + ACTIONS(7338), 1, + anon_sym_DOT_DOT2, + ACTIONS(7513), 1, + anon_sym_RBRACK, + ACTIONS(7515), 1, + sym__entry_separator, STATE(3878), 1, sym_comment, - STATE(3957), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, - sym__assignment_pattern, - [115321] = 5, - ACTIONS(3), 1, + ACTIONS(7340), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116200] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, + ACTIONS(7063), 1, + anon_sym_DOT2, STATE(3879), 1, sym_comment, - STATE(4099), 1, - sym_block, - ACTIONS(7488), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [115340] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7490), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7492), 1, - aux_sym__immediate_decimal_token5, - STATE(3880), 1, - sym_comment, - ACTIONS(1726), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115361] = 8, + STATE(3891), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4125), 1, + sym_path, + ACTIONS(1492), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [116221] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - STATE(3881), 1, + STATE(3880), 1, sym_comment, - STATE(4014), 1, + STATE(3932), 1, sym__variable_name, - STATE(4060), 1, + STATE(4180), 1, sym_val_variable, - STATE(4619), 1, - sym__assignment_pattern_parenthesized, - [115386] = 8, + STATE(4333), 1, + sym__assignment_pattern, + [116246] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - STATE(3882), 1, + STATE(3881), 1, sym_comment, - STATE(4014), 1, + STATE(3932), 1, sym__variable_name, - STATE(4060), 1, + STATE(4180), 1, sym_val_variable, - STATE(4371), 1, - sym__assignment_pattern_parenthesized, - [115411] = 5, + STATE(4335), 1, + sym__assignment_pattern, + [116271] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(7338), 1, + anon_sym_DOT_DOT2, + ACTIONS(7342), 1, + anon_sym_DOT_DOT, + ACTIONS(7517), 1, + anon_sym_RBRACK, + ACTIONS(7520), 1, sym__entry_separator, - ACTIONS(7356), 1, - anon_sym_BANG, - STATE(3883), 1, + STATE(3882), 1, sym_comment, - ACTIONS(1438), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [115430] = 4, + ACTIONS(7340), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116294] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1464), 1, + ACTIONS(6599), 1, + anon_sym_LPAREN2, + ACTIONS(7525), 1, sym__entry_separator, - STATE(3884), 1, + STATE(2249), 1, + aux_sym__types_body_repeat2, + STATE(3883), 1, sym_comment, - ACTIONS(1462), 4, + STATE(4701), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7523), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT2, - [115446] = 6, + [116317] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(5454), 1, sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3885), 1, + ACTIONS(7475), 1, + anon_sym_EQ2, + ACTIONS(7528), 1, + sym_short_flag_identifier, + STATE(3048), 1, + sym__flag_equals_value, + STATE(3884), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(5452), 2, sym__newline, anon_sym_SEMI, - [115466] = 6, + [116340] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(5462), 1, sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3886), 1, + ACTIONS(7530), 1, + anon_sym_DOT_DOT2, + STATE(3885), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(5460), 2, sym__newline, anon_sym_SEMI, - [115486] = 7, - ACTIONS(103), 1, + ACTIONS(7532), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116361] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(3342), 1, + sym__blosure, + STATE(3844), 1, + aux_sym__repeat_newline, + STATE(3886), 1, + sym_comment, + STATE(3224), 2, + sym_block, + sym_val_closure, + [116384] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7496), 1, - anon_sym_SQUOTE2, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, STATE(3887), 1, sym_comment, - STATE(3910), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [115508] = 3, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(757), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [116401] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2871), 1, + sym_cell_path, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3888), 1, sym_comment, - ACTIONS(5920), 5, + ACTIONS(4899), 2, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115522] = 4, - ACTIONS(103), 1, + [116424] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_BANG, + ACTIONS(1818), 1, + sym__unquoted_pattern, + ACTIONS(7534), 1, + aux_sym__immediate_decimal_token5, STATE(3889), 1, sym_comment, - ACTIONS(1438), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [115538] = 4, + ACTIONS(1816), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116443] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3890), 1, sym_comment, - ACTIONS(1872), 2, + ACTIONS(789), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 3, - anon_sym_LBRACE, + sym__unquoted_pattern_in_record, + ACTIONS(791), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115554] = 3, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [116460] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3891), 1, + ACTIONS(7536), 1, + anon_sym_DOT2, + STATE(4125), 1, + sym_path, + STATE(3891), 2, sym_comment, - ACTIONS(6121), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115568] = 6, - ACTIONS(3), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [116479] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7502), 1, - anon_sym_DOT_DOT2, + ACTIONS(7377), 1, + anon_sym_LPAREN, + ACTIONS(7539), 1, + anon_sym_DQUOTE2, STATE(3892), 1, sym_comment, - ACTIONS(7504), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115588] = 7, - ACTIONS(3), 1, + STATE(3926), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7379), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [116502] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, + ACTIONS(6398), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6641), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7541), 1, + aux_sym_unquoted_token2, STATE(3893), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4307), 1, - sym__assignment_pattern, - [115610] = 3, - ACTIONS(3), 1, + STATE(4203), 1, + sym__immediate_decimal, + ACTIONS(6643), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116525] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6548), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6645), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7541), 1, + aux_sym_unquoted_token2, STATE(3894), 1, sym_comment, - ACTIONS(6125), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115624] = 3, + STATE(4840), 1, + sym__immediate_decimal, + ACTIONS(6647), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116548] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4119), 1, + anon_sym_DOT_DOT2, + ACTIONS(7541), 1, + sym__unquoted_pattern, STATE(3895), 1, sym_comment, - ACTIONS(6129), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115638] = 7, - ACTIONS(3), 1, + ACTIONS(4121), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7346), 2, + sym_filesize_unit, + sym_duration_unit, + [116569] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, - sym__table_head_separator, - ACTIONS(7510), 1, - anon_sym_DOT2, + ACTIONS(7377), 1, + anon_sym_LPAREN, + ACTIONS(7543), 1, + anon_sym_DQUOTE2, STATE(3896), 1, sym_comment, - STATE(4059), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - STATE(4963), 1, - sym_cell_path, - [115660] = 7, - ACTIONS(3), 1, + STATE(3911), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7379), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [116592] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7512), 1, - anon_sym_EQ, - ACTIONS(7514), 1, - anon_sym_COLON, + ACTIONS(2134), 1, + sym__entry_separator, + ACTIONS(7545), 1, + anon_sym_DOT_DOT2, STATE(3897), 1, sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5002), 1, - sym_param_type, - [115682] = 3, - ACTIONS(3), 1, + ACTIONS(2136), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7547), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116613] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4127), 1, + aux_sym_unquoted_token2, + ACTIONS(6398), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6641), 1, + aux_sym__immediate_decimal_token2, STATE(3898), 1, sym_comment, - ACTIONS(6133), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115696] = 7, - ACTIONS(3), 1, + STATE(4203), 1, + sym__immediate_decimal, + ACTIONS(6643), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116636] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__table_head_separator, - ACTIONS(7510), 1, - anon_sym_DOT2, + ACTIONS(2066), 1, + sym__entry_separator, + ACTIONS(7549), 1, + anon_sym_DOT_DOT2, STATE(3899), 1, sym_comment, - STATE(4059), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - STATE(5045), 1, - sym_cell_path, - [115718] = 4, - ACTIONS(3), 1, + ACTIONS(2068), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7551), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116657] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, + ACTIONS(2074), 1, + sym__entry_separator, + ACTIONS(7553), 1, + anon_sym_DOT_DOT2, STATE(3900), 1, sym_comment, - ACTIONS(968), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115734] = 6, + ACTIONS(2076), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7555), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116678] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, + ACTIONS(2082), 1, sym__entry_separator, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7516), 1, - anon_sym_DOT, + ACTIONS(7557), 1, + anon_sym_DOT_DOT2, STATE(3901), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(2084), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [115754] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + ACTIONS(7559), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116699] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, + ACTIONS(4127), 1, + aux_sym_unquoted_token2, + ACTIONS(6548), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6645), 1, + aux_sym__immediate_decimal_token2, STATE(3902), 1, sym_comment, - STATE(4394), 1, - sym_block, - ACTIONS(7270), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [115772] = 5, - ACTIONS(103), 1, + STATE(4840), 1, + sym__immediate_decimal, + ACTIONS(6647), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116722] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2128), 1, - sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_LBRACK2, + ACTIONS(1641), 1, + sym__unquoted_pattern, STATE(3903), 1, sym_comment, - ACTIONS(2130), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [115790] = 4, + STATE(5075), 1, + sym__immediate_decimal, + ACTIONS(6548), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6550), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116743] = 8, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, STATE(3904), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - sym__unquoted_pattern_in_list, - [115806] = 7, + STATE(4031), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4332), 1, + sym__assignment_pattern, + [116768] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7030), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, STATE(3905), 1, sym_comment, - STATE(4478), 1, - sym_cell_path, - [115828] = 7, + STATE(4031), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4333), 1, + sym__assignment_pattern, + [116793] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6963), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, STATE(3906), 1, sym_comment, - STATE(4513), 1, - sym_cell_path, - [115850] = 7, + STATE(4031), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4335), 1, + sym__assignment_pattern, + [116818] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5600), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7184), 1, + aux_sym__immediate_decimal_token5, STATE(3907), 1, sym_comment, - STATE(4335), 1, - sym_cell_path, - [115872] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(1750), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1752), 3, + sym__newline, + anon_sym_SEMI, sym__unquoted_pattern, + [116837] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6599), 1, + anon_sym_LPAREN2, + ACTIONS(7525), 1, + sym__entry_separator, + STATE(2244), 1, + aux_sym__types_body_repeat2, STATE(3908), 1, sym_comment, - ACTIONS(2575), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115888] = 4, + STATE(4701), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7561), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [116860] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, + ACTIONS(7563), 1, + anon_sym_LT, STATE(3909), 1, sym_comment, - ACTIONS(1974), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115904] = 7, - ACTIONS(103), 1, + ACTIONS(4944), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [116877] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7520), 1, - anon_sym_SQUOTE2, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3285), 1, + sym__blosure, STATE(3910), 1, sym_comment, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [115926] = 6, + STATE(3224), 2, + sym_block, + sym_val_closure, + [116900] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(7522), 1, - anon_sym_DOT_DOT2, + ACTIONS(7377), 1, + anon_sym_LPAREN, + ACTIONS(7565), 1, + anon_sym_DQUOTE2, STATE(3911), 1, sym_comment, - ACTIONS(7524), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115946] = 6, - ACTIONS(103), 1, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7379), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [116923] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7526), 1, - anon_sym_DQUOTE, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(3285), 1, + sym__blosure, + STATE(3793), 1, + aux_sym__repeat_newline, STATE(3912), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(5076), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [115966] = 7, + STATE(3224), 2, + sym_block, + sym_val_closure, + [116946] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7530), 1, - anon_sym_SQUOTE2, + ACTIONS(2134), 1, + sym__entry_separator, + ACTIONS(7567), 1, + anon_sym_DOT_DOT2, STATE(3913), 1, sym_comment, - STATE(3917), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [115988] = 4, + ACTIONS(2136), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7569), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116967] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3331), 1, + sym__blosure, STATE(3914), 1, sym_comment, - ACTIONS(1964), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116004] = 7, + STATE(3224), 2, + sym_block, + sym_val_closure, + [116990] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7532), 1, - anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(3331), 1, + sym__blosure, + STATE(3813), 1, + aux_sym__repeat_newline, STATE(3915), 1, sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5088), 1, - sym_param_type, - [116026] = 5, + STATE(3224), 2, + sym_block, + sym_val_closure, + [117013] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7534), 1, + ACTIONS(7571), 1, aux_sym__immediate_decimal_token5, STATE(3916), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1816), 2, + sym__space, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [116044] = 7, + ACTIONS(1818), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [117032] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7536), 1, - anon_sym_SQUOTE2, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, STATE(3917), 1, sym_comment, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [116066] = 5, - ACTIONS(3), 1, + STATE(4049), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4332), 1, + sym__assignment_pattern, + [117057] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1354), 1, - aux_sym__block_body_repeat1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, STATE(3918), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3046), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [116084] = 4, - ACTIONS(3), 1, + STATE(4049), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4333), 1, + sym__assignment_pattern, + [117082] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, STATE(3919), 1, sym_comment, - ACTIONS(2523), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116100] = 7, + STATE(4049), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4335), 1, + sym__assignment_pattern, + [117107] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(2966), 1, - sym_block, + ACTIONS(1706), 1, + sym__space, + ACTIONS(7530), 1, + anon_sym_DOT_DOT2, STATE(3920), 1, sym_comment, - STATE(4312), 1, - aux_sym__repeat_newline, - [116122] = 4, + ACTIONS(1604), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7532), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117128] = 7, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1494), 1, + sym__entry_separator, + ACTIONS(7180), 1, + anon_sym_DOT2, STATE(3921), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 3, + STATE(3929), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4386), 1, + sym_path, + ACTIONS(1492), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [116138] = 6, + [117151] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1968), 1, - anon_sym_LPAREN2, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, STATE(3922), 1, sym_comment, - ACTIONS(1966), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116158] = 4, - ACTIONS(3), 1, + STATE(4005), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4455), 1, + sym__assignment_pattern_parenthesized, + [117176] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, STATE(3923), 1, sym_comment, - ACTIONS(1726), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116174] = 5, + STATE(4005), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4572), 1, + sym__assignment_pattern_parenthesized, + [117201] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_LT, + ACTIONS(7573), 1, + anon_sym_DOT, + ACTIONS(7575), 1, + aux_sym__immediate_decimal_token5, STATE(3924), 1, sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, + ACTIONS(1750), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(5924), 2, + ACTIONS(1752), 2, anon_sym_RBRACK, - anon_sym_GT2, - [116192] = 5, + sym__unquoted_pattern_in_list, + [117222] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7540), 1, - anon_sym_LT, - STATE(3925), 1, + ACTIONS(7577), 1, + anon_sym_LPAREN, + ACTIONS(7583), 1, + anon_sym_DQUOTE2, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7580), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(3925), 2, sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5924), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [116210] = 4, - ACTIONS(3), 1, + aux_sym__inter_double_quotes_repeat1, + [117243] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, + ACTIONS(7377), 1, + anon_sym_LPAREN, + ACTIONS(7585), 1, + anon_sym_DQUOTE2, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, STATE(3926), 1, sym_comment, - ACTIONS(2567), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116226] = 6, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7379), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [117266] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2575), 1, + ACTIONS(7109), 1, + anon_sym_DOT2, + ACTIONS(7587), 1, + anon_sym_RBRACE, + ACTIONS(7589), 1, sym__entry_separator, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3927), 1, sym_comment, - ACTIONS(2577), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116246] = 6, + STATE(4729), 1, + sym_cell_path, + [117291] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, + ACTIONS(6398), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6641), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7348), 1, + aux_sym_unquoted_token2, STATE(3928), 1, sym_comment, - ACTIONS(1976), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116266] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(3929), 1, - sym_comment, - ACTIONS(1802), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116282] = 6, + STATE(4203), 1, + sym__immediate_decimal, + ACTIONS(6643), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [117314] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2523), 1, + ACTIONS(1498), 1, sym__entry_separator, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(3930), 1, - sym_comment, - ACTIONS(2525), 2, + ACTIONS(7591), 1, + anon_sym_DOT2, + STATE(4386), 1, + sym_path, + ACTIONS(1496), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116302] = 4, - ACTIONS(3), 1, + STATE(3929), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + [117335] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(3931), 1, + ACTIONS(6548), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6645), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7348), 1, + aux_sym_unquoted_token2, + STATE(3930), 1, sym_comment, - ACTIONS(1870), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116318] = 6, + STATE(4840), 1, + sym__immediate_decimal, + ACTIONS(6647), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [117358] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_list, - STATE(3932), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3931), 1, sym_comment, - ACTIONS(2569), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116338] = 7, + STATE(3956), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4572), 1, + sym__assignment_pattern_parenthesized, + [117383] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7542), 1, + ACTIONS(7594), 1, anon_sym_EQ, - STATE(3933), 1, + ACTIONS(7596), 1, + anon_sym_COLON, + STATE(3932), 1, sym_comment, - STATE(4423), 1, + STATE(4650), 1, aux_sym__repeat_newline, - STATE(5093), 1, + STATE(5252), 1, sym_param_type, - [116360] = 6, + [117405] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7544), 1, - anon_sym_QMARK2, - ACTIONS(7546), 1, + ACTIONS(7598), 1, + anon_sym_DASH_DASH, + STATE(4588), 1, + sym_long_flag, + ACTIONS(4492), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + STATE(3933), 2, + sym_comment, + aux_sym_decl_def_repeat1, + [117423] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7601), 1, anon_sym_BANG, STATE(3934), 1, sym_comment, - STATE(4733), 1, - sym__path_suffix, - ACTIONS(1448), 2, + ACTIONS(1450), 4, + anon_sym_RBRACK, + sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [116380] = 4, - ACTIONS(3), 1, + [117439] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2503), 1, + ACTIONS(1004), 1, + sym__space, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, sym__unquoted_pattern, STATE(3935), 1, sym_comment, - ACTIONS(2501), 4, - anon_sym_if, + ACTIONS(994), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116396] = 4, + anon_sym_SEMI, + [117459] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(3936), 1, sym_comment, - ACTIONS(2635), 4, - anon_sym_if, + STATE(4444), 1, + sym_block, + ACTIONS(7423), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116412] = 6, + anon_sym_SEMI, + [117477] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(7548), 1, - anon_sym_DOT_DOT2, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7605), 1, + anon_sym_SQUOTE2, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, STATE(3937), 1, sym_comment, - ACTIONS(7550), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116432] = 6, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [117499] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, + ACTIONS(7609), 1, + anon_sym_RBRACE, + ACTIONS(7611), 1, sym__entry_separator, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_list, STATE(3938), 1, sym_comment, - ACTIONS(2637), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116452] = 7, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117519] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, + ACTIONS(1750), 1, + sym__space, + ACTIONS(6655), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7613), 1, + anon_sym_DOT, STATE(3939), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4924), 1, - sym__variable_name, - [116474] = 7, + ACTIONS(1752), 2, + sym__newline, + anon_sym_SEMI, + [117539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7552), 1, - anon_sym_EQ, + ACTIONS(2021), 1, + sym__unquoted_pattern, STATE(3940), 1, sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5092), 1, - sym_param_type, - [116496] = 6, - ACTIONS(103), 1, + ACTIONS(2533), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117555] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(1752), 1, sym__unquoted_pattern, + ACTIONS(7509), 1, + aux_sym__immediate_decimal_token5, STATE(3941), 1, sym_comment, - ACTIONS(1619), 2, + ACTIONS(1750), 3, sym__newline, - anon_sym_SEMI, - [116516] = 5, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117573] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, + ACTIONS(7615), 1, + anon_sym_DQUOTE, STATE(3942), 1, sym_comment, - STATE(4399), 1, - sym_block, - ACTIONS(7480), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [116534] = 6, - ACTIONS(103), 1, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4870), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [117593] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, + ACTIONS(2021), 1, + sym__unquoted_pattern, STATE(3943), 1, sym_comment, - ACTIONS(996), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116554] = 6, + ACTIONS(2011), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117609] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1018), 1, - sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, + ACTIONS(7619), 1, + anon_sym_DQUOTE, STATE(3944), 1, sym_comment, - ACTIONS(1016), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116574] = 6, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(5045), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [117629] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7557), 1, - anon_sym_SQUOTE2, - ACTIONS(7559), 1, + ACTIONS(7607), 1, sym_unescaped_interpolated_content, - STATE(4544), 1, - sym_expr_interpolated, - STATE(3945), 2, + ACTIONS(7621), 1, + anon_sym_SQUOTE2, + STATE(3945), 1, sym_comment, + STATE(3971), 1, aux_sym__inter_single_quotes_repeat1, - [116594] = 4, - ACTIONS(103), 1, + STATE(4616), 1, + sym_expr_interpolated, + [117651] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(3946), 1, sym_comment, - ACTIONS(1726), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 3, + STATE(4617), 1, + sym_block, + ACTIONS(7505), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [116610] = 4, - ACTIONS(103), 1, + [117669] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1522), 1, - sym__entry_separator, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(3947), 1, sym_comment, - ACTIONS(1520), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [116626] = 4, + STATE(4627), 1, + sym_block, + ACTIONS(7505), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [117687] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3948), 1, sym_comment, - ACTIONS(1802), 2, - sym__space, + ACTIONS(2385), 2, anon_sym_LPAREN2, - ACTIONS(1804), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [116642] = 4, + sym__entry_separator, + ACTIONS(2387), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [117703] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1537), 1, - sym__entry_separator, + ACTIONS(7623), 1, + aux_sym__immediate_decimal_token5, STATE(3949), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1816), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1818), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [116658] = 4, + sym__unquoted_pattern_in_list, + [117721] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7625), 1, + anon_sym_DQUOTE, STATE(3950), 1, sym_comment, - ACTIONS(1870), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [116674] = 5, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4884), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [117741] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, STATE(3951), 1, sym_comment, - STATE(4481), 1, - sym_block, - ACTIONS(7422), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [116692] = 3, + ACTIONS(1856), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117757] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, STATE(3952), 1, sym_comment, - ACTIONS(6137), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [116706] = 5, + ACTIONS(2525), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117773] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3953), 1, - sym_comment, - STATE(5038), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [116724] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7438), 1, + ACTIONS(6582), 2, anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, - STATE(3954), 1, + anon_sym_DOT_DOT, + ACTIONS(7627), 2, + sym__newline, + anon_sym_COMMA, + STATE(3953), 2, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116744] = 6, + aux_sym_parameter_repeat2, + [117789] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7562), 1, - anon_sym_DQUOTE, - STATE(3955), 1, + STATE(3954), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(5181), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [116764] = 7, - ACTIONS(103), 1, + ACTIONS(1738), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1740), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [117805] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7564), 1, - anon_sym_SQUOTE2, - STATE(3956), 1, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(3955), 1, sym_comment, - STATE(3960), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [116786] = 7, + ACTIONS(2583), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117821] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7514), 1, + ACTIONS(7596), 1, anon_sym_COLON, - ACTIONS(7566), 1, + ACTIONS(7630), 1, anon_sym_EQ, - STATE(3957), 1, + STATE(3956), 1, sym_comment, - STATE(4423), 1, + STATE(4650), 1, aux_sym__repeat_newline, - STATE(5200), 1, + STATE(5048), 1, sym_param_type, - [116808] = 5, + [117843] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7632), 1, + anon_sym_DQUOTE, + STATE(3957), 1, + sym_comment, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4896), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [117863] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3958), 1, sym_comment, - STATE(3972), 1, - aux_sym_parameter_repeat2, - ACTIONS(1388), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7568), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116826] = 5, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117879] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, STATE(3959), 1, sym_comment, - STATE(4546), 1, - sym_block, - ACTIONS(7488), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [116844] = 7, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117895] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7570), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2013), 1, + anon_sym_RBRACE, + ACTIONS(7634), 1, + anon_sym_DOT_DOT2, STATE(3960), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [116866] = 6, - ACTIONS(103), 1, + ACTIONS(7636), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117915] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(3961), 1, sym_comment, - ACTIONS(1966), 2, + STATE(4433), 1, + sym_block, + ACTIONS(7330), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [116886] = 4, + [117933] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7638), 1, + anon_sym_DQUOTE, STATE(3962), 1, sym_comment, - ACTIONS(6151), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6153), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [116902] = 5, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4906), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [117953] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, + ACTIONS(2387), 1, + sym__unquoted_pattern, STATE(3963), 1, sym_comment, - STATE(4548), 1, - sym_block, - ACTIONS(7488), 3, - ts_builtin_sym_end, + ACTIONS(2385), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [116920] = 4, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117969] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2597), 1, + sym__unquoted_pattern, STATE(3964), 1, sym_comment, - ACTIONS(6111), 2, + ACTIONS(2591), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117985] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1706), 1, + sym__space, + ACTIONS(2620), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6113), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [116936] = 6, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(3965), 1, + sym_comment, + ACTIONS(1604), 2, + sym__newline, + anon_sym_SEMI, + [118005] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7425), 1, anon_sym_DOT_DOT2, - ACTIONS(7572), 1, + ACTIONS(7640), 1, anon_sym_RBRACE, - ACTIONS(7574), 1, + ACTIONS(7642), 1, sym__entry_separator, - STATE(3965), 1, + STATE(3966), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7427), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116956] = 6, + [118025] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7576), 1, + ACTIONS(7644), 1, anon_sym_DQUOTE, - STATE(3966), 1, + STATE(3967), 1, sym_comment, - STATE(4258), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(5202), 1, + STATE(4915), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [116976] = 7, + [118045] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, + ACTIONS(7513), 1, + anon_sym_RBRACK, + ACTIONS(7515), 1, + sym__entry_separator, + STATE(3968), 1, + sym_comment, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118065] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7342), 1, + anon_sym_DOT_DOT, + ACTIONS(7517), 1, + anon_sym_RBRACK, + ACTIONS(7520), 1, + sym__entry_separator, + STATE(3969), 1, + sym_comment, + [118087] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(3970), 1, + sym_comment, + ACTIONS(7205), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118103] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7607), 1, sym_unescaped_interpolated_content, - ACTIONS(7578), 1, + ACTIONS(7646), 1, anon_sym_SQUOTE2, - STATE(3967), 1, + STATE(3971), 1, sym_comment, - STATE(4047), 1, + STATE(4059), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4616), 1, sym_expr_interpolated, - [116998] = 6, + [118125] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - STATE(3070), 1, - sym__flag_equals_value, - STATE(3968), 1, + ACTIONS(7648), 1, + anon_sym_DQUOTE, + STATE(3972), 1, sym_comment, - ACTIONS(4365), 2, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4922), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118145] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(3973), 1, + sym_comment, + STATE(4630), 1, + sym_block, + ACTIONS(7491), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [117018] = 6, + [118163] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7650), 1, + anon_sym_SQUOTE2, + STATE(3974), 1, + sym_comment, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [118185] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7580), 1, + ACTIONS(7652), 1, anon_sym_DQUOTE, - STATE(3969), 1, + STATE(3975), 1, sym_comment, - STATE(4258), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4800), 1, + STATE(4929), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117038] = 5, + [118205] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3970), 1, + STATE(3976), 1, sym_comment, - STATE(4997), 1, + STATE(5059), 1, sym__immediate_decimal, - ACTIONS(7299), 2, + ACTIONS(6548), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, + ACTIONS(6550), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [117056] = 4, + [118223] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(1818), 1, sym__unquoted_pattern, - STATE(3971), 1, + ACTIONS(7654), 1, + aux_sym__immediate_decimal_token5, + STATE(3977), 1, sym_comment, - ACTIONS(994), 4, - anon_sym_if, + ACTIONS(1816), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [117072] = 4, + [118241] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7656), 1, + anon_sym_DQUOTE, + STATE(3978), 1, + sym_comment, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4936), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118261] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6506), 2, + ACTIONS(7658), 1, anon_sym_RBRACK, + ACTIONS(7661), 1, anon_sym_DOT_DOT, - ACTIONS(7582), 2, - sym__newline, - anon_sym_COMMA, - STATE(3972), 2, - sym_comment, + STATE(3953), 1, aux_sym_parameter_repeat2, - [117088] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3973), 1, + STATE(3979), 1, sym_comment, - ACTIONS(1018), 4, - anon_sym_if, + ACTIONS(1388), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117104] = 6, + anon_sym_COMMA, + [118281] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7585), 1, + ACTIONS(7663), 1, anon_sym_DQUOTE, - STATE(3974), 1, + STATE(3980), 1, sym_comment, - STATE(4258), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4939), 1, + STATE(4940), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117124] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7587), 1, - anon_sym_SQUOTE2, - STATE(3975), 1, - sym_comment, - STATE(3978), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [117146] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7589), 1, - anon_sym_RBRACE, - ACTIONS(7591), 1, - sym__entry_separator, - STATE(3976), 1, - sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117166] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - anon_sym_LBRACE, - ACTIONS(7593), 1, - anon_sym_DOT_DOT2, - STATE(3977), 1, - sym_comment, - ACTIONS(7595), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117186] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7597), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3978), 1, - sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117208] = 6, + [118301] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7599), 1, + ACTIONS(7665), 1, anon_sym_DQUOTE, - STATE(3979), 1, + STATE(3981), 1, sym_comment, - STATE(4258), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(5022), 1, + STATE(4943), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117228] = 7, + [118321] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7601), 1, - anon_sym_SQUOTE2, - STATE(3980), 1, - sym_comment, + ACTIONS(1018), 1, + sym__space, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(3982), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [117250] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7603), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3981), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117272] = 7, + ACTIONS(1002), 2, + sym__newline, + anon_sym_SEMI, + [118341] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7605), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3982), 1, - sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117294] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(7146), 1, + sym_identifier, STATE(3983), 1, sym_comment, - STATE(4415), 1, - sym_block, - ACTIONS(7309), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117312] = 5, - ACTIONS(3), 1, + STATE(4180), 1, + sym_val_variable, + STATE(5223), 1, + sym__variable_name, + [118363] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, + ACTIONS(7667), 1, + anon_sym_DQUOTE, STATE(3984), 1, sym_comment, - STATE(4417), 1, - sym_block, - ACTIONS(7309), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117330] = 5, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4950), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118383] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7432), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7669), 1, + anon_sym_DQUOTE, STATE(3985), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117348] = 6, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(5101), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118403] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7607), 1, + ACTIONS(7671), 1, anon_sym_DQUOTE, STATE(3986), 1, sym_comment, - STATE(4258), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4792), 1, + STATE(4956), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117368] = 7, + [118423] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7609), 1, - anon_sym_SQUOTE2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2001), 1, + sym__space, + ACTIONS(2005), 1, + anon_sym_LPAREN2, STATE(3987), 1, sym_comment, - STATE(3988), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [117390] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7611), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3988), 1, - sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117412] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3989), 1, - sym_comment, - STATE(4395), 1, - sym_block, - ACTIONS(7270), 3, - ts_builtin_sym_end, + ACTIONS(2003), 2, sym__newline, anon_sym_SEMI, - [117430] = 4, - ACTIONS(3), 1, + [118443] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3990), 1, + ACTIONS(7673), 1, + anon_sym_DQUOTE, + STATE(3988), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117446] = 6, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4961), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118463] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7613), 1, + ACTIONS(7675), 1, anon_sym_DQUOTE, - STATE(3991), 1, + STATE(3989), 1, sym_comment, - STATE(4258), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4812), 1, + STATE(4966), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117466] = 7, + [118483] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7607), 1, sym_unescaped_interpolated_content, - ACTIONS(7615), 1, + ACTIONS(7677), 1, anon_sym_SQUOTE2, - STATE(3992), 1, + STATE(3990), 1, sym_comment, - STATE(3994), 1, + STATE(4034), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4616), 1, sym_expr_interpolated, - [117488] = 4, + [118505] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_QMARK2, - STATE(3993), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2533), 1, + sym__entry_separator, + STATE(3991), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(2535), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [117504] = 7, + anon_sym_DOT_DOT, + [118525] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(3992), 1, + sym_comment, + ACTIONS(1018), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118541] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(3993), 1, + sym_comment, + ACTIONS(1004), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118557] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7617), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_list, STATE(3994), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117526] = 5, - ACTIONS(103), 1, + ACTIONS(2013), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118577] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + anon_sym_DOLLAR, + STATE(3956), 1, + sym__variable_name, STATE(3995), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117544] = 6, - ACTIONS(103), 1, + STATE(4180), 1, + sym_val_variable, + STATE(4436), 1, + sym__assignment_pattern_parenthesized, + [118599] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7621), 1, - anon_sym_DQUOTE, + ACTIONS(7503), 1, + aux_sym__immediate_decimal_token5, STATE(3996), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4829), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117564] = 5, + ACTIONS(1750), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [118617] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1356), 1, - aux_sym__block_body_repeat1, + ACTIONS(1818), 1, + sym__unquoted_pattern, STATE(3997), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(1816), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - ACTIONS(459), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [117582] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118633] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7623), 1, - anon_sym_DQUOTE, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(7146), 1, + sym_identifier, STATE(3998), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4843), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117602] = 6, + STATE(4180), 1, + sym_val_variable, + STATE(4845), 1, + sym__variable_name, + [118655] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7625), 1, - anon_sym_DQUOTE, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2525), 1, + sym__entry_separator, + ACTIONS(2581), 1, + anon_sym_LPAREN2, STATE(3999), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4855), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117622] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7627), 1, - anon_sym_DQUOTE, - STATE(4000), 1, - sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4864), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117642] = 3, + ACTIONS(2527), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118675] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4001), 1, + ACTIONS(1856), 1, + sym__unquoted_pattern, + STATE(4000), 1, sym_comment, - ACTIONS(6093), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [117656] = 5, + ACTIONS(1854), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118691] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token5, - STATE(4002), 1, - sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, + ACTIONS(2583), 1, sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACK, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, sym__unquoted_pattern_in_list, - [117674] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7629), 1, - anon_sym_DQUOTE, - STATE(4003), 1, + STATE(4001), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4873), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117694] = 6, + ACTIONS(2585), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118711] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7631), 1, - anon_sym_DQUOTE, - STATE(4004), 1, + ACTIONS(4477), 1, + sym__space, + ACTIONS(7475), 1, + anon_sym_EQ2, + STATE(3112), 1, + sym__flag_equals_value, + STATE(4002), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4880), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117714] = 6, + ACTIONS(4475), 2, + sym__newline, + anon_sym_SEMI, + [118731] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7425), 1, anon_sym_DOT_DOT2, - ACTIONS(7633), 1, + ACTIONS(7683), 1, anon_sym_RBRACE, - ACTIONS(7635), 1, + ACTIONS(7685), 1, sym__entry_separator, - STATE(4005), 1, + STATE(4003), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7427), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117734] = 6, - ACTIONS(103), 1, + [118751] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7637), 1, - anon_sym_DQUOTE, - STATE(4006), 1, + STATE(4004), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4887), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117754] = 3, + ACTIONS(5042), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [118765] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4007), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7596), 1, + anon_sym_COLON, + ACTIONS(7687), 1, + anon_sym_EQ, + STATE(4005), 1, + sym_comment, + STATE(4650), 1, + aux_sym__repeat_newline, + STATE(5014), 1, + sym_param_type, + [118787] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4006), 1, sym_comment, - ACTIONS(6107), 5, + ACTIONS(5038), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [117768] = 6, + [118801] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7639), 1, + ACTIONS(7689), 1, anon_sym_DQUOTE, - STATE(4008), 1, + STATE(4007), 1, sym_comment, - STATE(4258), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4894), 1, + STATE(5104), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117788] = 6, + [118821] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7641), 1, - anon_sym_DQUOTE, + ACTIONS(7601), 1, + anon_sym_QMARK2, + STATE(4008), 1, + sym_comment, + ACTIONS(1450), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [118837] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, + ACTIONS(7691), 1, + anon_sym_RBRACE, + ACTIONS(7693), 1, + sym__entry_separator, STATE(4009), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4901), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117808] = 6, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118857] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7643), 1, - anon_sym_DQUOTE, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, + ACTIONS(7695), 1, + anon_sym_RBRACE, + ACTIONS(7697), 1, + sym__entry_separator, STATE(4010), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4908), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117828] = 6, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118877] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DQUOTE, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7699), 1, + anon_sym_SQUOTE2, STATE(4011), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4913), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117848] = 6, + STATE(4076), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [118899] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - ACTIONS(2575), 1, + ACTIONS(2533), 1, sym__space, STATE(4012), 1, sym_comment, - ACTIONS(2577), 2, + ACTIONS(2535), 2, sym__newline, anon_sym_SEMI, - [117868] = 6, + [118919] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1724), 1, + sym__unquoted_pattern, + STATE(4013), 1, + sym_comment, + ACTIONS(908), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118935] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(2011), 1, sym__space, - ACTIONS(1978), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(4013), 1, + STATE(4014), 1, sym_comment, - ACTIONS(1976), 2, + ACTIONS(2013), 2, sym__newline, anon_sym_SEMI, - [117888] = 7, + [118955] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7647), 1, - anon_sym_EQ, - STATE(4014), 1, - sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(4960), 1, - sym_param_type, - [117910] = 4, - ACTIONS(103), 1, - anon_sym_POUND, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + anon_sym_DOLLAR, + STATE(3932), 1, + sym__variable_name, STATE(4015), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117926] = 4, + STATE(4095), 1, + sym__assignment_pattern, + STATE(4180), 1, + sym_val_variable, + [118977] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, + ACTIONS(1872), 1, + sym__table_head_separator, + ACTIONS(7701), 1, + anon_sym_DOT2, STATE(4016), 1, sym_comment, - ACTIONS(7210), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117942] = 4, - ACTIONS(103), 1, + STATE(4367), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4745), 1, + sym_path, + STATE(5066), 1, + sym_cell_path, + [118999] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7703), 1, + anon_sym_QMARK2, + ACTIONS(7705), 1, + anon_sym_BANG, STATE(4017), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117958] = 4, + STATE(4776), 1, + sym__path_suffix, + ACTIONS(1434), 2, + sym__table_head_separator, + anon_sym_DOT2, + [119019] = 7, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7042), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4018), 1, sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1872), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117974] = 7, + STATE(4576), 1, + sym_cell_path, + [119041] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7607), 1, sym_unescaped_interpolated_content, - ACTIONS(7649), 1, + ACTIONS(7707), 1, anon_sym_SQUOTE2, - STATE(3981), 1, + STATE(3937), 1, aux_sym__inter_single_quotes_repeat1, STATE(4019), 1, sym_comment, - STATE(4544), 1, + STATE(4616), 1, sym_expr_interpolated, - [117996] = 6, - ACTIONS(103), 1, + [119063] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, - sym__space, - ACTIONS(2629), 1, - anon_sym_LPAREN2, + STATE(3953), 1, + aux_sym_parameter_repeat2, STATE(4020), 1, sym_comment, - ACTIONS(2525), 2, + ACTIONS(1388), 2, sym__newline, - anon_sym_SEMI, - [118016] = 7, - ACTIONS(3), 1, + anon_sym_COMMA, + ACTIONS(7661), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119081] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - STATE(1934), 1, - aux_sym__types_body_repeat1, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7709), 1, + anon_sym_SQUOTE2, + STATE(3974), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4021), 1, sym_comment, - STATE(4569), 1, - sym_val_list, - STATE(4579), 1, - aux_sym__table_body_repeat1, - [118038] = 7, + STATE(4616), 1, + sym_expr_interpolated, + [119103] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, - sym__entry_separator, + ACTIONS(7711), 1, + anon_sym_DQUOTE, STATE(4022), 1, sym_comment, - [118060] = 7, - ACTIONS(103), 1, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4894), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [119123] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(4023), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(5164), 1, - sym__variable_name, - [118082] = 4, - ACTIONS(3), 1, + STATE(4557), 1, + sym_block, + ACTIONS(7383), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [119141] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2166), 1, + sym__entry_separator, + ACTIONS(7713), 1, + anon_sym_LBRACK2, STATE(4024), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, + ACTIONS(2168), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [119159] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(1726), 3, + ACTIONS(2001), 1, anon_sym_LBRACE, + ACTIONS(7715), 1, + anon_sym_DOT_DOT2, + STATE(4025), 1, + sym_comment, + ACTIONS(7717), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118098] = 6, + [119179] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7568), 1, - anon_sym_DOT_DOT, - ACTIONS(7651), 1, - anon_sym_RBRACK, - STATE(3972), 1, - aux_sym_parameter_repeat2, - STATE(4025), 1, - sym_comment, - ACTIONS(1388), 2, - sym__newline, - anon_sym_COMMA, - [118118] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - sym__space, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, STATE(4026), 1, sym_comment, - ACTIONS(2569), 2, - sym__newline, - anon_sym_SEMI, - [118138] = 6, + ACTIONS(5034), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [119193] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5622), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - STATE(2955), 1, - sym__flag_equals_value, + ACTIONS(7719), 1, + anon_sym_DQUOTE, STATE(4027), 1, sym_comment, - ACTIONS(5620), 2, - sym__newline, - anon_sym_SEMI, - [118158] = 7, - ACTIONS(3), 1, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4881), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [119213] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1434), 1, - anon_sym_COLON2, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(492), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7721), 1, + anon_sym_SQUOTE2, STATE(4028), 1, sym_comment, - [118180] = 5, - ACTIONS(3), 1, + STATE(4054), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [119235] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1350), 1, - aux_sym__block_body_repeat1, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7723), 1, + anon_sym_SQUOTE2, STATE(4029), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3073), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118198] = 4, + STATE(4075), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [119257] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4030), 1, - sym_comment, - ACTIONS(2501), 2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2525), 1, sym__space, + ACTIONS(2581), 1, anon_sym_LPAREN2, - ACTIONS(2503), 3, + STATE(4030), 1, + sym_comment, + ACTIONS(2527), 2, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [118214] = 6, - ACTIONS(103), 1, + [119277] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__space, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7596), 1, + anon_sym_COLON, + ACTIONS(7725), 1, + anon_sym_EQ, STATE(4031), 1, sym_comment, - ACTIONS(2637), 2, - sym__newline, - anon_sym_SEMI, - [118234] = 5, + STATE(4650), 1, + aux_sym__repeat_newline, + STATE(4947), 1, + sym_param_type, + [119299] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(4032), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [118252] = 6, + STATE(4598), 1, + sym_block, + ACTIONS(7383), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [119317] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7654), 1, - anon_sym_RBRACE, - ACTIONS(7656), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2001), 1, sym__entry_separator, + ACTIONS(2005), 1, + anon_sym_LPAREN2, STATE(4033), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118272] = 7, - ACTIONS(3), 1, + ACTIONS(2003), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119337] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3915), 1, - sym__variable_name, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7727), 1, + anon_sym_SQUOTE2, STATE(4034), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4307), 1, - sym__assignment_pattern, - [118294] = 5, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [119359] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7658), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + anon_sym_DOLLAR, STATE(4035), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [118312] = 6, - ACTIONS(103), 1, + STATE(4079), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4638), 1, + sym__assignment_pattern, + [119381] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7660), 1, - anon_sym_DQUOTE, STATE(4036), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4824), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [118332] = 6, - ACTIONS(103), 1, + STATE(5000), 1, + sym__immediate_decimal, + ACTIONS(7369), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7371), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [119399] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7662), 1, - anon_sym_RBRACE, - ACTIONS(7664), 1, - sym__entry_separator, + ACTIONS(1446), 1, + anon_sym_COLON2, + ACTIONS(5052), 1, + anon_sym_DOT2, + STATE(446), 1, + sym_path, + STATE(499), 1, + sym_cell_path, + STATE(2294), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4037), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118352] = 5, - ACTIONS(3), 1, + [119421] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7420), 1, - anon_sym_EQ2, + ACTIONS(7575), 1, + aux_sym__immediate_decimal_token5, STATE(4038), 1, sym_comment, - STATE(4462), 1, - sym__flag_equals_value, - ACTIONS(4367), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118370] = 5, + ACTIONS(1750), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1752), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [119439] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7666), 1, - anon_sym_DASH_DASH, - STATE(4547), 1, - sym_long_flag, - ACTIONS(4453), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(4039), 2, + STATE(4039), 1, sym_comment, - aux_sym_decl_def_repeat1, - [118388] = 7, - ACTIONS(3), 1, + ACTIONS(5054), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [119453] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3957), 1, - sym__variable_name, + ACTIONS(7419), 1, + aux_sym__immediate_decimal_token5, STATE(4040), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4307), 1, - sym__assignment_pattern, - [118410] = 7, + ACTIONS(1750), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1752), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [119471] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3933), 1, - sym__variable_name, STATE(4041), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4403), 1, - sym__assignment_pattern, - [118432] = 6, + ACTIONS(4944), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [119485] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, - sym__space, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7669), 1, - anon_sym_DOT, STATE(4042), 1, sym_comment, - ACTIONS(1738), 2, - sym__newline, - anon_sym_SEMI, - [118452] = 5, - ACTIONS(3), 1, + ACTIONS(2385), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2387), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + sym__unquoted_pattern_in_list, + [119501] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2591), 1, + sym__entry_separator, + ACTIONS(2595), 1, + anon_sym_LPAREN2, + ACTIONS(2597), 1, + sym__unquoted_pattern_in_list, STATE(4043), 1, sym_comment, - ACTIONS(1736), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118470] = 5, - ACTIONS(3), 1, + ACTIONS(2593), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119521] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(2583), 1, + sym__space, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, sym__unquoted_pattern, - ACTIONS(7671), 1, - aux_sym__immediate_decimal_token5, STATE(4044), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(2585), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118488] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + [119541] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(4014), 1, - sym__variable_name, + ACTIONS(7729), 1, + aux_sym__immediate_decimal_token5, STATE(4045), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4597), 1, - sym__assignment_pattern_parenthesized, - [118510] = 7, - ACTIONS(3), 1, + ACTIONS(1816), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1818), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [119559] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3940), 1, - sym__variable_name, + ACTIONS(7731), 1, + anon_sym_DQUOTE, STATE(4046), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4597), 1, - sym__assignment_pattern_parenthesized, - [118532] = 7, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(5217), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [119579] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7607), 1, sym_unescaped_interpolated_content, - ACTIONS(7673), 1, + ACTIONS(7733), 1, anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, STATE(4047), 1, sym_comment, - STATE(4544), 1, + STATE(4058), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, sym_expr_interpolated, - [118554] = 6, + [119601] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1621), 1, - anon_sym_RBRACE, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - STATE(1475), 1, - aux_sym__types_body_repeat2, + ACTIONS(5737), 1, + sym__space, + ACTIONS(7475), 1, + anon_sym_EQ2, + STATE(3072), 1, + sym__flag_equals_value, STATE(4048), 1, sym_comment, - [118573] = 3, + ACTIONS(5735), 2, + sym__newline, + anon_sym_SEMI, + [119621] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7596), 1, + anon_sym_COLON, + ACTIONS(7735), 1, + anon_sym_EQ, STATE(4049), 1, sym_comment, - ACTIONS(7675), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118586] = 3, + STATE(4650), 1, + aux_sym__repeat_newline, + STATE(4914), 1, + sym_param_type, + [119643] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, STATE(4050), 1, sym_comment, - ACTIONS(7677), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [118599] = 6, + ACTIONS(2001), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119659] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1726), 1, - anon_sym_LBRACE, - ACTIONS(1728), 1, - sym__unquoted_pattern, ACTIONS(7679), 1, - aux_sym__immediate_decimal_token1, + sym_identifier, ACTIONS(7681), 1, - aux_sym__immediate_decimal_token5, + anon_sym_DOLLAR, + STATE(4031), 1, + sym__variable_name, STATE(4051), 1, sym_comment, - [118618] = 3, + STATE(4095), 1, + sym__assignment_pattern, + STATE(4180), 1, + sym_val_variable, + [119681] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1838), 1, + sym__table_head_separator, + ACTIONS(7701), 1, + anon_sym_DOT2, STATE(4052), 1, sym_comment, - ACTIONS(7675), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118631] = 3, + STATE(4367), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4745), 1, + sym_path, + STATE(5023), 1, + sym_cell_path, + [119703] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4053), 1, sym_comment, - ACTIONS(7683), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118644] = 3, - ACTIONS(3), 1, + ACTIONS(5016), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [119717] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7737), 1, + anon_sym_SQUOTE2, STATE(4054), 1, sym_comment, - ACTIONS(7683), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118657] = 4, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [119739] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1018), 1, + sym__entry_separator, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_list, STATE(4055), 1, sym_comment, - ACTIONS(6121), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6123), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, - anon_sym_GT2, - [118672] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [119759] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, + ACTIONS(1004), 1, + sym__entry_separator, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_list, STATE(4056), 1, sym_comment, - ACTIONS(2635), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118687] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(4057), 1, - sym_comment, - ACTIONS(968), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118702] = 4, + ACTIONS(994), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119779] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2194), 1, + ACTIONS(1750), 1, sym__entry_separator, - STATE(4058), 1, + ACTIONS(6677), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7739), 1, + anon_sym_DOT, + STATE(4057), 1, sym_comment, - ACTIONS(2196), 3, + ACTIONS(1752), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [118717] = 6, - ACTIONS(3), 1, + [119799] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1460), 1, - sym__table_head_separator, - ACTIONS(7510), 1, - anon_sym_DOT2, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7741), 1, + anon_sym_SQUOTE2, + STATE(4058), 1, + sym_comment, STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [119821] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7743), 1, + anon_sym_LPAREN, + ACTIONS(7746), 1, + anon_sym_SQUOTE2, + ACTIONS(7748), 1, + sym_unescaped_interpolated_content, + STATE(4616), 1, + sym_expr_interpolated, + STATE(4059), 2, sym_comment, - STATE(4065), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - [118736] = 3, - ACTIONS(3), 1, + aux_sym__inter_single_quotes_repeat1, + [119841] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4060), 1, sym_comment, - ACTIONS(7685), 4, - anon_sym_EQ, - anon_sym_in, + ACTIONS(1738), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1740), 3, sym__newline, - anon_sym_COLON, - [118749] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2585), 1, + anon_sym_SEMI, sym__unquoted_pattern, + [119857] = 4, + ACTIONS(103), 1, + anon_sym_POUND, STATE(4061), 1, sym_comment, - ACTIONS(994), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118764] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(2385), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2387), 3, + sym__newline, + anon_sym_SEMI, sym__unquoted_pattern, + [119873] = 4, + ACTIONS(103), 1, + anon_sym_POUND, STATE(4062), 1, sym_comment, - ACTIONS(1018), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118779] = 3, - ACTIONS(3), 1, + ACTIONS(1816), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1818), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [119889] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2001), 1, + sym__entry_separator, + ACTIONS(2003), 1, + anon_sym_RBRACE, + ACTIONS(7751), 1, + anon_sym_DOT_DOT2, STATE(4063), 1, sym_comment, - ACTIONS(4102), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [118792] = 4, + ACTIONS(7753), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119909] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2591), 1, + sym__space, + ACTIONS(2595), 1, + anon_sym_LPAREN2, + ACTIONS(2597), 1, + sym__unquoted_pattern, STATE(4064), 1, sym_comment, - ACTIONS(6125), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6127), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [118807] = 5, + ACTIONS(2593), 2, + sym__newline, + anon_sym_SEMI, + [119929] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - sym__table_head_separator, - ACTIONS(7687), 1, - anon_sym_DOT2, - STATE(4641), 1, - sym_path, - STATE(4065), 2, + ACTIONS(1740), 1, + sym__unquoted_pattern, + STATE(4065), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [118824] = 5, - ACTIONS(3), 1, + ACTIONS(1738), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119945] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3073), 1, - ts_builtin_sym_end, - STATE(1371), 1, - aux_sym__block_body_repeat1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(2991), 1, + sym_block, STATE(4066), 1, sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - [118841] = 3, + STATE(4198), 1, + aux_sym__repeat_newline, + [119967] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4067), 1, sym_comment, - ACTIONS(4104), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(5062), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, anon_sym_LBRACE, - [118854] = 3, - ACTIONS(3), 1, + [119981] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4068), 1, sym_comment, - ACTIONS(7690), 4, + ACTIONS(1816), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1818), 3, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118867] = 3, - ACTIONS(3), 1, + sym__unquoted_pattern, + [119997] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4069), 1, sym_comment, - ACTIONS(7690), 4, + ACTIONS(1854), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1856), 3, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118880] = 3, + sym__unquoted_pattern, + [120013] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(4070), 1, sym_comment, - ACTIONS(7692), 4, + STATE(4432), 1, + sym_block, + ACTIONS(7330), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118893] = 4, + [120031] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2198), 1, - sym__entry_separator, + ACTIONS(7755), 1, + anon_sym_DQUOTE, STATE(4071), 1, sym_comment, - ACTIONS(2200), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [118908] = 4, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(5259), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [120051] = 7, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7757), 1, + anon_sym_SQUOTE2, STATE(4072), 1, sym_comment, - ACTIONS(6129), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6131), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [118923] = 4, - ACTIONS(103), 1, + STATE(4080), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [120073] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + anon_sym_DOLLAR, + STATE(4049), 1, + sym__variable_name, STATE(4073), 1, sym_comment, - ACTIONS(6133), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6135), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [118938] = 4, + STATE(4095), 1, + sym__assignment_pattern, + STATE(4180), 1, + sym_val_variable, + [120095] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, STATE(4074), 1, sym_comment, - ACTIONS(2102), 3, + ACTIONS(1854), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1856), 3, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - [118953] = 4, + sym__unquoted_pattern_in_list, + [120111] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, - sym__entry_separator, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7759), 1, + anon_sym_SQUOTE2, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4075), 1, sym_comment, - ACTIONS(2078), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [118968] = 3, - ACTIONS(3), 1, + STATE(4616), 1, + sym_expr_interpolated, + [120133] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7761), 1, + anon_sym_SQUOTE2, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4076), 1, sym_comment, - ACTIONS(5221), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [118981] = 5, - ACTIONS(103), 1, + STATE(4616), 1, + sym_expr_interpolated, + [120155] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4969), 1, - sym__unquoted_pattern, STATE(4077), 1, sym_comment, - ACTIONS(868), 2, - sym__newline, - anon_sym_SEMI, - [118998] = 3, + ACTIONS(5020), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [120169] = 5, ACTIONS(3), 1, anon_sym_POUND, + STATE(1354), 1, + aux_sym__block_body_repeat1, STATE(4078), 1, sym_comment, - ACTIONS(7694), 4, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, + ACTIONS(3044), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [119011] = 4, - ACTIONS(103), 1, + [120187] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__entry_separator, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7596), 1, + anon_sym_COLON, + ACTIONS(7763), 1, + anon_sym_EQ, STATE(4079), 1, sym_comment, - ACTIONS(2122), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119026] = 3, - ACTIONS(3), 1, + STATE(4650), 1, + aux_sym__repeat_newline, + STATE(5133), 1, + sym_param_type, + [120209] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7765), 1, + anon_sym_SQUOTE2, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4080), 1, sym_comment, - ACTIONS(5237), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [119039] = 3, + STATE(4616), 1, + sym_expr_interpolated, + [120231] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + anon_sym_DOLLAR, + STATE(4005), 1, + sym__variable_name, STATE(4081), 1, sym_comment, - ACTIONS(7696), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119052] = 3, + STATE(4180), 1, + sym_val_variable, + STATE(4436), 1, + sym__assignment_pattern_parenthesized, + [120253] = 5, ACTIONS(3), 1, anon_sym_POUND, + STATE(1347), 1, + aux_sym__block_body_repeat1, STATE(4082), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, + ACTIONS(461), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [119065] = 3, + [120271] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + STATE(1939), 1, + aux_sym__types_body_repeat1, STATE(4083), 1, sym_comment, - ACTIONS(7675), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119078] = 6, + STATE(4647), 1, + sym_val_list, + STATE(4652), 1, + aux_sym__table_body_repeat1, + [120293] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_LBRACK, - ACTIONS(7700), 1, - anon_sym_LPAREN, - STATE(3902), 1, - sym_parameter_parens, - STATE(3989), 1, - sym_parameter_bracks, + ACTIONS(7767), 1, + aux_sym__immediate_decimal_token5, STATE(4084), 1, sym_comment, - [119097] = 3, + ACTIONS(1816), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [120311] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2011), 1, + anon_sym_LBRACE, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(7769), 1, + anon_sym_DOT_DOT2, STATE(4085), 1, sym_comment, - ACTIONS(7675), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119110] = 3, + ACTIONS(7771), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120331] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7409), 1, + anon_sym_EQ2, STATE(4086), 1, sym_comment, - ACTIONS(7683), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119123] = 4, + STATE(4590), 1, + sym__flag_equals_value, + ACTIONS(4477), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [120349] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, + STATE(1350), 1, + aux_sym__block_body_repeat1, STATE(4087), 1, sym_comment, - ACTIONS(7210), 3, + ACTIONS(153), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119138] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7702), 1, - anon_sym_DOT_DOT2, - STATE(4088), 1, - sym_comment, - ACTIONS(7704), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119155] = 4, + anon_sym_SEMI, + ACTIONS(3075), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120367] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7706), 1, + ACTIONS(7773), 1, anon_sym_DQUOTE, - ACTIONS(7708), 2, + STATE(4088), 1, + sym_comment, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4853), 1, + sym_string_content, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - STATE(4089), 2, + [120387] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1452), 1, + sym__entry_separator, + ACTIONS(7775), 1, + anon_sym_BANG, + STATE(4089), 1, sym_comment, - aux_sym_string_content_repeat1, - [119170] = 3, - ACTIONS(3), 1, + ACTIONS(1450), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [120405] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1452), 1, + sym__entry_separator, + ACTIONS(7775), 1, + anon_sym_QMARK2, STATE(4090), 1, sym_comment, - ACTIONS(7683), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119183] = 3, - ACTIONS(3), 1, + ACTIONS(1450), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [120423] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7048), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4091), 1, sym_comment, - ACTIONS(7711), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119196] = 6, + STATE(4486), 1, + sym_cell_path, + [120445] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_LBRACK, - ACTIONS(7700), 1, - anon_sym_LPAREN, - STATE(3959), 1, - sym_parameter_parens, - STATE(3963), 1, - sym_parameter_bracks, STATE(4092), 1, sym_comment, - [119215] = 3, + ACTIONS(5140), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [120458] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4093), 1, sym_comment, - ACTIONS(7711), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119228] = 3, + ACTIONS(1507), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120471] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1750), 1, + anon_sym_LBRACE, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(7777), 1, + anon_sym_DOT, + ACTIONS(7779), 1, + aux_sym__immediate_decimal_token5, STATE(4094), 1, sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119241] = 3, + [120490] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4095), 1, sym_comment, - ACTIONS(7715), 4, + ACTIONS(7781), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119254] = 4, + [120503] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2202), 1, - sym__entry_separator, STATE(4096), 1, sym_comment, - ACTIONS(2204), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119269] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(1738), 2, anon_sym_LPAREN2, - ACTIONS(5822), 1, sym__entry_separator, - ACTIONS(5824), 1, - anon_sym_RBRACE, + ACTIONS(1740), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [120518] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4097), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [119288] = 3, + ACTIONS(7350), 4, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + anon_sym_AT, + [120531] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7783), 1, + anon_sym_DOT_DOT2, STATE(4098), 1, sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119301] = 3, + ACTIONS(7785), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120548] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4099), 1, sym_comment, - ACTIONS(7715), 4, + ACTIONS(7787), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119314] = 4, - ACTIONS(103), 1, + [120561] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4100), 1, sym_comment, - ACTIONS(6137), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6139), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [119329] = 3, + ACTIONS(7789), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120574] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4101), 1, sym_comment, - ACTIONS(7713), 4, + ACTIONS(7791), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119342] = 4, - ACTIONS(103), 1, + [120587] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2519), 1, - sym__entry_separator, STATE(4102), 1, sym_comment, - ACTIONS(2521), 3, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(7793), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [119357] = 6, - ACTIONS(103), 1, + [120600] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5833), 1, - sym__entry_separator, - ACTIONS(5835), 1, - anon_sym_RBRACE, STATE(4103), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [119376] = 4, - ACTIONS(103), 1, + ACTIONS(7795), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120613] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2597), 1, + sym__unquoted_pattern, STATE(4104), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [119391] = 4, - ACTIONS(103), 1, + ACTIONS(2591), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120628] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, - sym__entry_separator, STATE(4105), 1, sym_comment, - ACTIONS(2208), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119406] = 4, - ACTIONS(103), 1, + ACTIONS(1460), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120641] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2210), 1, - sym__entry_separator, STATE(4106), 1, sym_comment, - ACTIONS(2212), 3, - anon_sym_RBRACK, + ACTIONS(7797), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119421] = 4, - ACTIONS(103), 1, + [120654] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2214), 1, - sym__entry_separator, STATE(4107), 1, sym_comment, - ACTIONS(2216), 3, - anon_sym_RBRACK, + ACTIONS(7799), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119436] = 3, + [120667] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2001), 1, + sym__entry_separator, + ACTIONS(2003), 1, + anon_sym_RBRACK, + ACTIONS(2005), 1, + anon_sym_LPAREN2, STATE(4108), 1, sym_comment, - ACTIONS(1462), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [119449] = 4, - ACTIONS(103), 1, + [120686] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2218), 1, - sym__entry_separator, STATE(4109), 1, sym_comment, - ACTIONS(2220), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119464] = 3, - ACTIONS(3), 1, + ACTIONS(1511), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120699] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4110), 1, sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119477] = 3, - ACTIONS(3), 1, + ACTIONS(1816), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1818), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [120714] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1002), 1, + anon_sym_RBRACK, + ACTIONS(1018), 1, + sym__entry_separator, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_list, STATE(4111), 1, sym_comment, - ACTIONS(5257), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [119490] = 4, - ACTIONS(3), 1, + [120733] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, + ACTIONS(994), 1, + anon_sym_RBRACK, + ACTIONS(1004), 1, + sym__entry_separator, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_list, STATE(4112), 1, sym_comment, - ACTIONS(1964), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119505] = 4, - ACTIONS(103), 1, + [120752] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2222), 1, - sym__entry_separator, STATE(4113), 1, sym_comment, - ACTIONS(2224), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119520] = 6, + ACTIONS(1738), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [120767] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7717), 1, - anon_sym_LBRACK, - STATE(540), 1, - aux_sym__repeat_newline, + ACTIONS(7511), 1, + anon_sym_RPAREN, STATE(4114), 1, sym_comment, - STATE(4957), 1, - sym_val_list, - [119539] = 4, + STATE(4272), 1, + aux_sym__block_body_repeat1, + ACTIONS(7801), 2, + sym__newline, + anon_sym_SEMI, + [120784] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2226), 1, - sym__entry_separator, STATE(4115), 1, sym_comment, - ACTIONS(2228), 3, + ACTIONS(1854), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1856), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119554] = 4, + sym__unquoted_pattern_in_list, + [120799] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2230), 1, + ACTIONS(2417), 1, sym__entry_separator, STATE(4116), 1, sym_comment, - ACTIONS(2232), 3, + ACTIONS(2419), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119569] = 4, - ACTIONS(103), 1, + [120814] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__entry_separator, STATE(4117), 1, sym_comment, - ACTIONS(2236), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119584] = 4, - ACTIONS(3), 1, + ACTIONS(1816), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [120829] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, STATE(4118), 1, sym_comment, - ACTIONS(2575), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119599] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2238), 1, + ACTIONS(7803), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7805), 2, + anon_sym_LPAREN2, sym__entry_separator, + [120844] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4119), 1, sym_comment, - ACTIONS(2240), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119614] = 4, + ACTIONS(1854), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1856), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [120859] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, + ACTIONS(7807), 1, + anon_sym_DOT_DOT2, STATE(4120), 1, sym_comment, - ACTIONS(1974), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119629] = 4, + ACTIONS(7809), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120876] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2242), 1, - sym__entry_separator, STATE(4121), 1, sym_comment, - ACTIONS(2244), 3, - anon_sym_RBRACK, + ACTIONS(1738), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1740), 2, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119644] = 4, - ACTIONS(103), 1, + sym__unquoted_pattern_in_record, + [120891] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2246), 1, - sym__entry_separator, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3084), 1, + anon_sym_SEMI, + STATE(1358), 1, + aux_sym__parenthesized_body_repeat1, STATE(4122), 1, sym_comment, - ACTIONS(2248), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119659] = 4, + STATE(4467), 1, + aux_sym__repeat_newline, + [120910] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2250), 1, - sym__entry_separator, + ACTIONS(908), 1, + sym__space, + ACTIONS(5172), 1, + sym__unquoted_pattern, STATE(4123), 1, sym_comment, - ACTIONS(2252), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119674] = 4, + ACTIONS(866), 2, + sym__newline, + anon_sym_SEMI, + [120927] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7811), 1, + anon_sym_LBRACK, + STATE(528), 1, + aux_sym__repeat_newline, STATE(4124), 1, sym_comment, - ACTIONS(2523), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119689] = 4, - ACTIONS(3), 1, + STATE(5040), 1, + sym_val_list, + [120946] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, STATE(4125), 1, sym_comment, - ACTIONS(2567), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119704] = 6, - ACTIONS(103), 1, + ACTIONS(1513), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [120959] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, - anon_sym_LBRACE, STATE(4126), 1, sym_comment, - STATE(4257), 1, - sym_block, - [119723] = 4, + ACTIONS(7813), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120972] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, STATE(4127), 1, sym_comment, - ACTIONS(2501), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119738] = 6, - ACTIONS(103), 1, + ACTIONS(1519), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120985] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7719), 1, - anon_sym_GT2, - ACTIONS(7721), 1, - anon_sym_AT2, - ACTIONS(7723), 1, - sym__entry_separator, STATE(4128), 1, sym_comment, - STATE(4652), 1, - sym_param_completer, - [119757] = 3, + ACTIONS(1523), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120998] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4129), 1, sym_comment, - ACTIONS(7725), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119770] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_RBRACE, - ACTIONS(1706), 1, - sym__entry_separator, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, + ACTIONS(1527), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [121011] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4130), 1, sym_comment, - [119789] = 6, + ACTIONS(7815), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121024] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, + ACTIONS(2702), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2704), 1, anon_sym_COLON2, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, STATE(4131), 1, sym_comment, - STATE(4259), 1, - sym_block, - [119808] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(2986), 1, + STATE(4354), 1, sym_block, - STATE(4132), 1, - sym_comment, - [119827] = 5, + [121043] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7727), 1, + ACTIONS(2134), 1, + anon_sym_LBRACE, + ACTIONS(7817), 1, anon_sym_DOT_DOT2, - STATE(4133), 1, + STATE(4132), 1, sym_comment, - ACTIONS(7729), 2, + ACTIONS(7819), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119844] = 5, + [121060] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7210), 1, + ACTIONS(4816), 1, sym__entry_separator, - STATE(4134), 1, + STATE(2244), 1, + aux_sym__types_body_repeat2, + STATE(4133), 1, sym_comment, - ACTIONS(7278), 2, + ACTIONS(7561), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [119861] = 5, - ACTIONS(3), 1, + [121077] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4134), 1, + sym_comment, + ACTIONS(1816), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1818), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [121092] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, - anon_sym_LBRACE, - ACTIONS(7731), 1, - anon_sym_DOT_DOT2, STATE(4135), 1, sym_comment, - ACTIONS(7733), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119878] = 3, - ACTIONS(3), 1, + ACTIONS(1854), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1856), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [121107] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4816), 1, + sym__entry_separator, + STATE(2240), 1, + aux_sym__types_body_repeat2, STATE(4136), 1, sym_comment, - ACTIONS(7725), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119891] = 3, - ACTIONS(3), 1, + ACTIONS(7821), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [121124] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4816), 1, + sym__entry_separator, + STATE(2237), 1, + aux_sym__types_body_repeat2, STATE(4137), 1, sym_comment, - ACTIONS(7735), 4, + ACTIONS(7821), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [121141] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7823), 1, + sym__space, + ACTIONS(5850), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119904] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_LBRACK, - ACTIONS(7700), 1, - anon_sym_LPAREN, - STATE(3983), 1, - sym_parameter_parens, - STATE(3984), 1, - sym_parameter_bracks, - STATE(4138), 1, + STATE(4138), 2, sym_comment, - [119923] = 5, + aux_sym_attribute_repeat1, + [121156] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7372), 1, - anon_sym_RPAREN, STATE(4139), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, + ACTIONS(7826), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [119940] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121169] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2449), 1, + sym__entry_separator, STATE(4140), 1, sym_comment, - ACTIONS(1480), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [119953] = 3, - ACTIONS(3), 1, + ACTIONS(2451), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121184] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(1614), 1, + anon_sym_COLON2, + ACTIONS(7828), 1, + anon_sym_RBRACE, + STATE(1467), 1, + aux_sym__types_body_repeat2, STATE(4141), 1, sym_comment, - ACTIONS(7739), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [119966] = 3, - ACTIONS(3), 1, + [121203] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2453), 1, + sym__entry_separator, STATE(4142), 1, sym_comment, - ACTIONS(7735), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2455), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [119979] = 6, + anon_sym_DOT_DOT, + [121218] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2575), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACK, + ACTIONS(1614), 1, + anon_sym_COLON2, + ACTIONS(7830), 1, + anon_sym_RBRACE, + STATE(1469), 1, + aux_sym__types_body_repeat2, STATE(4143), 1, sym_comment, - [119998] = 3, - ACTIONS(3), 1, + [121237] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2457), 1, + sym__entry_separator, STATE(4144), 1, sym_comment, - ACTIONS(7741), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2459), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [120011] = 6, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + [121252] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACK, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, + ACTIONS(2066), 1, + anon_sym_LBRACE, + ACTIONS(7832), 1, + anon_sym_DOT_DOT2, STATE(4145), 1, sym_comment, - [120030] = 4, + ACTIONS(7834), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121269] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(7836), 1, + anon_sym_DOT_DOT2, STATE(4146), 1, sym_comment, - ACTIONS(2635), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120045] = 6, + ACTIONS(7838), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121286] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3196), 1, - anon_sym_SEMI, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(2082), 1, + anon_sym_LBRACE, + ACTIONS(7840), 1, + anon_sym_DOT_DOT2, STATE(4147), 1, sym_comment, - STATE(4404), 1, - aux_sym__repeat_newline, - [120064] = 6, + ACTIONS(7842), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(1738), 1, + ACTIONS(1740), 1, sym__unquoted_pattern, - ACTIONS(7743), 1, - anon_sym_DOT, - ACTIONS(7745), 1, - aux_sym__immediate_decimal_token5, STATE(4148), 1, sym_comment, - [120083] = 3, - ACTIONS(3), 1, + ACTIONS(1738), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121318] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7199), 1, + sym__entry_separator, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, STATE(4149), 1, sym_comment, - ACTIONS(7747), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120096] = 3, - ACTIONS(3), 1, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121335] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7205), 1, + sym__entry_separator, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, STATE(4150), 1, sym_comment, - ACTIONS(1545), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120109] = 3, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121352] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4151), 1, - sym_comment, - ACTIONS(7747), 4, + ACTIONS(7844), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120122] = 5, - ACTIONS(3), 1, + ACTIONS(7847), 1, + anon_sym_PIPE, + ACTIONS(7850), 1, + anon_sym_EQ_GT, + STATE(4151), 2, + sym_comment, + aux_sym_match_pattern_repeat1, + [121369] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3046), 1, - ts_builtin_sym_end, - STATE(1367), 1, - aux_sym__block_body_repeat1, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(7683), 1, + anon_sym_RBRACE, + ACTIONS(7685), 1, + sym__entry_separator, STATE(4152), 1, sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - [120139] = 3, - ACTIONS(3), 1, + STATE(4661), 1, + sym__expr_parenthesized_immediate, + [121388] = 3, + ACTIONS(103), 1, anon_sym_POUND, STATE(4153), 1, sym_comment, - ACTIONS(1468), 4, + ACTIONS(1529), 4, + anon_sym_RBRACK, + sym__entry_separator, sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, anon_sym_DOT2, - [120152] = 5, + [121401] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7749), 1, - anon_sym_RPAREN, + ACTIONS(1818), 1, + sym__unquoted_pattern, STATE(4154), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, + ACTIONS(1816), 3, sym__newline, - anon_sym_SEMI, - [120169] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121416] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1856), 1, + sym__unquoted_pattern, STATE(4155), 1, sym_comment, - ACTIONS(5287), 4, - ts_builtin_sym_end, + ACTIONS(1854), 3, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [120182] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121431] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(7852), 1, + anon_sym_LBRACK, + ACTIONS(7854), 1, + anon_sym_RBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, STATE(4156), 1, sym_comment, - ACTIONS(7741), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120195] = 4, - ACTIONS(3), 1, + [121450] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, STATE(4157), 1, sym_comment, - ACTIONS(994), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120210] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(4158), 1, - sym_comment, - ACTIONS(1018), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120225] = 6, + ACTIONS(1533), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [121463] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1964), 1, + ACTIONS(2461), 1, sym__entry_separator, - ACTIONS(1966), 1, + STATE(4158), 1, + sym_comment, + ACTIONS(2463), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1968), 1, - anon_sym_LPAREN2, + anon_sym_DOT_DOT, + [121478] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4159), 1, sym_comment, - [120244] = 3, + ACTIONS(7856), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121491] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4160), 1, sym_comment, - ACTIONS(1472), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120257] = 3, + ACTIONS(7199), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121504] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4161), 1, sym_comment, - ACTIONS(1476), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120270] = 3, + ACTIONS(7858), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121517] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4162), 1, sym_comment, - ACTIONS(1516), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120283] = 4, + ACTIONS(7093), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [121530] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(6117), 1, sym__entry_separator, - STATE(4163), 1, - sym_comment, - ACTIONS(868), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120298] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4164), 1, - sym_comment, - ACTIONS(7751), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(6119), 1, anon_sym_RBRACE, - [120311] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2112), 1, - sym__entry_separator, - STATE(4165), 1, + STATE(4163), 1, sym_comment, - ACTIONS(2114), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120326] = 6, + STATE(5098), 1, + sym__expr_parenthesized_immediate, + [121549] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(7753), 1, - anon_sym_RBRACK, - ACTIONS(7755), 1, + ACTIONS(6121), 1, sym__entry_separator, - STATE(4166), 1, + ACTIONS(6123), 1, + anon_sym_RBRACE, + STATE(4164), 1, sym_comment, - STATE(4966), 1, + STATE(5098), 1, sym__expr_parenthesized_immediate, - [120345] = 5, - ACTIONS(3), 1, + [121568] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(459), 1, - ts_builtin_sym_end, - STATE(1368), 1, - aux_sym__block_body_repeat1, - STATE(4167), 1, + ACTIONS(7860), 1, + anon_sym_DQUOTE, + ACTIONS(7862), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(4165), 2, sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - [120362] = 3, + aux_sym_string_content_repeat1, + [121583] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4168), 1, + STATE(4166), 1, sym_comment, - ACTIONS(5253), 4, - ts_builtin_sym_end, + ACTIONS(7205), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [120375] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121596] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4169), 1, + ACTIONS(5773), 1, + sym__newline, + ACTIONS(7865), 1, + anon_sym_EQ, + ACTIONS(7867), 1, + anon_sym_COLON, + STATE(3270), 1, + aux_sym__repeat_newline, + STATE(4167), 1, sym_comment, - ACTIONS(6928), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120388] = 3, + [121615] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4170), 1, + STATE(4168), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(7869), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120401] = 6, + [121628] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - STATE(3875), 1, - sym_parameter_parens, - STATE(3879), 1, - sym_parameter_bracks, - STATE(4171), 1, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(4169), 1, sym_comment, - [120420] = 3, + ACTIONS(1018), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121643] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4172), 1, + STATE(4170), 1, sym_comment, - ACTIONS(7757), 4, + ACTIONS(7871), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120433] = 6, + [121656] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(6599), 1, anon_sym_LPAREN2, - ACTIONS(7572), 1, - anon_sym_RBRACE, - ACTIONS(7574), 1, + ACTIONS(7513), 1, + anon_sym_RBRACK, + ACTIONS(7515), 1, sym__entry_separator, - STATE(4173), 1, + STATE(4171), 1, sym_comment, - STATE(4631), 1, + STATE(4701), 1, sym__expr_parenthesized_immediate, - [120452] = 6, - ACTIONS(103), 1, + [121675] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, + STATE(4172), 1, + sym_comment, + ACTIONS(7873), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, + [121688] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(4173), 1, + sym_comment, + ACTIONS(1004), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121703] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4174), 1, sym_comment, - [120471] = 3, + ACTIONS(7875), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121716] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4175), 1, sym_comment, - ACTIONS(7757), 4, - anon_sym_if, + ACTIONS(7877), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120484] = 4, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121729] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, STATE(4176), 1, sym_comment, - ACTIONS(1860), 3, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(7879), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [120499] = 6, + [121742] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(4944), 1, sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, + ACTIONS(7881), 1, + anon_sym_LT, STATE(4177), 1, sym_comment, - [120518] = 5, - ACTIONS(3), 1, + ACTIONS(4948), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [121759] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, - anon_sym_LBRACE, - ACTIONS(7759), 1, - anon_sym_DOT_DOT2, + ACTIONS(4944), 1, + sym__entry_separator, + ACTIONS(7883), 1, + anon_sym_LT, STATE(4178), 1, sym_comment, - ACTIONS(7761), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120535] = 5, + ACTIONS(4948), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [121776] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7763), 1, - anon_sym_DOT_DOT2, STATE(4179), 1, sym_comment, - ACTIONS(7765), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120552] = 3, + ACTIONS(5070), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [121789] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4180), 1, sym_comment, - ACTIONS(6942), 4, + ACTIONS(7885), 4, + anon_sym_EQ, anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120565] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(7767), 2, sym__newline, - sym__space, - STATE(4181), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [120580] = 6, + anon_sym_COLON, + [121802] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7289), 1, + STATE(4181), 1, + sym_comment, + ACTIONS(4106), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(7291), 1, - anon_sym_PIPE, - ACTIONS(7770), 1, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + [121815] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4182), 1, sym_comment, - STATE(4344), 1, - aux_sym_match_pattern_repeat1, - [120599] = 5, + ACTIONS(4108), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [121828] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2076), 1, - anon_sym_LBRACE, - ACTIONS(7772), 1, - anon_sym_DOT_DOT2, STATE(4183), 1, sym_comment, - ACTIONS(7774), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120616] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7589), 1, + ACTIONS(7887), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(7591), 1, - sym__entry_separator, + [121841] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4184), 1, sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - [120635] = 5, + ACTIONS(7887), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121854] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7776), 1, - anon_sym_LBRACE, - STATE(3282), 1, - sym__blosure, STATE(4185), 1, sym_comment, - STATE(3281), 2, - sym_block, - sym_val_closure, - [120652] = 5, + ACTIONS(7889), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121867] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - anon_sym_LBRACE, - ACTIONS(7778), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7891), 1, anon_sym_DOT_DOT2, STATE(4186), 1, sym_comment, - ACTIONS(7780), 2, + ACTIONS(7893), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120669] = 3, + [121884] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4187), 1, sym_comment, - ACTIONS(7337), 4, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - anon_sym_AT, - [120682] = 5, + ACTIONS(7895), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121897] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7307), 1, - anon_sym_RPAREN, STATE(4188), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, + ACTIONS(7895), 4, sym__newline, anon_sym_SEMI, - [120699] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121910] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(7782), 1, - anon_sym_EQ, - ACTIONS(7784), 1, - anon_sym_COLON, - STATE(3306), 1, - aux_sym__repeat_newline, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(7609), 1, + anon_sym_RBRACE, + ACTIONS(7611), 1, + sym__entry_separator, STATE(4189), 1, sym_comment, - [120718] = 5, - ACTIONS(103), 1, + STATE(4661), 1, + sym__expr_parenthesized_immediate, + [121929] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2238), 1, - aux_sym__types_body_repeat2, + ACTIONS(7897), 1, + anon_sym_RBRACK, + STATE(3421), 1, + aux_sym_parameter_repeat2, STATE(4190), 1, sym_comment, - ACTIONS(7786), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [120735] = 5, + ACTIONS(1474), 2, + sym__newline, + anon_sym_COMMA, + [121946] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7205), 1, sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, STATE(4191), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120752] = 5, + ACTIONS(7342), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [121963] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2533), 1, sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, + ACTIONS(2535), 1, + anon_sym_RBRACK, STATE(4192), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120769] = 3, - ACTIONS(3), 1, + [121982] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2013), 1, + anon_sym_RBRACK, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_list, STATE(4193), 1, sym_comment, - ACTIONS(6955), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120782] = 5, + [122001] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(6599), 1, + anon_sym_LPAREN2, + ACTIONS(7899), 1, + anon_sym_RBRACK, + ACTIONS(7901), 1, sym__entry_separator, - STATE(2231), 1, - aux_sym__types_body_repeat2, STATE(4194), 1, sym_comment, - ACTIONS(7786), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [120799] = 4, - ACTIONS(103), 1, + STATE(5017), 1, + sym__expr_parenthesized_immediate, + [122020] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7788), 1, - anon_sym_LPAREN, + ACTIONS(3044), 1, + ts_builtin_sym_end, + STATE(1367), 1, + aux_sym__block_body_repeat1, STATE(4195), 1, sym_comment, - ACTIONS(7790), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [120814] = 6, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [122037] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7794), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4196), 1, + ACTIONS(3428), 1, + anon_sym_COLON2, + ACTIONS(7903), 2, + sym__newline, + sym__space, + STATE(4196), 2, sym_comment, - [120833] = 4, - ACTIONS(103), 1, + aux_sym_pipe_element_parenthesized_repeat1, + [122052] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2505), 1, - sym__entry_separator, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3028), 1, + sym_block, STATE(4197), 1, sym_comment, - ACTIONS(2507), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120848] = 5, - ACTIONS(103), 1, + STATE(4232), 1, + aux_sym__repeat_newline, + [122071] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7798), 1, - sym__space, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3029), 1, + sym_block, STATE(4198), 1, sym_comment, - STATE(4215), 1, - aux_sym_attribute_repeat1, - ACTIONS(7796), 2, - sym__newline, - anon_sym_SEMI, - [120865] = 4, + [122090] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(7852), 1, + anon_sym_LBRACK, + ACTIONS(7906), 1, + anon_sym_RBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, STATE(4199), 1, sym_comment, - ACTIONS(7800), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [120880] = 6, - ACTIONS(103), 1, + [122109] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2523), 1, - sym__entry_separator, - ACTIONS(2525), 1, - anon_sym_RBRACE, - ACTIONS(2629), 1, - anon_sym_LPAREN2, + ACTIONS(7908), 1, + anon_sym_LBRACK, + ACTIONS(7910), 1, + anon_sym_LPAREN, + STATE(3961), 1, + sym_parameter_bracks, + STATE(4070), 1, + sym_parameter_parens, STATE(4200), 1, sym_comment, - [120899] = 3, + [122128] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7908), 1, + anon_sym_LBRACK, + ACTIONS(7910), 1, + anon_sym_LPAREN, + STATE(4023), 1, + sym_parameter_parens, + STATE(4032), 1, + sym_parameter_bracks, STATE(4201), 1, sym_comment, - ACTIONS(7804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120912] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4202), 1, - sym_comment, - ACTIONS(7804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120925] = 6, + [122147] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, + ACTIONS(6599), 1, anon_sym_LPAREN2, - ACTIONS(7438), 1, + ACTIONS(7912), 1, anon_sym_RBRACK, - ACTIONS(7440), 1, + ACTIONS(7914), 1, sym__entry_separator, - STATE(4203), 1, + STATE(4202), 1, sym_comment, - STATE(4751), 1, + STATE(5017), 1, sym__expr_parenthesized_immediate, - [120944] = 3, + [122166] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(7916), 1, + anon_sym_DOT_DOT2, + STATE(4203), 1, + sym_comment, + ACTIONS(7918), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122183] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3056), 1, + sym_block, STATE(4204), 1, sym_comment, - ACTIONS(7806), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120957] = 4, + [122202] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7808), 1, + ACTIONS(7920), 1, anon_sym_LPAREN, STATE(4205), 1, sym_comment, - ACTIONS(7810), 3, + ACTIONS(7922), 3, sym_escaped_interpolated_content, anon_sym_DQUOTE2, sym_inter_escape_sequence, - [120972] = 4, - ACTIONS(103), 1, + [122217] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4206), 1, sym_comment, - ACTIONS(6093), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6095), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [120987] = 5, + ACTIONS(7924), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122230] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - anon_sym_LBRACE, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, STATE(4207), 1, sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121004] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2569), 1, + ACTIONS(7926), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, + [122243] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4208), 1, sym_comment, - [121023] = 4, - ACTIONS(103), 1, + ACTIONS(7926), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122256] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4209), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, + ACTIONS(7928), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121038] = 4, - ACTIONS(103), 1, + [122269] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4210), 1, sym_comment, - ACTIONS(6107), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6109), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [121053] = 3, + ACTIONS(7928), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122282] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4211), 1, sym_comment, - ACTIONS(4060), 4, - ts_builtin_sym_end, + ACTIONS(7930), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [121066] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122295] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4212), 1, sym_comment, - ACTIONS(7816), 4, + ACTIONS(4082), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121079] = 3, - ACTIONS(3), 1, + anon_sym_LBRACE, + [122308] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4213), 1, sym_comment, - ACTIONS(7026), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121092] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(2385), 2, + anon_sym_LPAREN2, sym__entry_separator, - STATE(4214), 1, - sym_comment, - ACTIONS(2593), 3, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(2387), 2, anon_sym_RBRACE, - [121107] = 4, - ACTIONS(103), 1, + sym__unquoted_pattern_in_record, + [122323] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7818), 1, - sym__space, - ACTIONS(5708), 2, + STATE(4214), 1, + sym_comment, + ACTIONS(4084), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(4215), 2, + anon_sym_LBRACE, + [122336] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4215), 1, sym_comment, - aux_sym_attribute_repeat1, - [121122] = 6, + ACTIONS(7932), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122349] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7821), 1, - anon_sym_RBRACK, - ACTIONS(7823), 1, + ACTIONS(1604), 1, + anon_sym_RBRACE, + ACTIONS(1706), 1, sym__entry_separator, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_record, STATE(4216), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121141] = 3, + [122368] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4217), 1, sym_comment, - ACTIONS(7825), 4, - anon_sym_if, + ACTIONS(7932), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121154] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4218), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121169] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(4219), 1, - sym_comment, - ACTIONS(2501), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [121184] = 3, + [122381] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4220), 1, + STATE(4218), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(7934), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121197] = 4, + [122394] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4221), 1, - sym_comment, - ACTIONS(1870), 2, + ACTIONS(6599), 1, anon_sym_LPAREN2, + ACTIONS(7936), 1, + anon_sym_RBRACK, + ACTIONS(7938), 1, sym__entry_separator, - ACTIONS(1872), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121212] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACE, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, - STATE(4222), 1, - sym_comment, - [121231] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6902), 1, - sym__unquoted_pattern, - STATE(4223), 1, + STATE(4219), 1, sym_comment, - ACTIONS(968), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [121246] = 3, + STATE(5017), 1, + sym__expr_parenthesized_immediate, + [122413] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4224), 1, + STATE(4220), 1, sym_comment, - ACTIONS(7829), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121259] = 3, + ACTIONS(7934), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122426] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4225), 1, + STATE(4221), 1, sym_comment, - ACTIONS(7831), 4, + ACTIONS(7926), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121272] = 3, + [122439] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4226), 1, + STATE(4222), 1, sym_comment, - ACTIONS(7833), 4, + ACTIONS(7926), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121285] = 3, + [122452] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4227), 1, + STATE(4223), 1, sym_comment, - ACTIONS(7835), 4, + ACTIONS(7940), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121298] = 3, + [122465] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4228), 1, + STATE(4224), 1, sym_comment, - ACTIONS(7837), 4, + ACTIONS(7942), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121311] = 6, + [122478] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2523), 1, + ACTIONS(2465), 1, + sym__entry_separator, + STATE(4225), 1, + sym_comment, + ACTIONS(2467), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122493] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2001), 1, sym__entry_separator, + ACTIONS(2003), 1, + anon_sym_RBRACE, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(4226), 1, + sym_comment, + [122512] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, ACTIONS(2525), 1, + sym__entry_separator, + ACTIONS(2527), 1, + anon_sym_RBRACK, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(4227), 1, + sym_comment, + [122531] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(7852), 1, + anon_sym_LBRACK, + ACTIONS(7944), 1, anon_sym_RBRACK, - ACTIONS(2629), 1, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(4228), 1, + sym_comment, + [122550] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2015), 1, anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2533), 1, + sym__entry_separator, + ACTIONS(2535), 1, + anon_sym_RBRACE, STATE(4229), 1, sym_comment, - [121330] = 3, + [122569] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(2975), 1, + sym_block, STATE(4230), 1, sym_comment, - ACTIONS(6959), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121343] = 3, - ACTIONS(3), 1, + STATE(4310), 1, + aux_sym__repeat_newline, + [122588] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2013), 1, + anon_sym_RBRACE, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_record, STATE(4231), 1, sym_comment, - ACTIONS(7839), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121356] = 5, + [122607] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, - ACTIONS(7841), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2976), 1, + sym_block, STATE(4232), 1, sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121373] = 3, - ACTIONS(3), 1, + [122626] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2525), 1, + sym__entry_separator, + ACTIONS(2527), 1, + anon_sym_RBRACE, + ACTIONS(2581), 1, + anon_sym_LPAREN2, STATE(4233), 1, sym_comment, - ACTIONS(4062), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [121386] = 4, + [122645] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2583), 1, sym__entry_separator, + ACTIONS(2585), 1, + anon_sym_RBRACE, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern_in_record, STATE(4234), 1, sym_comment, - ACTIONS(2154), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121401] = 6, - ACTIONS(103), 1, + [122664] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7843), 1, - anon_sym_RBRACE, - STATE(1468), 1, - aux_sym__types_body_repeat2, + ACTIONS(2387), 1, + sym__unquoted_pattern, STATE(4235), 1, sym_comment, - [121420] = 6, + ACTIONS(2385), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [122679] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(2591), 1, sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7845), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, + ACTIONS(2593), 1, + anon_sym_RBRACE, + ACTIONS(2595), 1, + anon_sym_LPAREN2, + ACTIONS(2597), 1, + sym__unquoted_pattern_in_record, STATE(4236), 1, sym_comment, - [121439] = 3, - ACTIONS(3), 1, + [122698] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2469), 1, + sym__entry_separator, STATE(4237), 1, sym_comment, - ACTIONS(7847), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2471), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [121452] = 6, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + [122713] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7849), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, + ACTIONS(6980), 1, + sym__unquoted_pattern, STATE(4238), 1, sym_comment, - [121471] = 6, - ACTIONS(103), 1, + ACTIONS(908), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [122728] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7851), 1, - anon_sym_COLON, - ACTIONS(7853), 1, - anon_sym_GT2, - ACTIONS(7855), 1, - sym__entry_separator, STATE(4239), 1, sym_comment, - STATE(4709), 1, - sym__collection_annotation, - [121490] = 3, + ACTIONS(7946), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122741] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4240), 1, sym_comment, - ACTIONS(7847), 4, + ACTIONS(7946), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121503] = 3, + [122754] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4241), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(7948), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121516] = 3, + [122767] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4242), 1, sym_comment, - ACTIONS(7034), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121529] = 3, + ACTIONS(7948), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122780] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4243), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(7950), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121542] = 3, + [122793] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4244), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(7950), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121555] = 4, - ACTIONS(103), 1, + [122806] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4245), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [121570] = 3, + ACTIONS(4088), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [122819] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4246), 1, sym_comment, - ACTIONS(6894), 4, + ACTIONS(4090), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [121583] = 6, + [122832] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7857), 1, - anon_sym_RBRACK, - ACTIONS(7859), 1, + ACTIONS(1002), 1, + anon_sym_RBRACE, + ACTIONS(1018), 1, sym__entry_separator, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_record, STATE(4247), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121602] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4248), 1, - sym_comment, - ACTIONS(6922), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [121615] = 6, + [122851] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, anon_sym_RBRACE, - ACTIONS(2583), 1, + ACTIONS(1004), 1, + sym__entry_separator, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2604), 1, sym__unquoted_pattern_in_record, - STATE(4249), 1, + STATE(4248), 1, sym_comment, - [121634] = 3, + [122870] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4250), 1, + STATE(4249), 1, sym_comment, - ACTIONS(7861), 4, + ACTIONS(7952), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121647] = 3, + [122883] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4251), 1, + STATE(4250), 1, sym_comment, - ACTIONS(7863), 4, + ACTIONS(7952), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121660] = 3, + [122896] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2473), 1, + sym__entry_separator, + STATE(4251), 1, + sym_comment, + ACTIONS(2475), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122911] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7367), 1, + anon_sym_RPAREN, STATE(4252), 1, sym_comment, - ACTIONS(7865), 4, + STATE(4272), 1, + aux_sym__block_body_repeat1, + ACTIONS(7801), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121673] = 6, + [122928] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(1018), 1, + ACTIONS(2477), 1, sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, STATE(4253), 1, sym_comment, - [121692] = 3, - ACTIONS(3), 1, + ACTIONS(2479), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122943] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2481), 1, + sym__entry_separator, STATE(4254), 1, sym_comment, - ACTIONS(7002), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121705] = 5, - ACTIONS(3), 1, + ACTIONS(2483), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122958] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, - ACTIONS(7867), 1, - anon_sym_LBRACE, + ACTIONS(2485), 1, + sym__entry_separator, STATE(4255), 1, sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121722] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7633), 1, + ACTIONS(2487), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7635), 1, - sym__entry_separator, + anon_sym_DOT_DOT, + [122973] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4256), 1, sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - [121741] = 3, + ACTIONS(7954), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122986] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4257), 1, sym_comment, - ACTIONS(7869), 4, + ACTIONS(7946), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121754] = 5, + [122999] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7871), 1, - anon_sym_DQUOTE, - STATE(4089), 1, - aux_sym_string_content_repeat1, + ACTIONS(2489), 1, + sym__entry_separator, STATE(4258), 1, sym_comment, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [121771] = 3, - ACTIONS(3), 1, + ACTIONS(2491), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123014] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2493), 1, + sym__entry_separator, STATE(4259), 1, sym_comment, - ACTIONS(7873), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2495), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [121784] = 6, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + [123029] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7875), 1, - anon_sym_RBRACK, - ACTIONS(7877), 1, - sym__entry_separator, STATE(4260), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121803] = 5, + ACTIONS(5100), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [123042] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7879), 1, - anon_sym_RBRACK, - STATE(3371), 1, - aux_sym_parameter_repeat2, STATE(4261), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(7946), 4, sym__newline, - anon_sym_COMMA, - [121820] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123055] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACK, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_list, STATE(4262), 1, sym_comment, - [121839] = 6, - ACTIONS(103), 1, + ACTIONS(7948), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123068] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_RBRACK, - ACTIONS(1706), 1, - sym__entry_separator, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, STATE(4263), 1, sym_comment, - [121858] = 5, + ACTIONS(7948), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123081] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(6599), 1, + anon_sym_LPAREN2, + ACTIONS(7956), 1, + anon_sym_RBRACK, + ACTIONS(7958), 1, sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, STATE(4264), 1, sym_comment, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [121875] = 3, + STATE(5017), 1, + sym__expr_parenthesized_immediate, + [123100] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4265), 1, sym_comment, - ACTIONS(7751), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121888] = 3, + ACTIONS(7960), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123113] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2583), 1, + sym__entry_separator, + ACTIONS(2585), 1, + anon_sym_RBRACK, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern_in_list, STATE(4266), 1, sym_comment, - ACTIONS(1520), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [121901] = 6, + [123132] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3028), 1, - sym_block, STATE(4267), 1, sym_comment, - [121920] = 3, + ACTIONS(7950), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123145] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4268), 1, sym_comment, - ACTIONS(4376), 4, + ACTIONS(7950), 4, sym__newline, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT, - [121933] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123158] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + STATE(3868), 1, + sym_parameter_parens, + STATE(3869), 1, + sym_parameter_bracks, STATE(4269), 1, sym_comment, - ACTIONS(7881), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121946] = 3, + [123177] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4270), 1, sym_comment, - ACTIONS(7883), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121959] = 6, + ACTIONS(7114), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123190] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, + ACTIONS(1706), 1, anon_sym_LBRACE, - STATE(3069), 1, - sym_block, - STATE(4267), 1, - aux_sym__repeat_newline, + ACTIONS(7962), 1, + anon_sym_DOT_DOT2, STATE(4271), 1, sym_comment, - [121978] = 6, + ACTIONS(7964), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123207] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3048), 1, + anon_sym_RPAREN, + ACTIONS(7966), 2, sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3071), 1, - sym_block, - STATE(4272), 1, - sym_comment, - [121997] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - STATE(3768), 1, - sym_parameter_parens, - STATE(3769), 1, - sym_parameter_bracks, - STATE(4273), 1, + anon_sym_SEMI, + STATE(4272), 2, sym_comment, - [122016] = 3, + aux_sym__block_body_repeat1, + [123222] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4274), 1, + ACTIONS(1535), 1, + sym__entry_separator, + STATE(4273), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1533), 3, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, + anon_sym_DOT_DOT, anon_sym_DOT2, - [122029] = 6, - ACTIONS(103), 1, + [123237] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym__entry_separator, - ACTIONS(5806), 1, + STATE(4274), 1, + sym_comment, + ACTIONS(7969), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, + [123250] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4275), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [122048] = 3, + ACTIONS(7969), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123263] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2622), 1, + sym__unquoted_pattern, STATE(4276), 1, sym_comment, - ACTIONS(5241), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [122061] = 6, - ACTIONS(103), 1, + ACTIONS(1706), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [123278] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5808), 1, - sym__entry_separator, - ACTIONS(5810), 1, - anon_sym_RBRACE, STATE(4277), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [122080] = 5, - ACTIONS(103), 1, + ACTIONS(7971), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123291] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7798), 1, - sym__space, - STATE(4198), 1, - aux_sym_attribute_repeat1, STATE(4278), 1, sym_comment, - ACTIONS(7885), 2, + ACTIONS(7971), 4, sym__newline, anon_sym_SEMI, - [122097] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123304] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - STATE(3753), 1, - sym_parameter_parens, - STATE(3754), 1, - sym_parameter_bracks, STATE(4279), 1, sym_comment, - [122116] = 6, + ACTIONS(7973), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123317] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3040), 1, - sym_block, - STATE(4272), 1, - aux_sym__repeat_newline, STATE(4280), 1, sym_comment, - [122135] = 3, - ACTIONS(3), 1, + ACTIONS(7973), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123330] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2441), 1, + sym__entry_separator, STATE(4281), 1, sym_comment, - ACTIONS(6115), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT2, - anon_sym_LBRACE, - [122148] = 4, + ACTIONS(2443), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123345] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3077), 1, - anon_sym_RPAREN, - ACTIONS(7887), 2, + STATE(4282), 1, + sym_comment, + ACTIONS(7975), 4, sym__newline, anon_sym_SEMI, - STATE(4282), 2, - sym_comment, - aux_sym__block_body_repeat1, - [122163] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123358] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4283), 1, sym_comment, - ACTIONS(7890), 4, + ACTIONS(7069), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122176] = 4, - ACTIONS(103), 1, + [123371] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2021), 1, + sym__unquoted_pattern, STATE(4284), 1, sym_comment, - ACTIONS(7892), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7894), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [122191] = 3, + ACTIONS(2533), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123386] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4285), 1, sym_comment, - ACTIONS(7896), 4, - anon_sym_if, + ACTIONS(7975), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123399] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, + STATE(4286), 1, + sym_comment, + ACTIONS(2525), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122204] = 6, + [123414] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2066), 1, sym__entry_separator, - ACTIONS(2569), 1, - anon_sym_RBRACK, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_list, - STATE(4286), 1, - sym_comment, - [122223] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4287), 1, sym_comment, - ACTIONS(7898), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122236] = 3, - ACTIONS(3), 1, + ACTIONS(2068), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123429] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2074), 1, + sym__entry_separator, STATE(4288), 1, sym_comment, - ACTIONS(7900), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122249] = 3, + ACTIONS(2076), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123444] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4289), 1, sym_comment, - ACTIONS(7902), 4, + ACTIONS(5118), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122262] = 5, - ACTIONS(103), 1, + anon_sym_LBRACE, + [123457] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2234), 1, - aux_sym__types_body_repeat2, STATE(4290), 1, sym_comment, - ACTIONS(7315), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122279] = 4, + ACTIONS(7038), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123470] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4291), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(7977), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7979), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [122294] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(4292), 1, - sym_comment, - ACTIONS(7906), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [122309] = 3, + [123485] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4293), 1, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(4292), 1, sym_comment, - ACTIONS(7908), 4, - anon_sym_if, + ACTIONS(2583), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122322] = 3, + [123500] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2082), 1, + sym__entry_separator, + STATE(4293), 1, + sym_comment, + ACTIONS(2084), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123515] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4294), 1, sym_comment, - ACTIONS(7910), 4, + ACTIONS(7971), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122335] = 5, - ACTIONS(103), 1, + [123528] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2235), 1, - aux_sym__types_body_repeat2, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + STATE(3786), 1, + sym_parameter_bracks, + STATE(3796), 1, + sym_parameter_parens, STATE(4295), 1, sym_comment, - ACTIONS(7912), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122352] = 5, - ACTIONS(103), 1, + [123547] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2236), 1, - aux_sym__types_body_repeat2, STATE(4296), 1, sym_comment, - ACTIONS(7912), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122369] = 3, + ACTIONS(7981), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123560] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4297), 1, sym_comment, - ACTIONS(7914), 4, - anon_sym_if, + ACTIONS(7971), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122382] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7916), 1, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1480), 1, - aux_sym__types_body_repeat2, + [123573] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7908), 1, + anon_sym_LBRACK, + ACTIONS(7910), 1, + anon_sym_LPAREN, + STATE(3946), 1, + sym_parameter_parens, + STATE(3947), 1, + sym_parameter_bracks, STATE(4298), 1, sym_comment, - [122401] = 3, + [123592] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(3245), 1, + sym__blosure, STATE(4299), 1, sym_comment, - ACTIONS(7204), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122414] = 6, - ACTIONS(103), 1, + STATE(3224), 2, + sym_block, + sym_val_closure, + [123609] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7918), 1, - anon_sym_RBRACE, - STATE(1484), 1, - aux_sym__types_body_repeat2, STATE(4300), 1, sym_comment, - [122433] = 4, + ACTIONS(5122), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [123622] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, STATE(4301), 1, sym_comment, - ACTIONS(1706), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [122448] = 3, + ACTIONS(7034), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123635] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4302), 1, sym_comment, - ACTIONS(7920), 4, - anon_sym_if, + ACTIONS(7083), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123648] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(4303), 1, + sym_comment, + ACTIONS(2011), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122461] = 4, - ACTIONS(103), 1, + [123663] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4303), 1, + STATE(4304), 1, sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1872), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [122476] = 3, + ACTIONS(7983), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123676] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4304), 1, + STATE(4305), 1, sym_comment, - ACTIONS(7922), 4, + ACTIONS(7985), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122489] = 5, + [123689] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3114), 1, - sym__blosure, - STATE(4305), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [122506] = 4, - ACTIONS(103), 1, - anon_sym_POUND, STATE(4306), 1, sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5924), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [122521] = 3, + ACTIONS(7987), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123702] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4307), 1, sym_comment, - ACTIONS(7924), 4, + ACTIONS(7989), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122534] = 5, - ACTIONS(103), 1, + [123715] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5328), 1, - anon_sym_COLON2, STATE(4308), 1, sym_comment, - STATE(4319), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5322), 2, - sym__newline, - sym__space, - [122551] = 3, + ACTIONS(7050), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123728] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4309), 1, sym_comment, - ACTIONS(7210), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122564] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4310), 1, - sym_comment, - ACTIONS(1726), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122579] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4311), 1, - sym_comment, - ACTIONS(7926), 4, + ACTIONS(7991), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122592] = 6, + [123741] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3041), 1, + STATE(3025), 1, sym_block, - STATE(4312), 1, + STATE(4310), 1, sym_comment, - [122611] = 3, + [123760] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4313), 1, + STATE(4311), 1, sym_comment, - ACTIONS(7928), 4, + ACTIONS(7993), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122624] = 4, + [123773] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4314), 1, + STATE(4312), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122639] = 3, + ACTIONS(7995), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123786] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4315), 1, + STATE(4313), 1, sym_comment, - ACTIONS(7930), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122652] = 3, + ACTIONS(7997), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123799] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4316), 1, + STATE(4314), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(7997), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122665] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123812] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + sym__entry_separator, + STATE(2238), 1, + aux_sym__types_body_repeat2, + STATE(4315), 1, + sym_comment, + ACTIONS(7999), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [123829] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4317), 1, + ACTIONS(7962), 1, + anon_sym_DOT_DOT2, + ACTIONS(8001), 1, + anon_sym_LBRACE, + STATE(4316), 1, sym_comment, - ACTIONS(1870), 2, + ACTIONS(7964), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122680] = 4, + [123846] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4317), 1, + sym_comment, + ACTIONS(6228), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT2, + anon_sym_LBRACE, + [123859] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1558), 1, + ACTIONS(4816), 1, sym__entry_separator, + STATE(2246), 1, + aux_sym__types_body_repeat2, STATE(4318), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(7999), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - [122695] = 5, - ACTIONS(103), 1, + [123876] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7932), 1, - anon_sym_COLON2, - STATE(4181), 1, - aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(8003), 1, + anon_sym_RPAREN, + STATE(4272), 1, + aux_sym__block_body_repeat1, STATE(4319), 1, sym_comment, - ACTIONS(5322), 2, + ACTIONS(7801), 2, sym__newline, - sym__space, - [122712] = 3, + anon_sym_SEMI, + [123893] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2622), 1, + sym__unquoted_pattern, STATE(4320), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(7205), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122725] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123908] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8005), 1, + anon_sym_DQUOTE, + STATE(4165), 1, + aux_sym_string_content_repeat1, STATE(4321), 1, sym_comment, - ACTIONS(7804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122738] = 3, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [123925] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4322), 1, sym_comment, - ACTIONS(7804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122751] = 5, + ACTIONS(7075), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123938] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7934), 1, + ACTIONS(7962), 1, anon_sym_DOT_DOT2, + ACTIONS(8007), 1, + anon_sym_LBRACE, STATE(4323), 1, sym_comment, - ACTIONS(7936), 2, + ACTIONS(7964), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [122768] = 3, + [123955] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4324), 1, sym_comment, - ACTIONS(7938), 4, + ACTIONS(7973), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122781] = 3, + [123968] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4325), 1, sym_comment, - ACTIONS(7940), 4, + ACTIONS(7973), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122794] = 3, + [123981] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7439), 1, + sym__newline, + ACTIONS(7441), 1, + anon_sym_PIPE, + ACTIONS(8009), 1, + anon_sym_EQ_GT, + STATE(4151), 1, + aux_sym_match_pattern_repeat1, STATE(4326), 1, sym_comment, - ACTIONS(7942), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122807] = 3, + [124000] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4327), 1, sym_comment, - ACTIONS(7944), 4, + ACTIONS(7016), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122820] = 3, + anon_sym_LBRACE, + [124013] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4328), 1, sym_comment, - ACTIONS(7946), 4, + ACTIONS(6970), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122833] = 3, + anon_sym_LBRACE, + [124026] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4329), 1, sym_comment, - ACTIONS(7948), 4, + ACTIONS(7975), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122846] = 3, + [124039] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4330), 1, sym_comment, - ACTIONS(7938), 4, + ACTIONS(7975), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122859] = 3, + [124052] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2597), 1, + sym__unquoted_pattern, STATE(4331), 1, sym_comment, - ACTIONS(7950), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122872] = 3, + ACTIONS(2591), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124067] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4332), 1, sym_comment, - ACTIONS(4078), 4, - ts_builtin_sym_end, + ACTIONS(8011), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [122885] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124080] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4333), 1, sym_comment, - ACTIONS(4080), 4, - ts_builtin_sym_end, + ACTIONS(8013), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [122898] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124093] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1724), 1, + sym__unquoted_pattern, STATE(4334), 1, sym_comment, - ACTIONS(7952), 4, + ACTIONS(908), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122911] = 4, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124108] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__entry_separator, STATE(4335), 1, sym_comment, - ACTIONS(1868), 3, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(8015), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [122926] = 3, + [124121] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4336), 1, sym_comment, - ACTIONS(7954), 4, + ACTIONS(8017), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122939] = 3, + [124134] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4337), 1, sym_comment, - ACTIONS(7956), 4, + ACTIONS(8017), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122952] = 3, + [124147] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4338), 1, sym_comment, - ACTIONS(7958), 4, + ACTIONS(8019), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122965] = 3, + [124160] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4339), 1, sym_comment, - ACTIONS(7960), 4, - anon_sym_if, + ACTIONS(8019), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122978] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124173] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5494), 1, + anon_sym_COLON2, STATE(4340), 1, sym_comment, - ACTIONS(7954), 4, + STATE(4369), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5488), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122991] = 3, + sym__space, + [124190] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4341), 1, sym_comment, - ACTIONS(7952), 4, + ACTIONS(8019), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123004] = 4, + [124203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, STATE(4342), 1, sym_comment, - ACTIONS(1726), 3, + ACTIONS(8019), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123019] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124216] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4343), 1, sym_comment, - ACTIONS(6936), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [123032] = 5, + ACTIONS(8021), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124229] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7962), 1, + ACTIONS(2387), 1, + sym__unquoted_pattern, + STATE(4344), 1, + sym_comment, + ACTIONS(2385), 3, sym__newline, - ACTIONS(7965), 1, anon_sym_PIPE, - ACTIONS(7968), 1, anon_sym_EQ_GT, - STATE(4344), 2, - sym_comment, - aux_sym_match_pattern_repeat1, - [123049] = 3, + [124244] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4345), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(8021), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123062] = 3, + [124257] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4346), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(8023), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123075] = 3, + [124270] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4347), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(8023), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123088] = 3, + [124283] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4348), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(8025), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123101] = 4, + [124296] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, STATE(4349), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(8025), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123116] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124309] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACK, - ACTIONS(1968), 1, - anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4350), 1, sym_comment, - [123135] = 3, + ACTIONS(1018), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124324] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4351), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(1004), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124339] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4352), 1, + sym_comment, + ACTIONS(8027), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123148] = 6, + [124352] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, + ACTIONS(8029), 1, anon_sym_LBRACE, - STATE(3214), 1, - sym_block, - STATE(4352), 1, + STATE(3273), 1, + sym__blosure, + STATE(4353), 1, sym_comment, - STATE(4356), 1, - aux_sym__repeat_newline, - [123167] = 4, + STATE(3389), 2, + sym_block, + sym_val_closure, + [124369] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(4353), 1, + STATE(4354), 1, sym_comment, - ACTIONS(1870), 3, + ACTIONS(8031), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123182] = 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124382] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(908), 1, sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACK, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, - STATE(4354), 1, - sym_comment, - [123201] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3317), 1, - sym_block, STATE(4355), 1, sym_comment, - STATE(4358), 1, - aux_sym__repeat_newline, - [123220] = 6, + ACTIONS(866), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124397] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3318), 1, - sym_block, STATE(4356), 1, sym_comment, - [123239] = 6, + ACTIONS(8033), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124410] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACK, - ACTIONS(1018), 1, + ACTIONS(2591), 1, sym__entry_separator, - ACTIONS(2583), 1, + ACTIONS(2593), 1, + anon_sym_RBRACK, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2597), 1, sym__unquoted_pattern_in_list, STATE(4357), 1, sym_comment, - [123258] = 6, - ACTIONS(3), 1, + [124429] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3320), 1, - sym_block, + ACTIONS(2126), 1, + sym__entry_separator, STATE(4358), 1, sym_comment, - [123277] = 6, + ACTIONS(2128), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124444] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7972), 1, + ACTIONS(1604), 1, anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, + ACTIONS(1706), 1, + sym__entry_separator, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_list, STATE(4359), 1, sym_comment, - [123296] = 6, - ACTIONS(3), 1, + [124463] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3183), 1, - sym_block, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(1614), 1, + anon_sym_COLON2, + ACTIONS(8035), 1, + anon_sym_RBRACE, + STATE(1461), 1, + aux_sym__types_body_repeat2, STATE(4360), 1, sym_comment, - STATE(4362), 1, - aux_sym__repeat_newline, - [123315] = 6, - ACTIONS(3), 1, + [124482] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3184), 1, - sym_block, + ACTIONS(908), 1, + sym__entry_separator, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, STATE(4361), 1, sym_comment, - STATE(4363), 1, - aux_sym__repeat_newline, - [123334] = 6, + ACTIONS(866), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124499] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3185), 1, - sym_block, STATE(4362), 1, sym_comment, - [123353] = 6, + ACTIONS(4373), 4, + sym__newline, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT, + [124512] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3187), 1, - sym_block, STATE(4363), 1, sym_comment, - [123372] = 3, + ACTIONS(5134), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [124525] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1738), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__unquoted_pattern, + ACTIONS(8037), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8039), 1, + aux_sym__immediate_decimal_token5, STATE(4364), 1, sym_comment, - ACTIONS(7974), 4, - anon_sym_EQ, - anon_sym_in, - sym__newline, - anon_sym_COLON, - [123385] = 5, + [124544] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(7640), 1, + anon_sym_RBRACE, + ACTIONS(7642), 1, sym__entry_separator, - STATE(2232), 1, - aux_sym__types_body_repeat2, STATE(4365), 1, sym_comment, - ACTIONS(7448), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [123402] = 3, + STATE(4661), 1, + sym__expr_parenthesized_immediate, + [124563] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(461), 1, + ts_builtin_sym_end, + STATE(1372), 1, + aux_sym__block_body_repeat1, STATE(4366), 1, sym_comment, - ACTIONS(7032), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [123415] = 5, - ACTIONS(103), 1, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [124580] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, + ACTIONS(1494), 1, + sym__table_head_separator, + ACTIONS(7701), 1, + anon_sym_DOT2, STATE(4367), 1, sym_comment, - [123431] = 3, - ACTIONS(103), 1, + STATE(4375), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4745), 1, + sym_path, + [124599] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4368), 1, sym_comment, - ACTIONS(1860), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [123443] = 3, - ACTIONS(3), 1, + ACTIONS(8041), 4, + anon_sym_EQ, + anon_sym_in, + sym__newline, + anon_sym_COLON, + [124612] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8043), 1, + anon_sym_COLON2, + STATE(4196), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(4369), 1, sym_comment, - ACTIONS(7976), 3, + ACTIONS(5488), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123455] = 3, + sym__space, + [124629] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4370), 1, sym_comment, - ACTIONS(7978), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123467] = 3, - ACTIONS(3), 1, + ACTIONS(8045), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124642] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2389), 1, + sym__entry_separator, STATE(4371), 1, sym_comment, - ACTIONS(7980), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123479] = 3, + ACTIONS(2391), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124657] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4372), 1, sym_comment, - ACTIONS(7982), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123491] = 5, + ACTIONS(8047), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7984), 1, - anon_sym_export, - ACTIONS(7986), 1, - anon_sym_def, - ACTIONS(7988), 1, - anon_sym_extern, STATE(4373), 1, sym_comment, - [123507] = 5, - ACTIONS(103), 1, + ACTIONS(8049), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124683] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(7990), 1, - anon_sym_RBRACK, - STATE(2110), 1, - aux_sym__types_body_repeat2, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + STATE(3809), 1, + sym_parameter_parens, + STATE(3810), 1, + sym_parameter_bracks, STATE(4374), 1, sym_comment, - [123523] = 4, + [124702] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7992), 1, - anon_sym_BANG, - STATE(4375), 1, - sym_comment, - ACTIONS(1440), 2, + ACTIONS(1498), 1, sym__table_head_separator, + ACTIONS(8051), 1, anon_sym_DOT2, - [123537] = 3, - ACTIONS(3), 1, + STATE(4745), 1, + sym_path, + STATE(4375), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + [124719] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8054), 1, + anon_sym_LPAREN, STATE(4376), 1, sym_comment, - ACTIONS(7690), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123549] = 4, + ACTIONS(8056), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [124734] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2563), 1, + ACTIONS(2134), 1, sym__entry_separator, STATE(4377), 1, sym_comment, - ACTIONS(2565), 2, + ACTIONS(2136), 3, anon_sym_RBRACK, anon_sym_RBRACE, - [123563] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7994), 1, - anon_sym_RBRACK, - ACTIONS(7996), 1, anon_sym_DOT_DOT, + [124749] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1531), 1, + sym__entry_separator, STATE(4378), 1, sym_comment, - STATE(4863), 1, - sym__match_pattern_rest, - [123579] = 3, - ACTIONS(3), 1, + ACTIONS(1529), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [124764] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(6109), 1, + sym__entry_separator, + ACTIONS(6111), 1, + anon_sym_RBRACE, STATE(4379), 1, sym_comment, - ACTIONS(7883), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123591] = 4, + STATE(5098), 1, + sym__expr_parenthesized_immediate, + [124783] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2571), 1, + ACTIONS(2445), 1, sym__entry_separator, STATE(4380), 1, sym_comment, - ACTIONS(2573), 2, + ACTIONS(2447), 3, anon_sym_RBRACK, anon_sym_RBRACE, - [123605] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [124798] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7998), 1, - anon_sym_RBRACK, - ACTIONS(8000), 1, - sym_hex_digit, + ACTIONS(8058), 1, + anon_sym_LPAREN, STATE(4381), 1, sym_comment, - STATE(4498), 1, - aux_sym_val_binary_repeat1, - [123621] = 3, - ACTIONS(3), 1, + ACTIONS(8060), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [124813] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(6113), 1, + sym__entry_separator, + ACTIONS(6115), 1, + anon_sym_RBRACE, STATE(4382), 1, sym_comment, - ACTIONS(2092), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123633] = 3, - ACTIONS(3), 1, + STATE(5098), 1, + sym__expr_parenthesized_immediate, + [124832] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8064), 1, + sym__space, + STATE(4138), 1, + aux_sym_attribute_repeat1, STATE(4383), 1, sym_comment, - ACTIONS(7861), 3, - ts_builtin_sym_end, + ACTIONS(8062), 2, sym__newline, anon_sym_SEMI, - [123645] = 3, + [124849] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4384), 1, sym_comment, - ACTIONS(7881), 3, - ts_builtin_sym_end, + ACTIONS(8066), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [123657] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124862] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3075), 1, + ts_builtin_sym_end, + STATE(1369), 1, + aux_sym__block_body_repeat1, STATE(4385), 1, sym_comment, - ACTIONS(7804), 3, - ts_builtin_sym_end, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - [123669] = 5, + [124879] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1515), 1, sym__entry_separator, - ACTIONS(8002), 1, + STATE(4386), 1, + sym_comment, + ACTIONS(1513), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [124894] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1606), 1, anon_sym_RBRACE, - STATE(1464), 1, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(1614), 1, + anon_sym_COLON2, + STATE(1482), 1, aux_sym__types_body_repeat2, - STATE(4386), 1, + STATE(4387), 1, sym_comment, - [123685] = 3, + [124913] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4387), 1, + STATE(4388), 1, sym_comment, - ACTIONS(7690), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123697] = 5, + ACTIONS(7044), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124926] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4816), 1, sym__entry_separator, - ACTIONS(8004), 1, - anon_sym_RBRACE, - STATE(1467), 1, + STATE(2249), 1, aux_sym__types_body_repeat2, - STATE(4388), 1, - sym_comment, - [123713] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4389), 1, sym_comment, - ACTIONS(7863), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123725] = 3, - ACTIONS(3), 1, + ACTIONS(7523), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124943] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8064), 1, + sym__space, + STATE(4383), 1, + aux_sym_attribute_repeat1, STATE(4390), 1, sym_comment, - ACTIONS(7865), 3, - ts_builtin_sym_end, + ACTIONS(8068), 2, sym__newline, anon_sym_SEMI, - [123737] = 5, - ACTIONS(103), 1, + [124960] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3454), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3456), 1, - sym__space, - STATE(1398), 1, - aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3293), 1, + sym_block, STATE(4391), 1, sym_comment, - [123753] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4392), 1, - sym_comment, - ACTIONS(7839), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123765] = 5, + STATE(4395), 1, + aux_sym__repeat_newline, + [124979] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2702), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(3787), 1, anon_sym_LBRACE, + STATE(4352), 1, + sym_block, + STATE(4392), 1, + sym_comment, + [124998] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, STATE(4393), 1, sym_comment, - STATE(4416), 1, - sym_block, - [123781] = 3, + ACTIONS(2001), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125013] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3299), 1, + sym_block, STATE(4394), 1, sym_comment, - ACTIONS(7938), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123793] = 3, + STATE(4396), 1, + aux_sym__repeat_newline, + [125032] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3300), 1, + sym_block, STATE(4395), 1, sym_comment, - ACTIONS(7938), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123805] = 4, + [125051] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1382), 1, - aux_sym__block_body_repeat1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3302), 1, + sym_block, STATE(4396), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - [123819] = 3, + [125070] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3230), 1, + sym_block, STATE(4397), 1, sym_comment, - ACTIONS(7804), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123831] = 4, + STATE(4399), 1, + aux_sym__repeat_newline, + [125089] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7992), 1, - anon_sym_QMARK2, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3232), 1, + sym_block, STATE(4398), 1, sym_comment, - ACTIONS(1440), 2, - sym__table_head_separator, - anon_sym_DOT2, - [123845] = 3, + STATE(4400), 1, + aux_sym__repeat_newline, + [125108] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3233), 1, + sym_block, STATE(4399), 1, sym_comment, - ACTIONS(7902), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123857] = 3, + [125127] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3235), 1, + sym_block, STATE(4400), 1, sym_comment, - ACTIONS(2084), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123869] = 5, - ACTIONS(3), 1, + [125146] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5779), 1, - anon_sym_EQ, - STATE(3239), 1, - sym_param_completer, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(7852), 1, + anon_sym_LBRACK, + ACTIONS(8070), 1, + anon_sym_RBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, STATE(4401), 1, sym_comment, - [123885] = 5, - ACTIONS(3), 1, + [125165] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8006), 1, - anon_sym_GT2, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3056), 1, + sym_block, STATE(4402), 1, sym_comment, - STATE(5004), 1, - sym_param_completer, - [123901] = 3, + [125181] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4403), 1, sym_comment, - ACTIONS(7924), 3, + ACTIONS(7948), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123913] = 5, - ACTIONS(3), 1, + [125193] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3362), 1, - anon_sym_SEMI, - STATE(540), 1, - aux_sym__repeat_newline, + ACTIONS(7920), 1, + anon_sym_LPAREN, STATE(4404), 1, sym_comment, - [123929] = 3, + ACTIONS(7922), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [125207] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(8072), 1, + anon_sym_GT2, STATE(4405), 1, sym_comment, - ACTIONS(8008), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123941] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4406), 1, - sym_comment, - ACTIONS(7833), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123953] = 5, + STATE(4988), 1, + sym_param_completer, + [125223] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4407), 1, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8074), 1, + anon_sym_RBRACK, + STATE(4401), 1, + aux_sym__types_body_repeat2, + STATE(4406), 1, sym_comment, - STATE(4444), 1, - sym_block, - [123969] = 5, + [125239] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5779), 1, - anon_sym_EQ, - STATE(3241), 1, - sym_param_completer, - STATE(4408), 1, + ACTIONS(8076), 1, + anon_sym_LBRACK, + STATE(4682), 1, + sym_val_list, + STATE(4407), 2, sym_comment, - [123985] = 3, + aux_sym__table_body_repeat1, + [125253] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4409), 1, + STATE(4408), 1, sym_comment, ACTIONS(7950), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123997] = 3, - ACTIONS(3), 1, + [125265] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4410), 1, + ACTIONS(4389), 1, + sym__entry_separator, + ACTIONS(8079), 1, + anon_sym_RBRACK, + STATE(2101), 1, + aux_sym__types_body_repeat2, + STATE(4409), 1, sym_comment, - ACTIONS(7835), 3, - ts_builtin_sym_end, + [125281] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3424), 1, sym__newline, - anon_sym_SEMI, - [124009] = 4, - ACTIONS(3), 1, + ACTIONS(3426), 1, + sym__space, + STATE(1392), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(4410), 1, + sym_comment, + [125297] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8012), 1, - anon_sym_COMMA, + ACTIONS(7336), 1, + anon_sym_DOT_DOT, + ACTIONS(7513), 1, + anon_sym_RBRACK, + ACTIONS(7515), 1, + sym__entry_separator, STATE(4411), 1, sym_comment, - ACTIONS(8010), 2, - anon_sym_RBRACK, - sym_hex_digit, - [124023] = 3, - ACTIONS(3), 1, + [125313] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7342), 1, + anon_sym_DOT_DOT, + ACTIONS(7517), 1, + anon_sym_RBRACK, + ACTIONS(7520), 1, + sym__entry_separator, STATE(4412), 1, sym_comment, - ACTIONS(7910), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124035] = 5, - ACTIONS(3), 1, + [125329] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8014), 1, + ACTIONS(4389), 1, + sym__entry_separator, + ACTIONS(8081), 1, anon_sym_RBRACK, + STATE(2084), 1, + aux_sym__types_body_repeat2, STATE(4413), 1, sym_comment, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - [124051] = 4, - ACTIONS(103), 1, + [125345] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7960), 1, - sym__entry_separator, STATE(4414), 1, sym_comment, - ACTIONS(6947), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124065] = 3, + ACTIONS(7787), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125357] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4415), 1, sym_comment, - ACTIONS(7954), 3, + ACTIONS(7789), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124077] = 3, + [125369] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4416), 1, sym_comment, - ACTIONS(7869), 3, + ACTIONS(7924), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124089] = 3, + [125381] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4417), 1, sym_comment, - ACTIONS(7954), 3, + ACTIONS(7926), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124101] = 3, + [125393] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4418), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(7926), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124113] = 3, + [125405] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4419), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(7791), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124125] = 3, - ACTIONS(3), 1, + [125417] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1872), 1, + sym__entry_separator, STATE(4420), 1, sym_comment, - ACTIONS(7675), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124137] = 3, + ACTIONS(1874), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125431] = 5, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(866), 1, + anon_sym_RBRACE, + ACTIONS(908), 1, + sym__entry_separator, + ACTIONS(6679), 1, + sym__unquoted_pattern_in_record, STATE(4421), 1, sym_comment, - ACTIONS(2593), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [124149] = 3, + [125447] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4422), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(7793), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124161] = 5, + [125459] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(8016), 1, - anon_sym_COLON, - STATE(540), 1, - aux_sym__repeat_newline, STATE(4423), 1, sym_comment, - [124177] = 4, - ACTIONS(103), 1, + ACTIONS(8015), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125471] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2607), 1, - sym__entry_separator, STATE(4424), 1, sym_comment, - ACTIONS(2609), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124191] = 4, - ACTIONS(103), 1, + ACTIONS(7795), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125483] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2511), 1, - sym__entry_separator, STATE(4425), 1, sym_comment, - ACTIONS(2513), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124205] = 4, - ACTIONS(103), 1, + ACTIONS(7887), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125495] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2515), 1, - sym__entry_separator, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(8083), 1, + anon_sym_GT2, STATE(4426), 1, sym_comment, - ACTIONS(2517), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124219] = 3, + STATE(4876), 1, + sym_param_completer, + [125511] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(8085), 1, + anon_sym_GT2, STATE(4427), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124231] = 5, - ACTIONS(3), 1, + STATE(4942), 1, + sym_param_completer, + [125527] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_LBRACE, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(8018), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(4389), 1, + sym__entry_separator, + ACTIONS(8087), 1, + anon_sym_RBRACK, + STATE(2092), 1, + aux_sym__types_body_repeat2, STATE(4428), 1, sym_comment, - [124247] = 3, + [125543] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1816), 1, + anon_sym_LBRACE, + ACTIONS(1818), 1, + sym__unquoted_pattern, + ACTIONS(8089), 1, + aux_sym__immediate_decimal_token5, STATE(4429), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124259] = 3, + [125559] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4430), 1, sym_comment, - ACTIONS(7922), 3, + ACTIONS(7973), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124271] = 5, - ACTIONS(3), 1, + [125571] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8020), 1, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8091), 1, anon_sym_GT2, + STATE(1947), 1, + aux_sym__types_body_repeat2, STATE(4431), 1, sym_comment, - STATE(4933), 1, - sym_param_completer, - [124287] = 3, + [125587] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4432), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(7928), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124299] = 3, + [125599] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4433), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(7928), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124311] = 3, - ACTIONS(3), 1, + [125611] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_RBRACE, STATE(4434), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124323] = 3, - ACTIONS(3), 1, + ACTIONS(5024), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [125625] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8066), 1, + sym__entry_separator, STATE(4435), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124335] = 4, - ACTIONS(103), 1, + ACTIONS(7026), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125639] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2537), 1, - sym__entry_separator, STATE(4436), 1, sym_comment, - ACTIONS(2539), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124349] = 3, + ACTIONS(8093), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [125651] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4437), 1, sym_comment, - ACTIONS(7711), 3, + ACTIONS(7987), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124361] = 5, + [125663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, - anon_sym_LPAREN2, STATE(4438), 1, sym_comment, - STATE(4728), 1, - sym__expr_parenthesized_immediate, - [124377] = 5, + ACTIONS(7879), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125675] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(2545), 1, sym__entry_separator, - ACTIONS(8022), 1, - anon_sym_GT2, - STATE(2376), 1, - aux_sym__types_body_repeat2, STATE(4439), 1, sym_comment, - [124393] = 3, + ACTIONS(2547), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125689] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(5911), 1, + anon_sym_EQ, + STATE(3344), 1, + sym_param_completer, STATE(4440), 1, sym_comment, - ACTIONS(7711), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124405] = 5, + [125705] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(8024), 1, - anon_sym_GT2, - STATE(2372), 1, + ACTIONS(8095), 1, + anon_sym_RBRACK, + STATE(4156), 1, aux_sym__types_body_repeat2, STATE(4441), 1, sym_comment, - [124421] = 3, + [125721] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(5911), 1, + anon_sym_EQ, + STATE(3378), 1, + sym_param_completer, STATE(4442), 1, sym_comment, - ACTIONS(7713), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124433] = 3, + [125737] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4443), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7930), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124445] = 3, + [125749] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4444), 1, sym_comment, - ACTIONS(7873), 3, + ACTIONS(7797), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124457] = 5, + [125761] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(1606), 1, + anon_sym_RBRACE, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(8026), 1, - anon_sym_GT2, - STATE(2362), 1, + STATE(1482), 1, aux_sym__types_body_repeat2, STATE(4445), 1, sym_comment, - [124473] = 5, - ACTIONS(3), 1, + [125777] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5048), 1, - sym__unquoted_pattern, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(4446), 1, sym_comment, - STATE(4725), 1, - sym__expr_parenthesized_immediate, - [124489] = 5, + STATE(4545), 1, + sym_block, + [125793] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4257), 1, + STATE(4352), 1, sym_block, STATE(4447), 1, sym_comment, - [124505] = 5, - ACTIONS(103), 1, + [125809] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8028), 1, - anon_sym_GT2, - STATE(1938), 1, - aux_sym__types_body_repeat2, STATE(4448), 1, sym_comment, - [124521] = 5, - ACTIONS(103), 1, + ACTIONS(7889), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125821] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8030), 1, - anon_sym_RBRACK, - ACTIONS(8033), 1, - anon_sym_DOT_DOT, - ACTIONS(8035), 1, - sym__entry_separator, STATE(4449), 1, sym_comment, - [124537] = 5, + ACTIONS(7799), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125833] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4379), 1, sym__entry_separator, - ACTIONS(8038), 1, - anon_sym_RBRACE, - STATE(1483), 1, + ACTIONS(8097), 1, + anon_sym_RBRACK, + STATE(2033), 1, aux_sym__types_body_repeat2, STATE(4450), 1, sym_comment, - [124553] = 5, + [125849] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(8041), 1, - anon_sym_RBRACK, - STATE(2087), 1, + ACTIONS(7828), 1, + anon_sym_RBRACE, + STATE(1467), 1, aux_sym__types_body_repeat2, STATE(4451), 1, sym_comment, - [124569] = 4, + [125865] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(4278), 1, sym__entry_separator, + ACTIONS(8099), 1, + anon_sym_RBRACK, + STATE(1959), 1, + aux_sym__types_body_repeat2, STATE(4452), 1, sym_comment, - ACTIONS(2256), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124583] = 4, + [125881] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(2612), 1, sym__entry_separator, STATE(4453), 1, sym_comment, - ACTIONS(2256), 2, + ACTIONS(2614), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [124597] = 4, + [125895] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5287), 1, + ACTIONS(1612), 1, sym__entry_separator, + ACTIONS(7830), 1, + anon_sym_RBRACE, + STATE(1473), 1, + aux_sym__types_body_repeat2, STATE(4454), 1, sym_comment, - ACTIONS(5289), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [124611] = 3, + [125911] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4455), 1, sym_comment, - ACTIONS(7940), 3, - ts_builtin_sym_end, + ACTIONS(8101), 3, sym__newline, anon_sym_SEMI, - [124623] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [125923] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8103), 1, + anon_sym_GT2, + STATE(1940), 1, + aux_sym__types_body_repeat2, STATE(4456), 1, sym_comment, - ACTIONS(7942), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124635] = 3, + [125939] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(6679), 1, + sym__unquoted_pattern_in_record, STATE(4457), 1, sym_comment, - ACTIONS(7944), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124647] = 3, - ACTIONS(3), 1, + STATE(4752), 1, + sym__expr_parenthesized_immediate, + [125955] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4354), 1, + sym_block, STATE(4458), 1, sym_comment, - ACTIONS(7946), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124659] = 3, - ACTIONS(3), 1, + [125971] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5016), 1, + sym__entry_separator, STATE(4459), 1, sym_comment, - ACTIONS(7948), 3, + ACTIONS(5018), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [125985] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5020), 1, + sym__entry_separator, + STATE(4460), 1, + sym_comment, + ACTIONS(5022), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [125999] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4461), 1, + sym_comment, + ACTIONS(7989), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124671] = 3, + [126011] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4460), 1, + STATE(4462), 1, sym_comment, - ACTIONS(8043), 3, + ACTIONS(7932), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [124683] = 4, + [126023] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8045), 1, - sym__table_head_separator, - STATE(4461), 1, - sym_comment, - ACTIONS(1619), 2, - anon_sym_RBRACK, + ACTIONS(4278), 1, sym__entry_separator, - [124697] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4462), 1, + ACTIONS(8105), 1, + anon_sym_GT2, + STATE(1948), 1, + aux_sym__types_body_repeat2, + STATE(4463), 1, sym_comment, - ACTIONS(4625), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124709] = 3, + [126039] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4463), 1, + ACTIONS(7437), 1, + anon_sym_if, + ACTIONS(8107), 1, + anon_sym_EQ_GT, + STATE(4464), 1, sym_comment, - ACTIONS(4629), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124721] = 4, + STATE(5018), 1, + sym_match_guard, + [126055] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8047), 1, - anon_sym_GT2, - STATE(4464), 1, + ACTIONS(1916), 1, + anon_sym_POUND_BANG, + ACTIONS(8109), 1, + sym__newline, + STATE(4465), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(8049), 2, - anon_sym_AT2, - sym__entry_separator, - [124735] = 5, - ACTIONS(3), 1, + [126069] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8051), 1, + ACTIONS(1858), 1, + sym__entry_separator, + STATE(4466), 1, + sym_comment, + ACTIONS(1860), 2, anon_sym_RBRACK, - ACTIONS(8053), 1, anon_sym_DOT_DOT, - STATE(4465), 1, - sym_comment, - STATE(5010), 1, - sym__match_pattern_rest, - [124751] = 3, + [126083] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4466), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3335), 1, + anon_sym_SEMI, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(4467), 1, sym_comment, - ACTIONS(4633), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124763] = 4, + [126099] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8055), 1, - anon_sym_RBRACK, - ACTIONS(8057), 1, - sym_hex_digit, - STATE(4467), 2, - sym_comment, - aux_sym_val_binary_repeat1, - [124777] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4259), 1, - sym_block, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(5978), 1, + anon_sym_EQ, + STATE(3405), 1, + sym_param_completer, STATE(4468), 1, sym_comment, - [124793] = 5, + [126115] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8060), 1, - anon_sym_DOT, STATE(4469), 1, sym_comment, - [124809] = 4, - ACTIONS(103), 1, + ACTIONS(7877), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126127] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - sym__entry_separator, STATE(4470), 1, sym_comment, - ACTIONS(5255), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [124823] = 5, - ACTIONS(3), 1, + ACTIONS(7850), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126139] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8062), 1, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8112), 1, anon_sym_RBRACK, + STATE(4199), 1, + aux_sym__types_body_repeat2, STATE(4471), 1, sym_comment, - STATE(4474), 1, - aux_sym_val_binary_repeat1, - [124839] = 5, - ACTIONS(103), 1, + [126155] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(2986), 1, - sym_block, STATE(4472), 1, sym_comment, - [124855] = 5, - ACTIONS(103), 1, + ACTIONS(8011), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126167] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, STATE(4473), 1, sym_comment, - [124871] = 5, + ACTIONS(7887), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126179] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8064), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, STATE(4474), 1, sym_comment, - [124887] = 5, - ACTIONS(3), 1, + ACTIONS(8019), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126191] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(4969), 1, - sym__unquoted_pattern, STATE(4475), 1, sym_comment, - STATE(4625), 1, - sym__expr_parenthesized_immediate, - [124903] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7898), 1, + ACTIONS(1874), 3, + anon_sym_RBRACK, sym__entry_separator, + sym__table_head_separator, + [126203] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4476), 1, sym_comment, - ACTIONS(8066), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124917] = 4, - ACTIONS(103), 1, + ACTIONS(7973), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126215] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - sym__entry_separator, + ACTIONS(8114), 1, + anon_sym_RBRACK, + ACTIONS(8116), 1, + sym_hex_digit, STATE(4477), 1, sym_comment, - ACTIONS(8068), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124931] = 4, + STATE(4482), 1, + aux_sym_val_binary_repeat1, + [126231] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7914), 1, + ACTIONS(4787), 1, sym__entry_separator, + ACTIONS(4805), 1, + anon_sym_RBRACE, + STATE(2233), 1, + aux_sym__types_body_repeat2, STATE(4478), 1, sym_comment, - ACTIONS(8033), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124945] = 4, - ACTIONS(103), 1, + [126247] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2258), 1, - sym__entry_separator, STATE(4479), 1, sym_comment, - ACTIONS(2260), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124959] = 4, - ACTIONS(103), 1, + ACTIONS(8019), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126259] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2262), 1, - sym__entry_separator, STATE(4480), 1, sym_comment, - ACTIONS(2264), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124973] = 3, + ACTIONS(7869), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126271] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4481), 1, sym_comment, - ACTIONS(7956), 3, + ACTIONS(8021), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124985] = 5, - ACTIONS(103), 1, + [126283] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8070), 1, - anon_sym_GT2, - STATE(1930), 1, - aux_sym__types_body_repeat2, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8118), 1, + anon_sym_RBRACK, STATE(4482), 1, sym_comment, - [125001] = 4, - ACTIONS(103), 1, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [126299] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__entry_separator, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(5172), 1, + sym__unquoted_pattern, STATE(4483), 1, sym_comment, - ACTIONS(5249), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125015] = 5, + STATE(4710), 1, + sym__expr_parenthesized_immediate, + [126315] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(7813), 1, sym__entry_separator, - ACTIONS(8072), 1, - anon_sym_GT2, - STATE(1931), 1, - aux_sym__types_body_repeat2, STATE(4484), 1, sym_comment, - [125031] = 5, - ACTIONS(3), 1, + ACTIONS(8120), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126329] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, + ACTIONS(7815), 1, + sym__entry_separator, STATE(4485), 1, sym_comment, - STATE(4630), 1, - sym__expr_parenthesized_immediate, - [125047] = 3, - ACTIONS(3), 1, + ACTIONS(8122), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126343] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7826), 1, + sym__entry_separator, STATE(4486), 1, sym_comment, - ACTIONS(7958), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125059] = 3, + ACTIONS(8124), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126357] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4487), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8021), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125071] = 3, + [126369] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(8126), 1, + anon_sym_GT2, STATE(4488), 1, sym_comment, - ACTIONS(7713), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125083] = 3, - ACTIONS(3), 1, + STATE(4997), 1, + sym_param_completer, + [126385] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1880), 1, + sym__entry_separator, STATE(4489), 1, sym_comment, - ACTIONS(7725), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125095] = 5, + ACTIONS(1882), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126399] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8074), 1, - anon_sym_RBRACK, STATE(4490), 1, sym_comment, - STATE(4493), 1, - aux_sym_val_binary_repeat1, - [125111] = 4, + ACTIONS(7971), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126411] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_LPAREN, + ACTIONS(4787), 1, + sym__entry_separator, + ACTIONS(8128), 1, + anon_sym_RBRACE, + STATE(2228), 1, + aux_sym__types_body_repeat2, STATE(4491), 1, sym_comment, - ACTIONS(7906), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125125] = 3, + [126427] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4492), 1, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7932), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125137] = 5, + [126439] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8076), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, STATE(4493), 1, sym_comment, - [125153] = 3, + ACTIONS(7934), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126451] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4494), 1, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7971), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125165] = 3, + [126463] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4495), 1, sym_comment, - ACTIONS(7735), 3, + ACTIONS(8130), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126475] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4496), 1, + sym_comment, + ACTIONS(7975), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125177] = 5, + [126487] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(8078), 1, + ACTIONS(8132), 1, anon_sym_RBRACK, - STATE(1926), 1, + STATE(1934), 1, aux_sym__types_body_repeat2, - STATE(4496), 1, - sym_comment, - [125193] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8080), 1, - anon_sym_RBRACK, - STATE(4413), 1, - aux_sym_val_binary_repeat1, STATE(4497), 1, sym_comment, - [125209] = 5, - ACTIONS(3), 1, + [126503] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8082), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(7852), 1, + anon_sym_LBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, STATE(4498), 1, sym_comment, - [125225] = 5, + [126519] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, STATE(4499), 1, sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - [125241] = 3, - ACTIONS(3), 1, + ACTIONS(8134), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126531] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(8136), 1, + anon_sym_RBRACE, + STATE(1463), 1, + aux_sym__types_body_repeat2, STATE(4500), 1, sym_comment, - ACTIONS(7952), 3, + [126547] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4501), 1, + sym_comment, + ACTIONS(8023), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125253] = 5, + [126559] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4502), 1, + sym_comment, + ACTIONS(8139), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126571] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(8116), 1, sym_hex_digit, - ACTIONS(8084), 1, + ACTIONS(8141), 1, anon_sym_RBRACK, - STATE(4501), 1, + STATE(4503), 1, sym_comment, - STATE(4621), 1, + STATE(4506), 1, aux_sym_val_binary_repeat1, - [125269] = 4, - ACTIONS(103), 1, + [126587] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8086), 1, - anon_sym_DQUOTE, - STATE(4502), 1, + STATE(4504), 1, sym_comment, - ACTIONS(8088), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125283] = 3, + ACTIONS(8143), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126599] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4503), 1, + ACTIONS(8147), 1, + anon_sym_COMMA, + STATE(4505), 1, + sym_comment, + ACTIONS(8145), 2, + anon_sym_RBRACK, + sym_hex_digit, + [126613] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8149), 1, + anon_sym_RBRACK, + STATE(4506), 1, + sym_comment, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [126629] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4507), 1, sym_comment, - ACTIONS(8090), 3, + ACTIONS(7873), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [125295] = 3, + [126641] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8151), 1, + anon_sym_RBRACK, + STATE(1916), 1, + aux_sym__types_body_repeat2, + STATE(4508), 1, + sym_comment, + [126657] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4504), 1, + STATE(4509), 1, sym_comment, - ACTIONS(7692), 3, + ACTIONS(8023), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125307] = 4, + [126669] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2268), 1, + ACTIONS(6137), 1, sym__entry_separator, - STATE(4505), 1, + STATE(4510), 1, + sym_comment, + ACTIONS(6135), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126683] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4511), 1, + sym_comment, + ACTIONS(7991), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126695] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7134), 1, + anon_sym_LBRACK, + STATE(4406), 1, + sym_val_list, + STATE(4407), 1, + aux_sym__table_body_repeat1, + STATE(4512), 1, sym_comment, - ACTIONS(2270), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125321] = 4, + [126711] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(2616), 1, sym__entry_separator, - STATE(4506), 1, + STATE(4513), 1, sym_comment, - ACTIONS(2274), 2, + ACTIONS(2618), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [125335] = 3, + [126725] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4507), 1, + STATE(4514), 1, sym_comment, - ACTIONS(7747), 3, + ACTIONS(7952), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125347] = 3, + [126737] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2513), 1, + sym__entry_separator, + STATE(4515), 1, + sym_comment, + ACTIONS(2515), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126751] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4508), 1, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8153), 1, + anon_sym_RBRACK, + STATE(4516), 1, sym_comment, - ACTIONS(7747), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125359] = 5, + STATE(4563), 1, + aux_sym_val_binary_repeat1, + [126767] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(8116), 1, sym_hex_digit, - ACTIONS(8092), 1, + ACTIONS(8155), 1, anon_sym_RBRACK, - STATE(4509), 1, + STATE(4517), 1, sym_comment, - STATE(4512), 1, + STATE(4520), 1, aux_sym_val_binary_repeat1, - [125375] = 4, + [126783] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7757), 1, + ACTIONS(2501), 1, sym__entry_separator, - STATE(4510), 1, + STATE(4518), 1, sym_comment, - ACTIONS(8094), 2, + ACTIONS(2503), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125389] = 4, + anon_sym_RBRACE, + [126797] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7757), 1, + ACTIONS(5034), 1, sym__entry_separator, - STATE(4511), 1, + STATE(4519), 1, sym_comment, - ACTIONS(8094), 2, + ACTIONS(5036), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125403] = 5, + anon_sym_GT2, + [126811] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(8116), 1, sym_hex_digit, - ACTIONS(8096), 1, + ACTIONS(8157), 1, anon_sym_RBRACK, - STATE(4467), 1, + STATE(4520), 1, + sym_comment, + STATE(4658), 1, aux_sym_val_binary_repeat1, - STATE(4512), 1, + [126827] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8159), 1, + anon_sym_RBRACK, + STATE(4521), 1, sym_comment, - [125419] = 4, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [126843] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7825), 1, + ACTIONS(5038), 1, sym__entry_separator, - STATE(4513), 1, + STATE(4522), 1, sym_comment, - ACTIONS(8098), 2, + ACTIONS(5040), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125433] = 4, + anon_sym_GT2, + [126857] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5940), 1, + ACTIONS(5042), 1, sym__entry_separator, - STATE(4514), 1, + STATE(4523), 1, sym_comment, - ACTIONS(5938), 2, + ACTIONS(5044), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [125447] = 4, + anon_sym_GT2, + [126871] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4524), 1, + sym_comment, + ACTIONS(7952), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126883] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, + ACTIONS(2176), 1, sym__entry_separator, - STATE(4515), 1, + STATE(4525), 1, sym_comment, - ACTIONS(7272), 2, + ACTIONS(2178), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125461] = 4, + anon_sym_RBRACE, + [126897] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7920), 1, + ACTIONS(1574), 1, sym__entry_separator, - STATE(4516), 1, + STATE(4526), 1, sym_comment, - ACTIONS(8100), 2, + ACTIONS(1572), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [125475] = 4, + [126911] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(2180), 1, sym__entry_separator, - STATE(4517), 1, + STATE(4527), 1, sym_comment, - ACTIONS(7278), 2, + ACTIONS(2182), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125489] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4518), 1, - sym_comment, - ACTIONS(7926), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125501] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [126925] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4519), 1, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(8161), 1, + anon_sym_RBRACE, + STATE(1462), 1, + aux_sym__types_body_repeat2, + STATE(4528), 1, sym_comment, - ACTIONS(7952), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125513] = 4, + [126941] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(5054), 1, sym__entry_separator, - STATE(4520), 1, + STATE(4529), 1, sym_comment, - ACTIONS(5243), 2, + ACTIONS(5056), 2, anon_sym_RBRACK, anon_sym_GT2, - [125527] = 3, + [126955] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4521), 1, + STATE(4530), 1, sym_comment, - ACTIONS(7741), 3, + ACTIONS(7934), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125539] = 4, + [126967] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_RPAREN, - STATE(4522), 1, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6599), 1, + anon_sym_LPAREN2, + STATE(4531), 1, sym_comment, - ACTIONS(2932), 2, - sym__newline, - anon_sym_SEMI, - [125553] = 3, + STATE(4720), 1, + sym__expr_parenthesized_immediate, + [126983] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4523), 1, - sym_comment, - ACTIONS(7741), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125565] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(8102), 1, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8163), 1, anon_sym_RBRACK, - STATE(1968), 1, - aux_sym__types_body_repeat2, - STATE(4524), 1, + STATE(4532), 1, sym_comment, - [125581] = 3, + STATE(4536), 1, + aux_sym_val_binary_repeat1, + [126999] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4525), 1, + STATE(1375), 1, + aux_sym__block_body_repeat1, + STATE(4533), 1, sym_comment, - ACTIONS(7751), 3, - ts_builtin_sym_end, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - [125593] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1621), 1, - anon_sym_RBRACE, - ACTIONS(1627), 1, - sym__entry_separator, - STATE(1475), 1, - aux_sym__types_body_repeat2, - STATE(4526), 1, - sym_comment, - [125609] = 3, + [127013] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4527), 1, + STATE(4534), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7946), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125621] = 3, + [127025] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4528), 1, + ACTIONS(8165), 1, + anon_sym_BANG, + STATE(4535), 1, sym_comment, - ACTIONS(7804), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125633] = 3, + ACTIONS(1452), 2, + sym__table_head_separator, + anon_sym_DOT2, + [127039] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4529), 1, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8167), 1, + anon_sym_RBRACK, + STATE(4536), 1, + sym_comment, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [127055] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4537), 1, sym_comment, - ACTIONS(7970), 3, + ACTIONS(7975), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125645] = 4, + [127067] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, - anon_sym_LPAREN, - STATE(4530), 1, + ACTIONS(8169), 1, + anon_sym_POUND_BANG, + ACTIONS(8171), 1, + sym__newline, + STATE(4465), 1, + aux_sym__repeat_newline, + STATE(4538), 1, sym_comment, - ACTIONS(8106), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125659] = 5, + [127083] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8108), 1, - anon_sym_RBRACK, - STATE(1935), 1, - aux_sym__types_body_repeat2, - STATE(4531), 1, + STATE(4539), 1, sym_comment, - [125675] = 3, + ACTIONS(858), 3, + sym__newline, + sym__space, + anon_sym_COLON2, + [127095] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4532), 1, + STATE(4540), 1, sym_comment, - ACTIONS(3082), 3, + ACTIONS(8173), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [125687] = 3, + [127107] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4533), 1, + STATE(4541), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(8025), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125699] = 3, + [127119] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4534), 1, + STATE(4542), 1, sym_comment, - ACTIONS(7804), 3, + ACTIONS(8025), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125711] = 3, + [127131] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4535), 1, + STATE(4543), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(7950), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125723] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1706), 1, - sym__entry_separator, - STATE(4536), 1, - sym_comment, - ACTIONS(1619), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125737] = 3, + [127143] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4537), 1, + ACTIONS(8175), 1, + anon_sym_export, + ACTIONS(8177), 1, + anon_sym_def, + ACTIONS(8179), 1, + anon_sym_extern, + STATE(4544), 1, sym_comment, - ACTIONS(8110), 3, - sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [125749] = 3, + [127159] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4538), 1, + STATE(4545), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(8027), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125761] = 5, + [127171] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(7997), 1, sym__entry_separator, - ACTIONS(8112), 1, - anon_sym_GT2, - STATE(2373), 1, - aux_sym__types_body_repeat2, - STATE(4539), 1, - sym_comment, - [125777] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_POUND_BANG, - ACTIONS(8114), 1, - sym__newline, - STATE(4540), 2, - aux_sym__repeat_newline, + STATE(4546), 1, sym_comment, - [125791] = 5, + ACTIONS(8181), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127185] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8117), 1, - anon_sym_GT2, - STATE(4541), 1, - sym_comment, - STATE(4953), 1, - sym_param_completer, - [125807] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8119), 1, - anon_sym_RBRACE, - STATE(1466), 1, - aux_sym__types_body_repeat2, - STATE(4542), 1, - sym_comment, - [125823] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8122), 1, - anon_sym_GT2, - STATE(1921), 1, - aux_sym__types_body_repeat2, - STATE(4543), 1, - sym_comment, - [125839] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8124), 1, - anon_sym_LPAREN, - STATE(4544), 1, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8183), 1, + anon_sym_RBRACK, + STATE(4547), 1, sym_comment, - ACTIONS(8126), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125853] = 3, + STATE(4567), 1, + aux_sym_val_binary_repeat1, + [127201] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4545), 1, + STATE(4548), 1, sym_comment, - ACTIONS(7970), 3, + ACTIONS(7973), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125865] = 3, + [127213] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4546), 1, + STATE(4549), 1, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7973), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125877] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4547), 1, - sym_comment, - ACTIONS(4569), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [125889] = 3, + [127225] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4548), 1, + STATE(4550), 1, sym_comment, - ACTIONS(7715), 3, + ACTIONS(8031), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125901] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4716), 1, - anon_sym_RBRACE, - STATE(2225), 1, - aux_sym__types_body_repeat2, - STATE(4549), 1, - sym_comment, - [125917] = 3, + [127237] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4550), 1, + STATE(4551), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(7950), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125929] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8128), 1, - anon_sym_RBRACE, - STATE(1478), 1, - aux_sym__types_body_repeat2, - STATE(4551), 1, - sym_comment, - [125945] = 5, + [127249] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5944), 1, - anon_sym_EQ, - STATE(3284), 1, - sym_param_completer, STATE(4552), 1, sym_comment, - [125961] = 3, + ACTIONS(7995), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127261] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4553), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(7946), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125973] = 4, - ACTIONS(103), 1, + [127273] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5961), 1, - sym__entry_separator, + ACTIONS(3239), 1, + anon_sym_RPAREN, STATE(4554), 1, sym_comment, - ACTIONS(5959), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125987] = 3, - ACTIONS(3), 1, + ACTIONS(2851), 2, + sym__newline, + anon_sym_SEMI, + [127287] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8185), 1, + sym__table_head_separator, STATE(4555), 1, sym_comment, - ACTIONS(8130), 3, - sym__newline, - anon_sym_LBRACK, + ACTIONS(1604), 2, anon_sym_RBRACK, - [125999] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2615), 1, sym__entry_separator, + [127301] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8187), 1, + anon_sym_RBRACK, + STATE(4521), 1, + aux_sym_val_binary_repeat1, STATE(4556), 1, sym_comment, - ACTIONS(2617), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [126013] = 5, - ACTIONS(103), 1, + [127317] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8132), 1, - anon_sym_RBRACK, - STATE(1922), 1, - aux_sym__types_body_repeat2, STATE(4557), 1, sym_comment, - [126029] = 5, - ACTIONS(103), 1, + ACTIONS(7969), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127329] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8134), 1, - anon_sym_RBRACE, - STATE(1474), 1, - aux_sym__types_body_repeat2, STATE(4558), 1, sym_comment, - [126045] = 5, - ACTIONS(103), 1, + ACTIONS(7975), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127341] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8136), 1, - anon_sym_RBRACK, - STATE(1923), 1, - aux_sym__types_body_repeat2, STATE(4559), 1, sym_comment, - [126061] = 3, + ACTIONS(2130), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127353] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4560), 1, sym_comment, - ACTIONS(7847), 3, + ACTIONS(7975), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126073] = 3, + [127365] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4561), 1, sym_comment, - ACTIONS(7847), 3, + ACTIONS(8017), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126085] = 3, + [127377] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4562), 1, sym_comment, - ACTIONS(7741), 3, + ACTIONS(8017), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126097] = 3, + [127389] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8189), 1, + anon_sym_RBRACK, STATE(4563), 1, sym_comment, - ACTIONS(7741), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126109] = 3, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [127405] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(1810), 1, + sym__unquoted_pattern, STATE(4564), 1, sym_comment, - ACTIONS(7751), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126121] = 3, + STATE(4754), 1, + sym__expr_parenthesized_immediate, + [127421] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(6131), 1, + anon_sym_EQ, + STATE(3355), 1, + sym_param_completer, STATE(4565), 1, sym_comment, - ACTIONS(7751), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126133] = 5, + [127437] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7723), 1, - sym__entry_separator, - ACTIONS(8138), 1, - anon_sym_AT2, + ACTIONS(8191), 1, + anon_sym_DQUOTE, STATE(4566), 1, sym_comment, - STATE(4652), 1, - sym_param_completer, - [126149] = 3, + ACTIONS(8193), 2, + sym__escaped_str_content, + sym_escape_sequence, + [127451] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8195), 1, + anon_sym_RBRACK, STATE(4567), 1, sym_comment, - ACTIONS(7827), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126161] = 5, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [127467] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(1844), 1, sym__entry_separator, - ACTIONS(8140), 1, - anon_sym_RBRACK, - STATE(1990), 1, - aux_sym__types_body_repeat2, STATE(4568), 1, sym_comment, - [126177] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8142), 1, + ACTIONS(1846), 2, anon_sym_RBRACK, - STATE(4236), 1, - aux_sym__types_body_repeat2, + anon_sym_RBRACE, + [127481] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(1724), 1, + sym__unquoted_pattern, STATE(4569), 1, sym_comment, - [126193] = 5, + STATE(4718), 1, + sym__expr_parenthesized_immediate, + [127497] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8144), 1, - anon_sym_RBRACK, - STATE(4359), 1, - aux_sym__types_body_repeat2, + ACTIONS(5014), 1, + anon_sym_RBRACE, STATE(4570), 1, sym_comment, - [126209] = 5, + ACTIONS(5012), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [127511] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4389), 1, sym__entry_separator, - ACTIONS(8146), 1, + ACTIONS(8197), 1, anon_sym_RBRACK, - STATE(4196), 1, + STATE(1974), 1, aux_sym__types_body_repeat2, STATE(4571), 1, sym_comment, - [126225] = 4, - ACTIONS(103), 1, + [127527] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5221), 1, - sym__entry_separator, STATE(4572), 1, sym_comment, - ACTIONS(5223), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [126239] = 5, - ACTIONS(3), 1, + ACTIONS(8199), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [127539] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7745), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7997), 1, + sym__entry_separator, STATE(4573), 1, sym_comment, - [126255] = 4, + ACTIONS(8181), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127553] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(2624), 1, sym__entry_separator, STATE(4574), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(2626), 2, anon_sym_RBRACK, - anon_sym_GT2, - [126269] = 5, - ACTIONS(103), 1, + anon_sym_RBRACE, + [127567] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7272), 1, - anon_sym_DOT_DOT, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, STATE(4575), 1, sym_comment, - [126285] = 5, + ACTIONS(8019), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127579] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, + ACTIONS(8033), 1, sym__entry_separator, STATE(4576), 1, sym_comment, - [126301] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - STATE(4577), 1, - sym_comment, - STATE(4580), 1, - sym_val_list, - STATE(4591), 1, - aux_sym__table_body_repeat1, - [126317] = 5, + ACTIONS(8201), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127593] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(2628), 1, sym__entry_separator, - ACTIONS(7843), 1, + STATE(4577), 1, + sym_comment, + ACTIONS(2630), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1469), 1, - aux_sym__types_body_repeat2, + [127607] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4578), 1, sym_comment, - [126333] = 5, + ACTIONS(7926), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127619] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - STATE(4570), 1, - sym_val_list, STATE(4579), 1, sym_comment, - STATE(4591), 1, - aux_sym__table_body_repeat1, - [126349] = 5, + ACTIONS(8019), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127631] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(2636), 1, sym__entry_separator, - ACTIONS(8148), 1, - anon_sym_RBRACK, - STATE(4238), 1, - aux_sym__types_body_repeat2, STATE(4580), 1, sym_comment, - [126365] = 5, - ACTIONS(103), 1, + ACTIONS(2638), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127645] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - STATE(1491), 1, - aux_sym__types_body_repeat2, STATE(4581), 1, sym_comment, - [126381] = 3, + ACTIONS(8203), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [127657] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4582), 1, sym_comment, - ACTIONS(7831), 3, + ACTIONS(7948), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126393] = 5, - ACTIONS(103), 1, + [127669] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(8150), 1, - anon_sym_RBRACK, - STATE(2104), 1, - aux_sym__types_body_repeat2, STATE(4583), 1, sym_comment, - [126409] = 5, - ACTIONS(103), 1, + ACTIONS(2150), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127681] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACK, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, STATE(4584), 1, sym_comment, - [126425] = 3, - ACTIONS(3), 1, + ACTIONS(4634), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127693] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4944), 1, + sym__entry_separator, STATE(4585), 1, sym_comment, - ACTIONS(7816), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126437] = 5, + ACTIONS(4948), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [127707] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(7916), 1, - anon_sym_RBRACE, - STATE(1480), 1, + ACTIONS(8205), 1, + anon_sym_GT2, + STATE(1927), 1, aux_sym__types_body_repeat2, STATE(4586), 1, sym_comment, - [126453] = 3, + [127723] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4587), 1, sym_comment, - ACTIONS(8152), 3, + ACTIONS(7948), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126465] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(7918), 1, - anon_sym_RBRACE, - STATE(1485), 1, - aux_sym__types_body_repeat2, - STATE(4588), 1, - sym_comment, - [126481] = 3, + anon_sym_SEMI, + [127735] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4589), 1, + STATE(4588), 1, sym_comment, - ACTIONS(8154), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126493] = 5, + ACTIONS(4638), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127747] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(5062), 1, sym__entry_separator, - ACTIONS(8156), 1, + STATE(4589), 1, + sym_comment, + ACTIONS(5064), 2, anon_sym_RBRACK, - STATE(2105), 1, - aux_sym__types_body_repeat2, + anon_sym_GT2, + [127761] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4590), 1, sym_comment, - [126509] = 4, + ACTIONS(4568), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8158), 1, - anon_sym_LBRACK, - STATE(4749), 1, - sym_val_list, - STATE(4591), 2, + STATE(4591), 1, sym_comment, - aux_sym__table_body_repeat1, - [126523] = 3, - ACTIONS(3), 1, + ACTIONS(4582), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127785] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2497), 1, + sym__entry_separator, STATE(4592), 1, sym_comment, - ACTIONS(8161), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126535] = 5, - ACTIONS(3), 1, + ACTIONS(2499), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127799] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7287), 1, - anon_sym_if, - ACTIONS(8163), 1, - anon_sym_EQ_GT, + ACTIONS(2505), 1, + sym__entry_separator, STATE(4593), 1, sym_comment, - STATE(4917), 1, - sym_match_guard, - [126551] = 5, + ACTIONS(2507), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8165), 1, - anon_sym_DOT, - ACTIONS(8167), 1, - aux_sym__immediate_decimal_token5, STATE(4594), 1, sym_comment, - [126567] = 5, + ACTIONS(4586), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127825] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4379), 1, sym__entry_separator, - ACTIONS(8169), 1, + ACTIONS(8207), 1, anon_sym_RBRACK, - STATE(1995), 1, + STATE(2106), 1, aux_sym__types_body_repeat2, STATE(4595), 1, sym_comment, - [126583] = 4, + [127841] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1874), 1, + ACTIONS(2497), 1, sym__entry_separator, STATE(4596), 1, sym_comment, - ACTIONS(1876), 2, + ACTIONS(2499), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126597] = 3, + anon_sym_RBRACE, + [127855] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4597), 1, sym_comment, - ACTIONS(8171), 3, + ACTIONS(7926), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126609] = 5, + [127867] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, STATE(4598), 1, sym_comment, - [126625] = 3, + ACTIONS(7969), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127879] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4599), 1, sym_comment, - ACTIONS(4651), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [126637] = 5, - ACTIONS(3), 1, + ACTIONS(3239), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [127891] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8177), 1, - anon_sym_RBRACK, + ACTIONS(2517), 1, + sym__entry_separator, STATE(4600), 1, sym_comment, - STATE(4609), 1, - aux_sym_val_binary_repeat1, - [126653] = 5, - ACTIONS(3), 1, + ACTIONS(2519), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127905] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, + ACTIONS(1706), 1, + sym__entry_separator, STATE(4601), 1, sym_comment, - STATE(4649), 1, - sym__expr_parenthesized_immediate, - [126669] = 3, - ACTIONS(3), 1, + ACTIONS(1604), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127919] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4785), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, + sym__entry_separator, + STATE(2232), 1, + aux_sym__types_body_repeat2, STATE(4602), 1, sym_comment, - ACTIONS(7968), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126681] = 5, + [127935] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(6009), 1, - anon_sym_EQ, - STATE(3300), 1, - sym_param_completer, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(5213), 1, + sym__unquoted_pattern, STATE(4603), 1, sym_comment, - [126697] = 3, - ACTIONS(3), 1, + STATE(4785), 1, + sym__expr_parenthesized_immediate, + [127951] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(8209), 1, + anon_sym_RBRACE, + STATE(1476), 1, + aux_sym__types_body_repeat2, STATE(4604), 1, sym_comment, - ACTIONS(7837), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126709] = 5, + [127967] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8179), 1, - anon_sym_export, - ACTIONS(8181), 1, - anon_sym_def, - ACTIONS(8183), 1, - anon_sym_extern, STATE(4605), 1, sym_comment, - [126725] = 4, - ACTIONS(103), 1, + ACTIONS(7940), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127979] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1886), 1, - sym__entry_separator, STATE(4606), 1, sym_comment, - ACTIONS(1888), 2, + ACTIONS(8211), 3, + sym__newline, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126739] = 5, + [127991] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(8185), 1, + ACTIONS(8035), 1, anon_sym_RBRACE, - STATE(2227), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, STATE(4607), 1, sym_comment, - [126755] = 5, - ACTIONS(103), 1, + [128007] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4711), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym__types_body_repeat2, STATE(4608), 1, sym_comment, - [126771] = 5, - ACTIONS(3), 1, + ACTIONS(7971), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128019] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8187), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, + ACTIONS(7199), 1, + sym__entry_separator, STATE(4609), 1, sym_comment, - [126787] = 5, - ACTIONS(3), 1, + ACTIONS(7336), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128033] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, + ACTIONS(7858), 1, + sym__entry_separator, STATE(4610), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - [126803] = 3, - ACTIONS(3), 1, + ACTIONS(8213), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128047] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7205), 1, + sym__entry_separator, STATE(4611), 1, sym_comment, - ACTIONS(7694), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126815] = 3, + ACTIONS(7342), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128061] = 5, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4379), 1, + sym__entry_separator, + ACTIONS(8215), 1, + anon_sym_RBRACK, + STATE(1971), 1, + aux_sym__types_body_repeat2, STATE(4612), 1, sym_comment, - ACTIONS(858), 3, - sym__newline, - sym__space, - anon_sym_COLON2, - [126827] = 5, + [128077] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3100), 1, - sym_block, + ACTIONS(8217), 1, + anon_sym_LPAREN, STATE(4613), 1, sym_comment, - [126843] = 5, + ACTIONS(8219), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [128091] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8189), 1, - anon_sym_POUND_BANG, - ACTIONS(8191), 1, - sym__newline, - STATE(4540), 1, - aux_sym__repeat_newline, + ACTIONS(8124), 1, + anon_sym_DOT_DOT, + ACTIONS(8221), 1, + anon_sym_RBRACK, + ACTIONS(8224), 1, + sym__entry_separator, STATE(4614), 1, sym_comment, - [126859] = 5, + [128107] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(4379), 1, sym__entry_separator, - ACTIONS(8193), 1, + ACTIONS(8227), 1, anon_sym_RBRACK, - STATE(2108), 1, + STATE(1968), 1, aux_sym__types_body_repeat2, STATE(4615), 1, sym_comment, - [126875] = 3, - ACTIONS(3), 1, + [128123] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8229), 1, + anon_sym_LPAREN, STATE(4616), 1, sym_comment, - ACTIONS(8195), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126887] = 3, + ACTIONS(8231), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [128137] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4617), 1, sym_comment, - ACTIONS(8197), 3, + ACTIONS(7895), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126899] = 5, + [128149] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7855), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(8199), 1, - anon_sym_COLON, + ACTIONS(8233), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym__types_body_repeat2, STATE(4618), 1, sym_comment, - STATE(4709), 1, - sym__collection_annotation, - [126915] = 3, + [128165] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4619), 1, sym_comment, - ACTIONS(8201), 3, + ACTIONS(8236), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126927] = 4, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128177] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - sym__entry_separator, STATE(4620), 1, sym_comment, - ACTIONS(5259), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [126941] = 5, + ACTIONS(7971), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128189] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8203), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, STATE(4621), 1, sym_comment, - [126957] = 4, - ACTIONS(3), 1, + ACTIONS(7942), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128201] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4237), 1, - sym_block, + ACTIONS(5421), 1, + sym__entry_separator, STATE(4622), 1, sym_comment, - [126970] = 3, - ACTIONS(103), 1, + ACTIONS(5419), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128215] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8205), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 2, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(5270), 1, + sym__unquoted_pattern_in_record, + STATE(4623), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [126981] = 3, - ACTIONS(3), 1, + STATE(4703), 1, + sym__expr_parenthesized_immediate, + [128231] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6069), 1, + sym__entry_separator, STATE(4624), 1, sym_comment, - ACTIONS(8208), 2, - sym__newline, - anon_sym_SEMI, - [126992] = 4, + ACTIONS(6067), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128245] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8210), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2521), 1, + sym__entry_separator, STATE(4625), 1, sym_comment, - STATE(4627), 1, - aux_sym__unquoted_with_expr_repeat1, - [127005] = 4, - ACTIONS(103), 1, + ACTIONS(2523), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128259] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8212), 1, - aux_sym__unquoted_with_expr_token1, STATE(4626), 1, sym_comment, - STATE(4628), 1, - aux_sym__unquoted_with_expr_repeat1, - [127018] = 4, - ACTIONS(103), 1, + ACTIONS(8238), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [128271] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8214), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, STATE(4627), 1, sym_comment, - [127031] = 4, - ACTIONS(103), 1, + ACTIONS(7895), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128283] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8216), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8165), 1, + anon_sym_QMARK2, STATE(4628), 1, sym_comment, - [127044] = 4, + ACTIONS(1452), 2, + sym__table_head_separator, + anon_sym_DOT2, + [128297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(1750), 1, anon_sym_LBRACE, - STATE(4432), 1, - sym_block, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(7779), 1, + aux_sym__immediate_decimal_token5, STATE(4629), 1, sym_comment, - [127057] = 4, - ACTIONS(103), 1, + [128313] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8218), 1, - aux_sym__unquoted_in_record_with_expr_token1, STATE(4630), 1, sym_comment, - STATE(4789), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127070] = 4, + ACTIONS(7875), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128325] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8220), 1, - aux_sym__unquoted_in_record_with_expr_token1, STATE(4631), 1, sym_comment, - STATE(4714), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127083] = 4, - ACTIONS(103), 1, + ACTIONS(2638), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [128337] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8222), 1, - aux_sym__unquoted_in_record_with_expr_token1, STATE(4632), 1, sym_comment, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127096] = 4, - ACTIONS(103), 1, + ACTIONS(7985), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128349] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8224), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(1740), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8240), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8242), 1, + aux_sym__immediate_decimal_token5, STATE(4633), 1, sym_comment, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127109] = 4, - ACTIONS(3), 1, + [128365] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4083), 1, - sym_block, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(1614), 1, + anon_sym_COLON2, + STATE(1494), 1, + aux_sym__types_body_repeat2, STATE(4634), 1, sym_comment, - [127122] = 4, - ACTIONS(3), 1, + [128381] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4085), 1, + STATE(3247), 1, sym_block, STATE(4635), 1, sym_comment, - [127135] = 4, - ACTIONS(103), 1, + [128397] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7572), 1, - anon_sym_RBRACE, - ACTIONS(7574), 1, - sym__entry_separator, STATE(4636), 1, sym_comment, - [127148] = 4, + ACTIONS(8244), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [128409] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(1750), 1, anon_sym_LBRACE, - STATE(4094), 1, - sym_block, + ACTIONS(7298), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8246), 1, + anon_sym_DOT, STATE(4637), 1, sym_comment, - [127161] = 4, + [128425] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4433), 1, - sym_block, STATE(4638), 1, sym_comment, - [127174] = 4, + ACTIONS(7781), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128437] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4098), 1, - sym_block, + ACTIONS(8248), 1, + anon_sym_export, + ACTIONS(8250), 1, + anon_sym_def, + ACTIONS(8252), 1, + anon_sym_extern, STATE(4639), 1, sym_comment, - [127187] = 3, - ACTIONS(103), 1, + [128453] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4640), 1, sym_comment, - ACTIONS(2096), 2, - anon_sym_POUND_BANG, + ACTIONS(8013), 3, + ts_builtin_sym_end, sym__newline, - [127198] = 3, + anon_sym_SEMI, + [128465] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4641), 1, sym_comment, - ACTIONS(1464), 2, - sym__table_head_separator, - anon_sym_DOT2, - [127209] = 4, + ACTIONS(8254), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [128477] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, + ACTIONS(8256), 1, + anon_sym_RBRACK, + ACTIONS(8258), 1, + anon_sym_DOT_DOT, STATE(4642), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [127222] = 4, - ACTIONS(3), 1, + STATE(4833), 1, + sym__match_pattern_rest, + [128493] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4519), 1, - sym_block, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(8260), 1, + anon_sym_RBRACE, + STATE(1484), 1, + aux_sym__types_body_repeat2, STATE(4643), 1, sym_comment, - [127235] = 4, + [128509] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4241), 1, - sym_block, + ACTIONS(8262), 1, + anon_sym_RBRACK, + ACTIONS(8264), 1, + anon_sym_DOT_DOT, STATE(4644), 1, sym_comment, - [127248] = 4, + STATE(5135), 1, + sym__match_pattern_rest, + [128525] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4243), 1, - sym_block, STATE(4645), 1, sym_comment, - [127261] = 4, - ACTIONS(103), 1, + ACTIONS(8266), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [128537] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8226), 1, - aux_sym__unquoted_with_expr_token1, STATE(4646), 1, sym_comment, - STATE(4665), 1, - aux_sym__unquoted_with_expr_repeat1, - [127274] = 4, - ACTIONS(3), 1, + ACTIONS(8268), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [128549] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4442), 1, - sym_block, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8270), 1, + anon_sym_RBRACK, + STATE(4228), 1, + aux_sym__types_body_repeat2, STATE(4647), 1, sym_comment, - [127287] = 4, + [128565] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4507), 1, - sym_block, STATE(4648), 1, sym_comment, - [127300] = 4, + ACTIONS(7950), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128577] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8228), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4632), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(8272), 1, + anon_sym_RBRACE, + STATE(1471), 1, + aux_sym__types_body_repeat2, STATE(4649), 1, sym_comment, - [127313] = 3, - ACTIONS(103), 1, + [128593] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8230), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 2, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(8274), 1, + anon_sym_COLON, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(4650), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127324] = 4, + [128609] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4508), 1, - sym_block, + ACTIONS(1752), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8276), 1, + anon_sym_DOT, + ACTIONS(8278), 1, + aux_sym__immediate_decimal_token5, STATE(4651), 1, sym_comment, - [127337] = 4, - ACTIONS(103), 1, + [128625] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8233), 1, - anon_sym_GT2, - ACTIONS(8235), 1, - sym__entry_separator, + ACTIONS(7134), 1, + anon_sym_LBRACK, + STATE(4407), 1, + aux_sym__table_body_repeat1, + STATE(4441), 1, + sym_val_list, STATE(4652), 1, sym_comment, - [127350] = 4, - ACTIONS(3), 1, + [128641] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, - anon_sym_LBRACE, - ACTIONS(2641), 1, - sym__unquoted_pattern, + ACTIONS(866), 1, + anon_sym_RBRACK, + ACTIONS(908), 1, + sym__entry_separator, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, STATE(4653), 1, sym_comment, - [127363] = 4, + [128657] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8237), 1, - anon_sym_RBRACE, - ACTIONS(8239), 1, - sym__entry_separator, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4550), 1, + sym_block, STATE(4654), 1, sym_comment, - [127376] = 4, - ACTIONS(103), 1, + [128673] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8241), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4633), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4655), 1, sym_comment, - [127389] = 4, - ACTIONS(103), 1, + ACTIONS(7948), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128685] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7589), 1, - anon_sym_RBRACE, - ACTIONS(7591), 1, - sym__entry_separator, STATE(4656), 1, sym_comment, - [127402] = 4, - ACTIONS(103), 1, + ACTIONS(7946), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128697] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8243), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, STATE(4657), 1, sym_comment, - [127415] = 4, - ACTIONS(103), 1, + ACTIONS(7946), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128709] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8245), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4658), 1, + ACTIONS(8280), 1, + anon_sym_RBRACK, + ACTIONS(8282), 1, + sym_hex_digit, + STATE(4658), 2, sym_comment, - [127428] = 4, - ACTIONS(3), 1, + aux_sym_val_binary_repeat1, + [128723] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4443), 1, - sym_block, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8285), 1, + anon_sym_RBRACK, + STATE(1949), 1, + aux_sym__types_body_repeat2, STATE(4659), 1, sym_comment, - [127441] = 4, + [128739] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, + STATE(4541), 1, + sym_block, STATE(4660), 1, sym_comment, - [127454] = 4, - ACTIONS(3), 1, + [128752] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_LBRACE, - ACTIONS(1762), 1, - sym__unquoted_pattern, + ACTIONS(8287), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4661), 1, sym_comment, - [127467] = 4, + STATE(4790), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [128765] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, STATE(4348), 1, sym_block, STATE(4662), 1, sym_comment, - [127480] = 4, - ACTIONS(103), 1, + [128778] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8247), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4215), 1, + sym_block, STATE(4663), 1, sym_comment, - [127493] = 4, + [128791] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4101), 1, + STATE(4217), 1, sym_block, STATE(4664), 1, sym_comment, - [127506] = 4, - ACTIONS(103), 1, + [128804] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8249), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(1816), 1, + anon_sym_LBRACE, + ACTIONS(1818), 1, + sym__unquoted_pattern, STATE(4665), 1, sym_comment, - [127519] = 4, - ACTIONS(3), 1, + [128817] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4110), 1, - sym_block, + ACTIONS(7587), 1, + anon_sym_RBRACE, + ACTIONS(7589), 1, + sym__entry_separator, STATE(4666), 1, sym_comment, - [127532] = 4, + [128830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4129), 1, - sym_block, + ACTIONS(5260), 1, + anon_sym_LPAREN2, STATE(4667), 1, sym_comment, - [127545] = 4, + STATE(5098), 1, + sym__expr_parenthesized_immediate, + [128843] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4136), 1, + STATE(4349), 1, sym_block, STATE(4668), 1, sym_comment, - [127558] = 4, - ACTIONS(3), 1, + [128856] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_LBRACE, - ACTIONS(2585), 1, - sym__unquoted_pattern, + ACTIONS(8289), 1, + aux_sym__unquoted_with_expr_token1, STATE(4669), 1, sym_comment, - [127571] = 4, + STATE(4768), 1, + aux_sym__unquoted_with_expr_repeat1, + [128869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4351), 1, - sym_block, + ACTIONS(8291), 1, + anon_sym_def, + ACTIONS(8293), 1, + anon_sym_extern, STATE(4670), 1, sym_comment, - [127584] = 4, + [128882] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - ACTIONS(1804), 1, - sym__unquoted_pattern, + STATE(4534), 1, + sym_block, STATE(4671), 1, sym_comment, - [127597] = 4, - ACTIONS(3), 1, + [128895] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4049), 1, - sym_block, + ACTIONS(2583), 1, + sym__entry_separator, + ACTIONS(2585), 1, + anon_sym_RBRACE, STATE(4672), 1, sym_comment, - [127610] = 4, + [128908] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - ACTIONS(2585), 1, - sym__unquoted_pattern, + STATE(4224), 1, + sym_block, STATE(4673), 1, sym_comment, - [127623] = 4, + [128921] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8251), 1, - anon_sym_DASH2, + ACTIONS(2385), 1, + anon_sym_LBRACE, + ACTIONS(2387), 1, + sym__unquoted_pattern, STATE(4674), 1, sym_comment, - STATE(4982), 1, - sym_param_short_flag, - [127636] = 4, + [128934] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8295), 1, + anon_sym_RBRACE, + ACTIONS(8297), 1, + sym__entry_separator, + STATE(4675), 1, + sym_comment, + [128947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4052), 1, + STATE(4324), 1, sym_block, - STATE(4675), 1, + STATE(4676), 1, sym_comment, - [127649] = 4, + [128960] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2523), 1, - sym__entry_separator, - ACTIONS(2525), 1, + ACTIONS(8299), 1, anon_sym_RBRACE, - STATE(4676), 1, + ACTIONS(8301), 1, + sym__entry_separator, + STATE(4677), 1, sym_comment, - [127662] = 4, + [128973] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(4677), 1, + STATE(4325), 1, + sym_block, + STATE(4678), 1, sym_comment, - [127675] = 4, + [128986] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_RBRACK, - ACTIONS(5247), 1, - sym__entry_separator, - STATE(4678), 1, + ACTIONS(8303), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4679), 2, sym_comment, - [127688] = 4, + aux_sym__unquoted_in_list_with_expr_repeat1, + [128997] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(2533), 1, anon_sym_LBRACE, - STATE(4149), 1, - sym_block, - STATE(4679), 1, + STATE(4680), 1, sym_comment, - [127701] = 4, + [129010] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4151), 1, + STATE(4494), 1, sym_block, - STATE(4680), 1, - sym_comment, - [127714] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8253), 1, - anon_sym_RBRACE, - ACTIONS(8255), 1, - sym__entry_separator, STATE(4681), 1, sym_comment, - [127727] = 4, + [129023] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7390), 1, - anon_sym_RBRACE, - ACTIONS(7392), 1, + ACTIONS(4278), 1, sym__entry_separator, + STATE(4498), 1, + aux_sym__types_body_repeat2, STATE(4682), 1, sym_comment, - [127740] = 4, + [129036] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4294), 1, + sym_block, STATE(4683), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - [127753] = 4, + [129049] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8257), 1, - anon_sym_RBRACE, - ACTIONS(8259), 1, + ACTIONS(5140), 1, sym__entry_separator, + ACTIONS(5142), 1, + anon_sym_RBRACK, STATE(4684), 1, sym_comment, - [127766] = 4, - ACTIONS(103), 1, + [129062] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7210), 1, - sym__entry_separator, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4430), 1, + sym_block, STATE(4685), 1, sym_comment, - [127779] = 4, + [129075] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4521), 1, + STATE(4338), 1, sym_block, STATE(4686), 1, sym_comment, - [127792] = 4, - ACTIONS(3), 1, + [129088] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4487), 1, - sym_block, + ACTIONS(4389), 1, + sym__entry_separator, + STATE(2118), 1, + aux_sym__types_body_repeat2, STATE(4687), 1, sym_comment, - [127805] = 4, + [129101] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4488), 1, + STATE(4339), 1, sym_block, STATE(4688), 1, sym_comment, - [127818] = 4, + [129114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4418), 1, + STATE(4297), 1, sym_block, STATE(4689), 1, sym_comment, - [127831] = 4, + [129127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4560), 1, + STATE(4277), 1, sym_block, STATE(4690), 1, sym_comment, - [127844] = 4, - ACTIONS(3), 1, + [129140] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4334), 1, - sym_block, - STATE(4691), 1, + ACTIONS(8306), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4691), 2, sym_comment, - [127857] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [129151] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4341), 1, - sym_block, + ACTIONS(6228), 1, + sym__entry_separator, + ACTIONS(6230), 1, + anon_sym_RBRACK, STATE(4692), 1, sym_comment, - [127870] = 4, - ACTIONS(3), 1, + [129164] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4489), 1, - sym_block, + ACTIONS(4278), 1, + sym__entry_separator, + STATE(2094), 1, + aux_sym__types_body_repeat2, STATE(4693), 1, sym_comment, - [127883] = 4, + [129177] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(2011), 1, anon_sym_LBRACE, - STATE(4419), 1, - sym_block, + ACTIONS(2021), 1, + sym__unquoted_pattern, STATE(4694), 1, sym_comment, - [127896] = 4, + [129190] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, + STATE(4656), 1, + sym_block, STATE(4695), 1, sym_comment, - [127909] = 4, - ACTIONS(3), 1, + [129203] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4420), 1, - sym_block, + ACTIONS(7683), 1, + anon_sym_RBRACE, + ACTIONS(7685), 1, + sym__entry_separator, STATE(4696), 1, sym_comment, - [127922] = 4, - ACTIONS(3), 1, + [129216] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1870), 1, - anon_sym_LBRACE, - ACTIONS(1872), 1, - sym__unquoted_pattern, + ACTIONS(8309), 1, + anon_sym_LPAREN2, + ACTIONS(8311), 1, + aux_sym__record_key_token1, STATE(4697), 1, sym_comment, - [127935] = 4, - ACTIONS(3), 1, + [129229] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2501), 1, - anon_sym_LBRACE, - ACTIONS(2503), 1, - sym__unquoted_pattern, + ACTIONS(2533), 1, + sym__entry_separator, + ACTIONS(2535), 1, + anon_sym_RBRACE, STATE(4698), 1, sym_comment, - [127948] = 4, + [129242] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4561), 1, + STATE(4492), 1, sym_block, STATE(4699), 1, sym_comment, - [127961] = 4, - ACTIONS(103), 1, + [129255] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_COLON2, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4278), 1, + sym_block, STATE(4700), 1, sym_comment, - [127974] = 4, + [129268] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1975), 1, - aux_sym__types_body_repeat2, + ACTIONS(8313), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4701), 1, sym_comment, - [127987] = 4, + STATE(4802), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [129281] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4422), 1, + STATE(4462), 1, sym_block, STATE(4702), 1, sym_comment, - [128000] = 4, - ACTIONS(3), 1, + [129294] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4492), 1, - sym_block, + ACTIONS(8315), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4703), 1, sym_comment, - [128013] = 4, - ACTIONS(3), 1, + STATE(4817), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [129307] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4081), 1, - sym_block, + ACTIONS(8317), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4704), 1, sym_comment, - [128026] = 4, + STATE(4819), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [129320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4082), 1, + STATE(4279), 1, sym_block, STATE(4705), 1, sym_comment, - [128039] = 4, + [129333] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(8261), 1, - anon_sym_RBRACK, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4553), 1, + sym_block, STATE(4706), 1, sym_comment, - [128052] = 4, - ACTIONS(3), 1, + [129346] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4269), 1, - sym_block, + ACTIONS(4379), 1, + sym__entry_separator, + STATE(2124), 1, + aux_sym__types_body_repeat2, STATE(4707), 1, sym_comment, - [128065] = 4, + [129359] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8263), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(5100), 1, + sym__entry_separator, + ACTIONS(5102), 1, + anon_sym_RBRACK, STATE(4708), 1, sym_comment, - STATE(4735), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128078] = 4, + [129372] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8265), 1, - anon_sym_GT2, - ACTIONS(8267), 1, - sym__entry_separator, + ACTIONS(908), 1, + anon_sym_COLON2, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, STATE(4709), 1, sym_comment, - [128091] = 4, + [129385] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6894), 1, - sym__entry_separator, - ACTIONS(8269), 1, - anon_sym_RBRACK, + ACTIONS(8319), 1, + aux_sym__unquoted_with_expr_token1, STATE(4710), 1, sym_comment, - [128104] = 4, + STATE(4722), 1, + aux_sym__unquoted_with_expr_repeat1, + [129398] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6922), 1, + ACTIONS(7609), 1, + anon_sym_RBRACE, + ACTIONS(7611), 1, sym__entry_separator, - ACTIONS(8271), 1, - anon_sym_RBRACK, STATE(4711), 1, sym_comment, - [128117] = 3, - ACTIONS(3), 1, + [129411] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8321), 1, + aux_sym__unquoted_with_expr_token1, STATE(4712), 1, sym_comment, - ACTIONS(8049), 2, - anon_sym_GT2, - anon_sym_AT2, - [128128] = 4, - ACTIONS(3), 1, + STATE(4723), 1, + aux_sym__unquoted_with_expr_repeat1, + [129424] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(1984), 1, - sym__unquoted_pattern, + ACTIONS(5134), 1, + sym__entry_separator, + ACTIONS(5136), 1, + anon_sym_RBRACK, STATE(4713), 1, sym_comment, - [128141] = 4, + [129437] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8273), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(2591), 1, + sym__entry_separator, + ACTIONS(2593), 1, + anon_sym_RBRACE, STATE(4714), 1, sym_comment, - [128154] = 4, + [129450] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8275), 1, - anon_sym_def, - ACTIONS(8277), 1, - anon_sym_extern, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4280), 1, + sym_block, STATE(4715), 1, sym_comment, - [128167] = 4, + [129463] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3757), 1, + ACTIONS(4816), 1, sym__entry_separator, - ACTIONS(8279), 1, - anon_sym_RBRACE, + STATE(2254), 1, + aux_sym__types_body_repeat2, STATE(4716), 1, sym_comment, - [128180] = 4, + [129476] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7633), 1, + ACTIONS(8323), 1, anon_sym_RBRACE, - ACTIONS(7635), 1, + ACTIONS(8325), 1, sym__entry_separator, STATE(4717), 1, sym_comment, - [128193] = 4, - ACTIONS(3), 1, + [129489] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4384), 1, - sym_block, + ACTIONS(8327), 1, + aux_sym__unquoted_with_expr_token1, STATE(4718), 1, sym_comment, - [128206] = 4, - ACTIONS(3), 1, + STATE(4751), 1, + aux_sym__unquoted_with_expr_repeat1, + [129502] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4523), 1, - sym_block, + ACTIONS(8329), 1, + aux_sym__unquoted_with_expr_token1, STATE(4719), 1, sym_comment, - [128219] = 4, + STATE(4739), 1, + aux_sym__unquoted_with_expr_repeat1, + [129515] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACE, + ACTIONS(8331), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4720), 1, sym_comment, - [128232] = 4, + STATE(4777), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [129528] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8282), 1, - anon_sym_RBRACK, - ACTIONS(8284), 1, - sym__entry_separator, + ACTIONS(8333), 1, + aux_sym__unquoted_with_expr_token1, STATE(4721), 1, sym_comment, - [128245] = 4, - ACTIONS(3), 1, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [129541] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4562), 1, - sym_block, + ACTIONS(8335), 1, + aux_sym__unquoted_with_expr_token1, STATE(4722), 1, sym_comment, - [128258] = 4, - ACTIONS(3), 1, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [129554] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, - anon_sym_LBRACE, + ACTIONS(8337), 1, + aux_sym__unquoted_with_expr_token1, STATE(4723), 1, sym_comment, - [128271] = 4, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [129567] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2001), 1, anon_sym_LBRACE, - STATE(4338), 1, - sym_block, STATE(4724), 1, sym_comment, - [128284] = 4, - ACTIONS(103), 1, + [129580] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8286), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4663), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(1752), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8278), 1, + aux_sym__immediate_decimal_token5, STATE(4725), 1, sym_comment, - [128297] = 4, - ACTIONS(3), 1, + [129593] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3076), 1, - sym_block, + ACTIONS(2525), 1, + sym__entry_separator, + ACTIONS(2527), 1, + anon_sym_RBRACE, STATE(4726), 1, sym_comment, - [128310] = 4, + [129606] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - STATE(1496), 1, - aux_sym__types_body_repeat2, STATE(4727), 1, sym_comment, - [128323] = 4, + ACTIONS(2146), 2, + anon_sym_POUND_BANG, + sym__newline, + [129617] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8288), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4708), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(7691), 1, + anon_sym_RBRACE, + ACTIONS(7693), 1, + sym__entry_separator, STATE(4728), 1, sym_comment, - [128336] = 4, + [129630] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(8339), 1, + anon_sym_RBRACE, + ACTIONS(8341), 1, sym__entry_separator, - STATE(2402), 1, - aux_sym__types_body_repeat2, STATE(4729), 1, sym_comment, - [128349] = 4, + [129643] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5963), 1, - anon_sym_RBRACK, - ACTIONS(5965), 1, - sym__entry_separator, + ACTIONS(8343), 1, + aux_sym__unquoted_with_expr_token1, STATE(4730), 1, sym_comment, - [128362] = 4, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [129656] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6115), 1, + ACTIONS(4787), 1, sym__entry_separator, - ACTIONS(6117), 1, - anon_sym_RBRACK, + STATE(2245), 1, + aux_sym__types_body_repeat2, STATE(4731), 1, sym_comment, - [128375] = 4, + [129669] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(8345), 1, + anon_sym_RBRACK, + ACTIONS(8347), 1, sym__entry_separator, - STATE(2252), 1, - aux_sym__types_body_repeat2, STATE(4732), 1, sym_comment, - [128388] = 3, - ACTIONS(3), 1, + [129682] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2013), 1, + anon_sym_RBRACE, STATE(4733), 1, sym_comment, - ACTIONS(1522), 2, - sym__table_head_separator, - anon_sym_DOT2, - [128399] = 4, - ACTIONS(3), 1, + [129695] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4563), 1, - sym_block, + ACTIONS(7640), 1, + anon_sym_RBRACE, + ACTIONS(7642), 1, + sym__entry_separator, STATE(4734), 1, sym_comment, - [128412] = 3, - ACTIONS(103), 1, + [129708] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8290), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4735), 2, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4579), 1, + sym_block, + STATE(4735), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128423] = 4, + [129721] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(7016), 1, sym__entry_separator, - STATE(1979), 1, - aux_sym__types_body_repeat2, + ACTIONS(8349), 1, + anon_sym_RBRACK, STATE(4736), 1, sym_comment, - [128436] = 4, + [129734] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4486), 1, - sym_block, + ACTIONS(6382), 1, + anon_sym_DOLLAR2, + ACTIONS(8351), 1, + anon_sym_RBRACK, STATE(4737), 1, sym_comment, - [128449] = 4, - ACTIONS(3), 1, + [129747] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4533), 1, - sym_block, + ACTIONS(6970), 1, + sym__entry_separator, + ACTIONS(8353), 1, + anon_sym_RBRACK, STATE(4738), 1, sym_comment, - [128462] = 4, + [129760] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8293), 1, + ACTIONS(8355), 1, aux_sym__unquoted_with_expr_token1, STATE(4739), 1, sym_comment, - STATE(4755), 1, + STATE(4807), 1, aux_sym__unquoted_with_expr_repeat1, - [128475] = 4, - ACTIONS(3), 1, + [129773] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4535), 1, - sym_block, + ACTIONS(5030), 1, + sym__entry_separator, + ACTIONS(5032), 1, + anon_sym_GT2, STATE(4740), 1, sym_comment, - [128488] = 4, - ACTIONS(103), 1, + [129786] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4514), 1, + sym_block, STATE(4741), 1, sym_comment, - [128501] = 4, - ACTIONS(103), 1, + [129799] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8295), 1, - anon_sym_RBRACK, - ACTIONS(8297), 1, - sym__entry_separator, + ACTIONS(1854), 1, + anon_sym_LBRACE, + ACTIONS(1856), 1, + sym__unquoted_pattern, STATE(4742), 1, sym_comment, - [128514] = 3, - ACTIONS(3), 1, + [129812] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(3903), 1, + sym__entry_separator, + ACTIONS(8357), 1, + anon_sym_RBRACE, STATE(4743), 1, sym_comment, - ACTIONS(1537), 2, - sym__table_head_separator, - anon_sym_DOT2, - [128525] = 4, - ACTIONS(103), 1, + [129825] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - STATE(2120), 1, - aux_sym__types_body_repeat2, + ACTIONS(1738), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__unquoted_pattern, STATE(4744), 1, sym_comment, - [128538] = 4, - ACTIONS(103), 1, + [129838] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8299), 1, - sym__newline, - ACTIONS(8301), 1, - sym__space, STATE(4745), 1, sym_comment, - [128551] = 4, - ACTIONS(103), 1, + ACTIONS(1515), 2, + sym__table_head_separator, + anon_sym_DOT2, + [129849] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8303), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4524), 1, + sym_block, STATE(4746), 1, sym_comment, - STATE(4757), 1, - aux_sym__unquoted_with_expr_repeat1, - [128564] = 4, + [129862] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4500), 1, - sym_block, + ACTIONS(1714), 1, + anon_sym_LPAREN2, STATE(4747), 1, sym_comment, - [128577] = 4, - ACTIONS(103), 1, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + [129875] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4657), 1, + sym_block, STATE(4748), 1, sym_comment, - [128590] = 4, + [129888] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(8360), 1, + anon_sym_RBRACE, + ACTIONS(8362), 1, sym__entry_separator, - STATE(4367), 1, - aux_sym__types_body_repeat2, STATE(4749), 1, sym_comment, - [128603] = 4, - ACTIONS(103), 1, + [129901] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, + ACTIONS(6382), 1, + anon_sym_DOLLAR2, + ACTIONS(8364), 1, + anon_sym_RBRACK, STATE(4750), 1, sym_comment, - [128616] = 4, + [129914] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8305), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8366), 1, + aux_sym__unquoted_with_expr_token1, STATE(4751), 1, sym_comment, - STATE(4764), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128629] = 4, - ACTIONS(3), 1, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [129927] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(8307), 1, - anon_sym_RBRACK, + ACTIONS(8368), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4752), 1, sym_comment, - [128642] = 4, - ACTIONS(103), 1, + STATE(4782), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [129940] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3214), 1, + sym_block, STATE(4753), 1, sym_comment, - [128655] = 4, + [129953] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, + ACTIONS(8370), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4721), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4754), 1, sym_comment, - [128668] = 4, + [129966] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8309), 1, + ACTIONS(8372), 1, aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, + STATE(4730), 1, aux_sym__unquoted_with_expr_repeat1, STATE(4755), 1, sym_comment, - [128681] = 4, - ACTIONS(3), 1, + [129979] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3106), 1, - sym_block, + ACTIONS(1612), 1, + sym__entry_separator, + STATE(1490), 1, + aux_sym__types_body_repeat2, STATE(4756), 1, sym_comment, - [128694] = 4, + [129992] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8311), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6139), 1, + anon_sym_RBRACK, + ACTIONS(6141), 1, + sym__entry_separator, STATE(4757), 1, sym_comment, - [128707] = 4, - ACTIONS(103), 1, + [130005] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - STATE(1491), 1, - aux_sym__types_body_repeat2, + ACTIONS(1018), 1, + anon_sym_LBRACE, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4758), 1, sym_comment, - [128720] = 4, - ACTIONS(103), 1, + [130018] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3490), 1, - sym__space, - STATE(1407), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(2583), 1, + anon_sym_LBRACE, + ACTIONS(2589), 1, + sym__unquoted_pattern, STATE(4759), 1, sym_comment, - [128733] = 4, + [130031] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6061), 1, + ACTIONS(5389), 1, + anon_sym_RBRACK, + ACTIONS(5391), 1, sym__entry_separator, - ACTIONS(6063), 1, - anon_sym_GT2, STATE(4760), 1, sym_comment, - [128746] = 4, - ACTIONS(103), 1, + [130044] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8313), 1, - anon_sym_RBRACE, - ACTIONS(8315), 1, - sym__entry_separator, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4449), 1, + sym_block, STATE(4761), 1, sym_comment, - [128759] = 4, - ACTIONS(103), 1, + [130057] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6065), 1, - sym__entry_separator, - ACTIONS(6067), 1, - anon_sym_GT2, + ACTIONS(1004), 1, + anon_sym_LBRACE, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4762), 1, sym_comment, - [128772] = 4, + [130070] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(3159), 1, + STATE(4239), 1, sym_block, STATE(4763), 1, sym_comment, - [128785] = 4, - ACTIONS(103), 1, + [130083] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8317), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4735), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4240), 1, + sym_block, STATE(4764), 1, sym_comment, - [128798] = 4, - ACTIONS(103), 1, + [130096] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7654), 1, - anon_sym_RBRACE, - ACTIONS(7656), 1, - sym__entry_separator, + ACTIONS(6599), 1, + anon_sym_LPAREN2, STATE(4765), 1, sym_comment, - [128811] = 3, - ACTIONS(3), 1, + STATE(5017), 1, + sym__expr_parenthesized_immediate, + [130109] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8374), 1, + aux_sym__unquoted_with_expr_token1, STATE(4766), 1, sym_comment, - ACTIONS(8319), 2, - anon_sym_RBRACK, - sym_hex_digit, - [128822] = 4, - ACTIONS(103), 1, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [130122] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - STATE(2118), 1, - aux_sym__types_body_repeat2, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(3246), 1, + sym_block, STATE(4767), 1, sym_comment, - [128835] = 4, + [130135] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8321), 1, - anon_sym_RBRACE, - ACTIONS(8323), 1, - sym__entry_separator, + ACTIONS(8376), 1, + aux_sym__unquoted_with_expr_token1, STATE(4768), 1, sym_comment, - [128848] = 4, - ACTIONS(3), 1, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [130148] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8167), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7695), 1, + anon_sym_RBRACE, + ACTIONS(7697), 1, + sym__entry_separator, STATE(4769), 1, sym_comment, - [128861] = 4, - ACTIONS(103), 1, + [130161] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8325), 1, - anon_sym_RBRACK, - ACTIONS(8327), 1, - sym__entry_separator, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4107), 1, + sym_block, STATE(4770), 1, sym_comment, - [128874] = 4, + [130174] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - STATE(4240), 1, - sym_block, + ACTIONS(2597), 1, + sym__unquoted_pattern, STATE(4771), 1, sym_comment, - [128887] = 4, + [130187] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8331), 1, - aux_sym__record_key_token1, + ACTIONS(8378), 1, + sym__newline, + ACTIONS(8380), 1, + sym__space, STATE(4772), 1, sym_comment, - [128900] = 4, - ACTIONS(3), 1, + [130200] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8333), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2001), 1, + sym__entry_separator, + ACTIONS(2003), 1, + anon_sym_RBRACE, STATE(4773), 1, sym_comment, - [128913] = 4, - ACTIONS(103), 1, + [130213] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7662), 1, - anon_sym_RBRACE, - ACTIONS(7664), 1, - sym__entry_separator, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(1724), 1, + sym__unquoted_pattern, STATE(4774), 1, sym_comment, - [128926] = 4, - ACTIONS(103), 1, + [130226] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8335), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4657), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4474), 1, + sym_block, STATE(4775), 1, sym_comment, - [128939] = 4, + [130239] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3395), 1, - sym_block, STATE(4776), 1, sym_comment, - [128952] = 4, + ACTIONS(1531), 2, + sym__table_head_separator, + anon_sym_DOT2, + [130250] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8337), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4658), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8382), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4679), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(4777), 1, sym_comment, - [128965] = 4, - ACTIONS(103), 1, + [130263] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4249), 1, + sym_block, STATE(4778), 1, sym_comment, - [128978] = 4, + [130276] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(3346), 1, + STATE(4250), 1, sym_block, STATE(4779), 1, sym_comment, - [128991] = 4, - ACTIONS(103), 1, + [130289] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(1018), 1, - sym__entry_separator, STATE(4780), 1, sym_comment, - [129004] = 4, + ACTIONS(1535), 2, + sym__table_head_separator, + anon_sym_DOT2, + [130300] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(1706), 1, anon_sym_LBRACE, - STATE(4144), 1, - sym_block, + ACTIONS(2622), 1, + sym__unquoted_pattern, STATE(4781), 1, sym_comment, - [129017] = 4, - ACTIONS(3), 1, + [130313] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4156), 1, - sym_block, + ACTIONS(8384), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4691), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4782), 1, sym_comment, - [129030] = 4, + [130326] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8339), 1, - sym_identifier, - ACTIONS(8341), 1, - anon_sym_DOLLAR, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4257), 1, + sym_block, STATE(4783), 1, sym_comment, - [129043] = 4, + [130339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8343), 1, - anon_sym_def, - ACTIONS(8345), 1, - anon_sym_extern, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4261), 1, + sym_block, STATE(4784), 1, sym_comment, - [129056] = 4, + [130352] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - STATE(2240), 1, - aux_sym__types_body_repeat2, + ACTIONS(8386), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4766), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4785), 1, sym_comment, - [129069] = 4, + [130365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1726), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - ACTIONS(1728), 1, - sym__unquoted_pattern, + STATE(4341), 1, + sym_block, STATE(4786), 1, sym_comment, - [129082] = 4, + [130378] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - ACTIONS(2633), 1, - sym__unquoted_pattern, + STATE(3256), 1, + sym_block, STATE(4787), 1, sym_comment, - [129095] = 4, + [130391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3442), 1, + sym_block, STATE(4788), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [129108] = 4, + [130404] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(4278), 1, + sym__entry_separator, + STATE(2096), 1, + aux_sym__types_body_repeat2, STATE(4789), 1, sym_comment, - [129121] = 4, + [130417] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2569), 1, - anon_sym_RBRACE, + ACTIONS(8388), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4691), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4790), 1, sym_comment, - [129134] = 3, - ACTIONS(103), 1, + [130430] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8349), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2525), 1, + anon_sym_LBRACE, STATE(4791), 1, sym_comment, - [129144] = 3, + [130443] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8351), 1, - anon_sym_DQUOTE, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4342), 1, + sym_block, STATE(4792), 1, sym_comment, - [129154] = 3, - ACTIONS(3), 1, + [130456] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8353), 1, - anon_sym_SQUOTE2, + ACTIONS(1612), 1, + sym__entry_separator, + STATE(1494), 1, + aux_sym__types_body_repeat2, STATE(4793), 1, sym_comment, - [129164] = 3, + [130469] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8355), 1, - anon_sym_BQUOTE2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3381), 1, + sym_block, STATE(4794), 1, sym_comment, - [129174] = 3, - ACTIONS(3), 1, + [130482] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8357), 1, - anon_sym_LT, + ACTIONS(8390), 1, + anon_sym_RBRACK, + ACTIONS(8392), 1, + sym__entry_separator, STATE(4795), 1, sym_comment, - [129184] = 3, + [130495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8359), 1, - anon_sym_RBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4479), 1, + sym_block, STATE(4796), 1, sym_comment, - [129194] = 3, - ACTIONS(3), 1, + [130508] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8361), 1, + ACTIONS(5118), 1, + sym__entry_separator, + ACTIONS(5120), 1, anon_sym_RBRACK, STATE(4797), 1, sym_comment, - [129204] = 3, + [130521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8363), 1, - anon_sym_RPAREN, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4343), 1, + sym_block, STATE(4798), 1, sym_comment, - [129214] = 3, - ACTIONS(3), 1, + [130534] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8365), 1, - anon_sym_RPAREN, + ACTIONS(5122), 1, + sym__entry_separator, + ACTIONS(5124), 1, + anon_sym_RBRACK, STATE(4799), 1, sym_comment, - [129224] = 3, + [130547] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8367), 1, - anon_sym_DQUOTE, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4345), 1, + sym_block, STATE(4800), 1, sym_comment, - [129234] = 3, + [130560] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8369), 1, - sym_raw_string_end, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4481), 1, + sym_block, STATE(4801), 1, sym_comment, - [129244] = 3, + [130573] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8371), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8394), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4679), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(4802), 1, sym_comment, - [129254] = 3, + [130586] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8373), 1, - anon_sym_RBRACE, + ACTIONS(8396), 1, + anon_sym_def, + ACTIONS(8398), 1, + anon_sym_extern, STATE(4803), 1, sym_comment, - [129264] = 3, + [130599] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8375), 1, - anon_sym_RPAREN, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4487), 1, + sym_block, STATE(4804), 1, sym_comment, - [129274] = 3, + [130612] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8377), 1, - sym_raw_string_end, + ACTIONS(8400), 1, + sym_identifier, + ACTIONS(8402), 1, + anon_sym_DOLLAR, STATE(4805), 1, sym_comment, - [129284] = 3, - ACTIONS(3), 1, + [130625] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_RPAREN2, + ACTIONS(8404), 1, + anon_sym_RBRACK, + ACTIONS(8406), 1, + sym__entry_separator, STATE(4806), 1, sym_comment, - [129294] = 3, - ACTIONS(3), 1, + [130638] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8379), 1, - anon_sym_GT2, - STATE(4807), 1, + ACTIONS(8408), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4807), 2, sym_comment, - [129304] = 3, + aux_sym__unquoted_with_expr_repeat1, + [130649] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8381), 1, - anon_sym_GT2, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4621), 1, + sym_block, STATE(4808), 1, sym_comment, - [129314] = 3, - ACTIONS(3), 1, + [130662] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8383), 1, - anon_sym_RBRACK, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, STATE(4809), 1, sym_comment, - [129324] = 3, + [130675] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(301), 1, - anon_sym_RBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4490), 1, + sym_block, STATE(4810), 1, sym_comment, - [129334] = 3, - ACTIONS(3), 1, + [130688] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8385), 1, - anon_sym_RBRACE, + ACTIONS(3488), 1, + sym__space, + STATE(1407), 1, + aux_sym_pipe_element_repeat1, STATE(4811), 1, sym_comment, - [129344] = 3, + [130701] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8387), 1, - anon_sym_DQUOTE, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4548), 1, + sym_block, STATE(4812), 1, sym_comment, - [129354] = 3, - ACTIONS(3), 1, + [130714] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8389), 1, - anon_sym_SQUOTE2, + ACTIONS(7513), 1, + anon_sym_RBRACK, + ACTIONS(7515), 1, + sym__entry_separator, STATE(4813), 1, sym_comment, - [129364] = 3, + [130727] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8391), 1, - anon_sym_BQUOTE2, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4575), 1, + sym_block, STATE(4814), 1, sym_comment, - [129374] = 3, + [130740] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8393), 1, - anon_sym_RBRACK, + ACTIONS(8411), 1, + anon_sym_DASH2, STATE(4815), 1, sym_comment, - [129384] = 3, + STATE(5039), 1, + sym_param_short_flag, + [130753] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8395), 1, - anon_sym_RBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4549), 1, + sym_block, STATE(4816), 1, sym_comment, - [129394] = 3, - ACTIONS(3), 1, + [130766] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8397), 1, - anon_sym_RPAREN, + ACTIONS(8413), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4691), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4817), 1, sym_comment, - [129404] = 3, - ACTIONS(103), 1, + [130779] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8399), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4476), 1, + sym_block, STATE(4818), 1, sym_comment, - [129414] = 3, - ACTIONS(3), 1, + [130792] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8401), 1, - anon_sym_RBRACE, + ACTIONS(8415), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4691), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4819), 1, sym_comment, - [129424] = 3, + [130805] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_RBRACE, STATE(4820), 1, sym_comment, - [129434] = 3, - ACTIONS(3), 1, + ACTIONS(8417), 2, + anon_sym_RBRACK, + sym_hex_digit, + [130816] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8405), 1, - anon_sym_DASH_GT, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7205), 1, + sym__entry_separator, STATE(4821), 1, sym_comment, - [129444] = 3, + [130829] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8407), 1, - sym_raw_string_end, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4542), 1, + sym_block, STATE(4822), 1, sym_comment, - [129454] = 3, - ACTIONS(103), 1, + [130842] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8409), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(1818), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8419), 1, + aux_sym__immediate_decimal_token5, STATE(4823), 1, sym_comment, - [129464] = 3, - ACTIONS(3), 1, + [130855] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8411), 1, - anon_sym_DQUOTE, + ACTIONS(5070), 1, + sym__entry_separator, + ACTIONS(5072), 1, + anon_sym_RBRACK, STATE(4824), 1, sym_comment, - [129474] = 3, + [130868] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8413), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(1002), 1, + anon_sym_RBRACE, + ACTIONS(1018), 1, + sym__entry_separator, STATE(4825), 1, sym_comment, - [129484] = 3, + [130881] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8415), 1, - anon_sym_RBRACK, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4608), 1, + sym_block, STATE(4826), 1, sym_comment, - [129494] = 3, - ACTIONS(3), 1, + [130894] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8417), 1, - anon_sym_RPAREN, + ACTIONS(994), 1, + anon_sym_RBRACE, + ACTIONS(1004), 1, + sym__entry_separator, STATE(4827), 1, sym_comment, - [129504] = 3, + [130907] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8419), 1, - anon_sym_RBRACE, STATE(4828), 1, sym_comment, - [129514] = 3, + ACTIONS(5030), 2, + anon_sym_GT2, + anon_sym_AT2, + [130918] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8421), 1, - anon_sym_DQUOTE, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4620), 1, + sym_block, STATE(4829), 1, sym_comment, - [129524] = 3, + [130931] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, - anon_sym_SQUOTE2, STATE(4830), 1, sym_comment, - [129534] = 3, + ACTIONS(8421), 2, + sym__newline, + anon_sym_SEMI, + [130942] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8425), 1, - anon_sym_BQUOTE2, + ACTIONS(8423), 1, + anon_sym_LT, STATE(4831), 1, sym_comment, - [129544] = 3, + [130952] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8427), 1, - anon_sym_RPAREN, + ACTIONS(8425), 1, + anon_sym_BQUOTE2, STATE(4832), 1, sym_comment, - [129554] = 3, - ACTIONS(103), 1, + [130962] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, - aux_sym__record_key_token1, + ACTIONS(8427), 1, + anon_sym_RBRACK, STATE(4833), 1, sym_comment, - [129564] = 3, + [130972] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8429), 1, - anon_sym_SQUOTE2, + anon_sym_RPAREN, STATE(4834), 1, sym_comment, - [129574] = 3, - ACTIONS(3), 1, + [130982] = 3, + ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8431), 1, - anon_sym_RPAREN, + aux_sym_cmd_identifier_token6, STATE(4835), 1, sym_comment, - [129584] = 3, - ACTIONS(3), 1, + [130992] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8433), 1, - anon_sym_EQ, + ACTIONS(8311), 1, + aux_sym__record_key_token1, STATE(4836), 1, sym_comment, - [129594] = 3, + [131002] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8435), 1, - sym_raw_string_end, + ACTIONS(8433), 1, + anon_sym_RBRACK, STATE(4837), 1, sym_comment, - [129604] = 3, + [131012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, + ACTIONS(8435), 1, + anon_sym_RPAREN, STATE(4838), 1, sym_comment, - [129614] = 3, - ACTIONS(3), 1, + [131022] = 3, + ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8437), 1, - anon_sym_RPAREN, + aux_sym_cmd_identifier_token6, STATE(4839), 1, sym_comment, - [129624] = 3, + [131032] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8439), 1, - anon_sym_RBRACK, + ACTIONS(1598), 1, + sym__unquoted_pattern, STATE(4840), 1, sym_comment, - [129634] = 3, - ACTIONS(103), 1, + [131042] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8439), 1, + anon_sym_LT, STATE(4841), 1, sym_comment, - [129644] = 3, + [131052] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8441), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, STATE(4842), 1, sym_comment, - [129654] = 3, + [131062] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8443), 1, - anon_sym_DQUOTE, + ACTIONS(5118), 1, + anon_sym_EQ2, STATE(4843), 1, sym_comment, - [129664] = 3, + [131072] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8445), 1, - anon_sym_SQUOTE2, + ACTIONS(8443), 1, + sym_raw_string_end, STATE(4844), 1, sym_comment, - [129674] = 3, + [131082] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8447), 1, - anon_sym_BQUOTE2, + ACTIONS(8445), 1, + anon_sym_in, STATE(4845), 1, sym_comment, - [129684] = 3, + [131092] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8449), 1, - anon_sym_RPAREN, + ACTIONS(8447), 1, + sym_raw_string_end, STATE(4846), 1, sym_comment, - [129694] = 3, + [131102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8451), 1, - sym_raw_string_end, + ACTIONS(8449), 1, + anon_sym_EQ, STATE(4847), 1, sym_comment, - [129704] = 3, + [131112] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8453), 1, - sym_identifier, + ACTIONS(8451), 1, + anon_sym_RPAREN, STATE(4848), 1, sym_comment, - [129714] = 3, + [131122] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8455), 1, - anon_sym_DASH_GT, + ACTIONS(8453), 1, + anon_sym_RBRACK, STATE(4849), 1, sym_comment, - [129724] = 3, + [131132] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8457), 1, - sym_raw_string_end, + ACTIONS(8455), 1, + anon_sym_RBRACK, STATE(4850), 1, sym_comment, - [129734] = 3, + [131142] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5048), 1, - sym__unquoted_pattern, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_record, STATE(4851), 1, sym_comment, - [129744] = 3, + [131152] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8459), 1, - anon_sym_RBRACE, + ACTIONS(8457), 1, + anon_sym_LPAREN2, STATE(4852), 1, sym_comment, - [129754] = 3, + [131162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, + ACTIONS(8459), 1, + anon_sym_DQUOTE, STATE(4853), 1, sym_comment, - [129764] = 3, + [131172] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8461), 1, - anon_sym_RBRACK, + anon_sym_SQUOTE2, STATE(4854), 1, sym_comment, - [129774] = 3, + [131182] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8463), 1, - anon_sym_DQUOTE, + anon_sym_BQUOTE2, STATE(4855), 1, sym_comment, - [129784] = 3, + [131192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8465), 1, - anon_sym_SQUOTE2, + ACTIONS(307), 1, + anon_sym_RBRACE, STATE(4856), 1, sym_comment, - [129794] = 3, + [131202] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_BQUOTE2, + ACTIONS(8465), 1, + anon_sym_RBRACK, STATE(4857), 1, sym_comment, - [129804] = 3, + [131212] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8469), 1, - anon_sym_RBRACE, + ACTIONS(8467), 1, + anon_sym_RPAREN, STATE(4858), 1, sym_comment, - [129814] = 3, + [131222] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8471), 1, - anon_sym_RBRACE, + ACTIONS(4127), 1, + sym__unquoted_pattern, STATE(4859), 1, sym_comment, - [129824] = 3, + [131232] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8473), 1, - sym_raw_string_end, + ACTIONS(8469), 1, + sym_attribute_identifier, STATE(4860), 1, sym_comment, - [129834] = 3, - ACTIONS(3), 1, + [131242] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, + ACTIONS(1882), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4861), 1, sym_comment, - [129844] = 3, + [131252] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8475), 1, - sym_identifier, + ACTIONS(8471), 1, + anon_sym_RBRACE, STATE(4862), 1, sym_comment, - [129854] = 3, + [131262] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8477), 1, - anon_sym_RBRACK, + ACTIONS(8473), 1, + sym_raw_string_end, STATE(4863), 1, sym_comment, - [129864] = 3, + [131272] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8479), 1, - anon_sym_DQUOTE, + ACTIONS(8475), 1, + anon_sym_RPAREN, STATE(4864), 1, sym_comment, - [129874] = 3, + [131282] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8481), 1, - anon_sym_SQUOTE2, + ACTIONS(8477), 1, + anon_sym_RBRACE, STATE(4865), 1, sym_comment, - [129884] = 3, + [131292] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8483), 1, - anon_sym_BQUOTE2, + ACTIONS(8479), 1, + anon_sym_RBRACE, STATE(4866), 1, sym_comment, - [129894] = 3, + [131302] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, + ACTIONS(8481), 1, + anon_sym_RBRACK, STATE(4867), 1, sym_comment, - [129904] = 3, + [131312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8485), 1, - anon_sym_RPAREN, + ACTIONS(1740), 1, + sym__unquoted_pattern_in_record, STATE(4868), 1, sym_comment, - [129914] = 3, + [131322] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8487), 1, - sym_raw_string_end, + ACTIONS(8483), 1, + anon_sym_RBRACK, STATE(4869), 1, sym_comment, - [129924] = 3, + [131332] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8489), 1, - anon_sym_RBRACK, + ACTIONS(8485), 1, + anon_sym_DQUOTE, STATE(4870), 1, sym_comment, - [129934] = 3, + [131342] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8491), 1, - anon_sym_GT2, + ACTIONS(8487), 1, + anon_sym_SQUOTE2, STATE(4871), 1, sym_comment, - [129944] = 3, + [131352] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, + ACTIONS(8489), 1, + anon_sym_BQUOTE2, STATE(4872), 1, sym_comment, - [129954] = 3, + [131362] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8493), 1, - anon_sym_DQUOTE, + ACTIONS(8491), 1, + anon_sym_RPAREN, STATE(4873), 1, sym_comment, - [129964] = 3, + [131372] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8495), 1, - anon_sym_SQUOTE2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_record, STATE(4874), 1, sym_comment, - [129974] = 3, + [131382] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8497), 1, - anon_sym_BQUOTE2, + ACTIONS(8493), 1, + anon_sym_RPAREN, STATE(4875), 1, sym_comment, - [129984] = 3, + [131392] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, - anon_sym_RPAREN, + ACTIONS(8495), 1, + anon_sym_GT2, STATE(4876), 1, sym_comment, - [129994] = 3, - ACTIONS(103), 1, + [131402] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8497), 1, + anon_sym_RPAREN, STATE(4877), 1, sym_comment, - [130004] = 3, + [131412] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8501), 1, + ACTIONS(8499), 1, sym_raw_string_end, STATE(4878), 1, sym_comment, - [130014] = 3, + [131422] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7841), 1, - anon_sym_LBRACE, + ACTIONS(8501), 1, + sym_identifier, STATE(4879), 1, sym_comment, - [130024] = 3, + [131432] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8503), 1, - anon_sym_DQUOTE, + ACTIONS(309), 1, + anon_sym_RBRACE, STATE(4880), 1, sym_comment, - [130034] = 3, + [131442] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8505), 1, - anon_sym_SQUOTE2, + ACTIONS(8503), 1, + anon_sym_DQUOTE, STATE(4881), 1, sym_comment, - [130044] = 3, + [131452] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8507), 1, - anon_sym_BQUOTE2, + ACTIONS(8505), 1, + anon_sym_SQUOTE2, STATE(4882), 1, sym_comment, - [130054] = 3, + [131462] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8509), 1, - sym_raw_string_end, + ACTIONS(8507), 1, + anon_sym_RBRACE, STATE(4883), 1, sym_comment, - [130064] = 3, + [131472] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, + ACTIONS(8509), 1, + anon_sym_DQUOTE, STATE(4884), 1, sym_comment, - [130074] = 3, + [131482] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8511), 1, - sym_raw_string_end, + anon_sym_SQUOTE2, STATE(4885), 1, sym_comment, - [130084] = 3, + [131492] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8513), 1, - anon_sym_RBRACK, + anon_sym_BQUOTE2, STATE(4886), 1, sym_comment, - [130094] = 3, + [131502] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8515), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, STATE(4887), 1, sym_comment, - [130104] = 3, + [131512] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8517), 1, - anon_sym_SQUOTE2, + anon_sym_RPAREN, STATE(4888), 1, sym_comment, - [130114] = 3, + [131522] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8519), 1, - anon_sym_BQUOTE2, + anon_sym_RBRACE, STATE(4889), 1, sym_comment, - [130124] = 3, + [131532] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8521), 1, - anon_sym_SQUOTE2, + anon_sym_BQUOTE2, STATE(4890), 1, sym_comment, - [130134] = 3, + [131542] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8523), 1, - anon_sym_RPAREN, + sym_raw_string_end, STATE(4891), 1, sym_comment, - [130144] = 3, + [131552] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8525), 1, - sym_raw_string_end, + anon_sym_RBRACE, STATE(4892), 1, sym_comment, - [130154] = 3, + [131562] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8527), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, STATE(4893), 1, sym_comment, - [130164] = 3, + [131572] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8529), 1, anon_sym_DQUOTE, STATE(4894), 1, sym_comment, - [130174] = 3, + [131582] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8531), 1, - anon_sym_SQUOTE2, + anon_sym_RPAREN, STATE(4895), 1, sym_comment, - [130184] = 3, + [131592] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8533), 1, - anon_sym_BQUOTE2, + anon_sym_DQUOTE, STATE(4896), 1, sym_comment, - [130194] = 3, + [131602] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8535), 1, - anon_sym_GT2, + anon_sym_SQUOTE2, STATE(4897), 1, sym_comment, - [130204] = 3, + [131612] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(297), 1, - anon_sym_RBRACE, + ACTIONS(8537), 1, + anon_sym_BQUOTE2, STATE(4898), 1, sym_comment, - [130214] = 3, + [131622] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8537), 1, - sym_raw_string_end, + ACTIONS(8539), 1, + sym_identifier, STATE(4899), 1, sym_comment, - [130224] = 3, + [131632] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(309), 1, - anon_sym_RBRACE, + ACTIONS(8541), 1, + anon_sym_SQUOTE2, STATE(4900), 1, sym_comment, - [130234] = 3, + [131642] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8539), 1, - anon_sym_DQUOTE, + ACTIONS(8543), 1, + sym_raw_string_end, STATE(4901), 1, sym_comment, - [130244] = 3, + [131652] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8541), 1, - anon_sym_SQUOTE2, + ACTIONS(8545), 1, + anon_sym_BQUOTE2, STATE(4902), 1, sym_comment, - [130254] = 3, + [131662] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8543), 1, - anon_sym_BQUOTE2, + ACTIONS(8547), 1, + anon_sym_RBRACK, STATE(4903), 1, sym_comment, - [130264] = 3, + [131672] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8545), 1, - anon_sym_RBRACE, + ACTIONS(8549), 1, + sym_raw_string_end, STATE(4904), 1, sym_comment, - [130274] = 3, - ACTIONS(103), 1, + [131682] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8551), 1, + anon_sym_LBRACE, STATE(4905), 1, sym_comment, - [130284] = 3, + [131692] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8547), 1, - sym_raw_string_end, + ACTIONS(8553), 1, + anon_sym_DQUOTE, STATE(4906), 1, sym_comment, - [130294] = 3, + [131702] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8549), 1, - anon_sym_RBRACE, + ACTIONS(8555), 1, + anon_sym_SQUOTE2, STATE(4907), 1, sym_comment, - [130304] = 3, + [131712] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8551), 1, - anon_sym_DQUOTE, + ACTIONS(8557), 1, + anon_sym_BQUOTE2, STATE(4908), 1, sym_comment, - [130314] = 3, - ACTIONS(3), 1, + [131722] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8553), 1, - anon_sym_SQUOTE2, + ACTIONS(8559), 1, + aux_sym_cmd_identifier_token6, STATE(4909), 1, sym_comment, - [130324] = 3, + [131732] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8555), 1, - anon_sym_BQUOTE2, + ACTIONS(8561), 1, + anon_sym_EQ, STATE(4910), 1, sym_comment, - [130334] = 3, + [131742] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8557), 1, - anon_sym_RBRACK, + ACTIONS(8563), 1, + sym_raw_string_end, STATE(4911), 1, sym_comment, - [130344] = 3, + [131752] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8559), 1, - sym_raw_string_end, + ACTIONS(8565), 1, + anon_sym_RPAREN, STATE(4912), 1, sym_comment, - [130354] = 3, + [131762] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8561), 1, - anon_sym_DQUOTE, + ACTIONS(2589), 1, + sym__unquoted_pattern_in_record, STATE(4913), 1, sym_comment, - [130364] = 3, + [131772] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8563), 1, - anon_sym_SQUOTE2, + ACTIONS(8567), 1, + anon_sym_EQ, STATE(4914), 1, sym_comment, - [130374] = 3, + [131782] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8565), 1, - anon_sym_BQUOTE2, + ACTIONS(8569), 1, + anon_sym_DQUOTE, STATE(4915), 1, sym_comment, - [130384] = 3, + [131792] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8567), 1, - sym_raw_string_content, + ACTIONS(8571), 1, + anon_sym_SQUOTE2, STATE(4916), 1, sym_comment, - [130394] = 3, + [131802] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7770), 1, - anon_sym_EQ_GT, + ACTIONS(8573), 1, + anon_sym_BQUOTE2, STATE(4917), 1, sym_comment, - [130404] = 3, + [131812] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7342), 1, - sym__unquoted_pattern, + ACTIONS(8575), 1, + sym_long_flag_identifier, STATE(4918), 1, sym_comment, - [130414] = 3, + [131822] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8569), 1, - anon_sym_RBRACE, + ACTIONS(8577), 1, + anon_sym_PIPE, STATE(4919), 1, sym_comment, - [130424] = 3, + [131832] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2132), 1, - anon_sym_LBRACK2, + ACTIONS(8579), 1, + sym_raw_string_end, STATE(4920), 1, sym_comment, - [130434] = 3, - ACTIONS(103), 1, + [131842] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8571), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(5122), 1, + anon_sym_EQ2, STATE(4921), 1, sym_comment, - [130444] = 3, - ACTIONS(103), 1, + [131852] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8573), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8581), 1, + anon_sym_DQUOTE, STATE(4922), 1, sym_comment, - [130454] = 3, - ACTIONS(103), 1, + [131862] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8575), 1, - aux_sym_shebang_token1, + ACTIONS(8583), 1, + anon_sym_SQUOTE2, STATE(4923), 1, sym_comment, - [130464] = 3, + [131872] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8577), 1, - anon_sym_in, + ACTIONS(8585), 1, + anon_sym_BQUOTE2, STATE(4924), 1, sym_comment, - [130474] = 3, - ACTIONS(3), 1, + [131882] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8579), 1, - anon_sym_GT2, + ACTIONS(8587), 1, + aux_sym_cmd_identifier_token6, STATE(4925), 1, sym_comment, - [130484] = 3, + [131892] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_RBRACK, + ACTIONS(8589), 1, + sym_param_short_flag_identifier, STATE(4926), 1, sym_comment, - [130494] = 3, + [131902] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8591), 1, + sym_raw_string_end, STATE(4927), 1, sym_comment, - [130504] = 3, + [131912] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8593), 1, + anon_sym_RBRACK, STATE(4928), 1, sym_comment, - [130514] = 3, + [131922] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8583), 1, - anon_sym_RBRACE, + ACTIONS(8595), 1, + anon_sym_DQUOTE, STATE(4929), 1, sym_comment, - [130524] = 3, + [131932] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8585), 1, - anon_sym_PIPE, + ACTIONS(8597), 1, + anon_sym_SQUOTE2, STATE(4930), 1, sym_comment, - [130534] = 3, + [131942] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7867), 1, - anon_sym_LBRACE, + ACTIONS(8599), 1, + anon_sym_BQUOTE2, STATE(4931), 1, sym_comment, - [130544] = 3, + [131952] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8587), 1, - anon_sym_LBRACE, + ACTIONS(8601), 1, + anon_sym_RBRACE, STATE(4932), 1, sym_comment, - [130554] = 3, + [131962] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8589), 1, - anon_sym_GT2, + ACTIONS(8603), 1, + anon_sym_EQ, STATE(4933), 1, sym_comment, - [130564] = 3, + [131972] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8591), 1, - anon_sym_RBRACK, + ACTIONS(8605), 1, + sym_raw_string_end, STATE(4934), 1, sym_comment, - [130574] = 3, + [131982] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_EQ2, + ACTIONS(8607), 1, + anon_sym_RBRACE, STATE(4935), 1, sym_comment, - [130584] = 3, - ACTIONS(103), 1, + [131992] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8609), 1, + anon_sym_DQUOTE, STATE(4936), 1, sym_comment, - [130594] = 3, + [132002] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1708), 1, - anon_sym_COLON2, + ACTIONS(8611), 1, + anon_sym_SQUOTE2, STATE(4937), 1, sym_comment, - [130604] = 3, + [132012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8593), 1, - anon_sym_RPAREN, + ACTIONS(8613), 1, + anon_sym_BQUOTE2, STATE(4938), 1, sym_comment, - [130614] = 3, + [132022] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_DQUOTE, + ACTIONS(8615), 1, + anon_sym_RPAREN, STATE(4939), 1, sym_comment, - [130624] = 3, + [132032] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8597), 1, - anon_sym_SQUOTE2, + ACTIONS(8617), 1, + anon_sym_DQUOTE, STATE(4940), 1, sym_comment, - [130634] = 3, + [132042] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8599), 1, - anon_sym_RBRACE, + ACTIONS(8619), 1, + sym_raw_string_end, STATE(4941), 1, sym_comment, - [130644] = 3, + [132052] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_RPAREN2, + ACTIONS(8621), 1, + anon_sym_GT2, STATE(4942), 1, sym_comment, - [130654] = 3, - ACTIONS(103), 1, + [132062] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8603), 1, - sym__space, + ACTIONS(8623), 1, + anon_sym_DQUOTE, STATE(4943), 1, sym_comment, - [130664] = 3, + [132072] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8605), 1, - anon_sym_RBRACK, + ACTIONS(8625), 1, + anon_sym_SQUOTE2, STATE(4944), 1, sym_comment, - [130674] = 3, + [132082] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8607), 1, + ACTIONS(8627), 1, anon_sym_BQUOTE2, STATE(4945), 1, sym_comment, - [130684] = 3, - ACTIONS(3), 1, + [132092] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6902), 1, - sym__unquoted_pattern, + ACTIONS(8629), 1, + aux_sym_cmd_identifier_token6, STATE(4946), 1, sym_comment, - [130694] = 3, + [132102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8609), 1, - anon_sym_RBRACE, + ACTIONS(8631), 1, + anon_sym_EQ, STATE(4947), 1, sym_comment, - [130704] = 3, - ACTIONS(103), 1, + [132112] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8633), 1, + sym_raw_string_end, STATE(4948), 1, sym_comment, - [130714] = 3, + [132122] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8611), 1, - anon_sym_RBRACK, + ACTIONS(8635), 1, + anon_sym_RBRACE, STATE(4949), 1, sym_comment, - [130724] = 3, + [132132] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8613), 1, - anon_sym_EQ, + ACTIONS(8637), 1, + anon_sym_DQUOTE, STATE(4950), 1, sym_comment, - [130734] = 3, + [132142] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, - sym__table_head_separator, + ACTIONS(8639), 1, + anon_sym_SQUOTE2, STATE(4951), 1, sym_comment, - [130744] = 3, - ACTIONS(103), 1, + [132152] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8617), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8641), 1, + anon_sym_BQUOTE2, STATE(4952), 1, sym_comment, - [130754] = 3, + [132162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8619), 1, - anon_sym_GT2, + ACTIONS(367), 1, + anon_sym_RPAREN2, STATE(4953), 1, sym_comment, - [130764] = 3, + [132172] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8621), 1, - sym_attribute_identifier, + ACTIONS(8643), 1, + sym_raw_string_end, STATE(4954), 1, sym_comment, - [130774] = 3, - ACTIONS(3), 1, + [132182] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8623), 1, - anon_sym_RBRACK, + ACTIONS(8645), 1, + aux_sym_cmd_identifier_token6, STATE(4955), 1, sym_comment, - [130784] = 3, + [132192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8625), 1, - anon_sym_BQUOTE2, + ACTIONS(8647), 1, + anon_sym_DQUOTE, STATE(4956), 1, sym_comment, - [130794] = 3, + [132202] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8627), 1, - sym__table_head_separator, + ACTIONS(8649), 1, + anon_sym_SQUOTE2, STATE(4957), 1, sym_comment, - [130804] = 3, + [132212] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8629), 1, - anon_sym_RBRACE, + ACTIONS(8651), 1, + anon_sym_BQUOTE2, STATE(4958), 1, sym_comment, - [130814] = 3, + [132222] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8631), 1, - anon_sym_EQ, + ACTIONS(363), 1, + anon_sym_RPAREN2, STATE(4959), 1, sym_comment, - [130824] = 3, + [132232] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8633), 1, - anon_sym_EQ, + ACTIONS(8653), 1, + sym_raw_string_end, STATE(4960), 1, sym_comment, - [130834] = 3, + [132242] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8635), 1, - anon_sym_RBRACE, + ACTIONS(8655), 1, + anon_sym_DQUOTE, STATE(4961), 1, sym_comment, - [130844] = 3, - ACTIONS(103), 1, + [132252] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8637), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8657), 1, + anon_sym_SQUOTE2, STATE(4962), 1, sym_comment, - [130854] = 3, + [132262] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__table_head_separator, + ACTIONS(8659), 1, + anon_sym_BQUOTE2, STATE(4963), 1, sym_comment, - [130864] = 3, + [132272] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8639), 1, - anon_sym_RBRACE, + ACTIONS(8661), 1, + anon_sym_EQ, STATE(4964), 1, sym_comment, - [130874] = 3, + [132282] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8641), 1, - anon_sym_LBRACE, + ACTIONS(8663), 1, + sym_raw_string_end, STATE(4965), 1, sym_comment, - [130884] = 3, - ACTIONS(103), 1, + [132292] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8643), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8665), 1, + anon_sym_DQUOTE, STATE(4966), 1, sym_comment, - [130894] = 3, + [132302] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_EQ, + ACTIONS(8667), 1, + anon_sym_SQUOTE2, STATE(4967), 1, sym_comment, - [130904] = 3, + [132312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8647), 1, - anon_sym_RPAREN, + ACTIONS(8669), 1, + anon_sym_BQUOTE2, STATE(4968), 1, sym_comment, - [130914] = 3, + [132322] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5287), 1, - anon_sym_EQ2, + ACTIONS(8671), 1, + sym_raw_string_content, STATE(4969), 1, sym_comment, - [130924] = 3, - ACTIONS(103), 1, + [132332] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8649), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8673), 1, + anon_sym_SQUOTE2, STATE(4970), 1, sym_comment, - [130934] = 3, + [132342] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2666), 1, - anon_sym_COLON2, + ACTIONS(8675), 1, + anon_sym_RBRACE, STATE(4971), 1, sym_comment, - [130944] = 3, + [132352] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8327), 1, - anon_sym_LBRACE, + ACTIONS(8677), 1, + anon_sym_DASH_GT, STATE(4972), 1, sym_comment, - [130954] = 3, - ACTIONS(103), 1, + [132362] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8651), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(2170), 1, + anon_sym_LBRACK2, STATE(4973), 1, sym_comment, - [130964] = 3, - ACTIONS(3), 1, + [132372] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8653), 1, - anon_sym_RBRACE, + ACTIONS(8679), 1, + aux_sym__str_single_quotes_token1, STATE(4974), 1, sym_comment, - [130974] = 3, - ACTIONS(3), 1, + [132382] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8655), 1, - anon_sym_RBRACK, + ACTIONS(8681), 1, + aux_sym__str_back_ticks_token1, STATE(4975), 1, sym_comment, - [130984] = 3, + [132392] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8657), 1, - anon_sym_RBRACE, + ACTIONS(1818), 1, + sym__unquoted_pattern_in_record, STATE(4976), 1, sym_comment, - [130994] = 3, - ACTIONS(103), 1, + [132402] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8659), 1, - aux_sym_comment_token1, + ACTIONS(8683), 1, + anon_sym_BQUOTE2, STATE(4977), 1, sym_comment, - [131004] = 3, - ACTIONS(103), 1, + [132412] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8661), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(8685), 1, + anon_sym_RBRACE, STATE(4978), 1, sym_comment, - [131014] = 3, - ACTIONS(103), 1, + [132422] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8687), 1, + anon_sym_RPAREN, STATE(4979), 1, sym_comment, - [131024] = 3, + [132432] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8665), 1, - anon_sym_RBRACK, + ACTIONS(8001), 1, + anon_sym_LBRACE, STATE(4980), 1, sym_comment, - [131034] = 3, - ACTIONS(103), 1, + [132442] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8667), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8689), 1, + anon_sym_COLON2, STATE(4981), 1, sym_comment, - [131044] = 3, + [132452] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8669), 1, - anon_sym_RPAREN, + ACTIONS(8691), 1, + anon_sym_RBRACK, STATE(4982), 1, sym_comment, - [131054] = 3, - ACTIONS(3), 1, + [132462] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8671), 1, - anon_sym_RPAREN, + ACTIONS(8693), 1, + aux_sym_shebang_token1, STATE(4983), 1, sym_comment, - [131064] = 3, + [132472] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(351), 1, - anon_sym_RPAREN2, + ACTIONS(8007), 1, + anon_sym_LBRACE, STATE(4984), 1, sym_comment, - [131074] = 3, + [132482] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2920), 1, - anon_sym_LBRACK2, + ACTIONS(8695), 1, + anon_sym_LBRACE, STATE(4985), 1, sym_comment, - [131084] = 3, + [132492] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8673), 1, - anon_sym_LBRACE, + ACTIONS(8697), 1, + anon_sym_RBRACK, STATE(4986), 1, sym_comment, - [131094] = 3, + [132502] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_EQ2, + ACTIONS(8699), 1, + anon_sym_RBRACK, STATE(4987), 1, sym_comment, - [131104] = 3, + [132512] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8675), 1, - sym_raw_string_end, + ACTIONS(8701), 1, + anon_sym_GT2, STATE(4988), 1, sym_comment, - [131114] = 3, + [132522] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, + ACTIONS(8703), 1, + anon_sym_RBRACE, STATE(4989), 1, sym_comment, - [131124] = 3, + [132532] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8677), 1, - sym_raw_string_end, + ACTIONS(8705), 1, + anon_sym_RBRACK, STATE(4990), 1, sym_comment, - [131134] = 3, - ACTIONS(103), 1, + [132542] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8679), 1, - aux_sym_shebang_token1, + ACTIONS(8707), 1, + anon_sym_RPAREN, STATE(4991), 1, sym_comment, - [131144] = 3, + [132552] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4969), 1, - sym__unquoted_pattern, + ACTIONS(8709), 1, + anon_sym_GT2, STATE(4992), 1, sym_comment, - [131154] = 3, + [132562] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8681), 1, - anon_sym_RBRACK, + ACTIONS(8711), 1, + anon_sym_GT2, STATE(4993), 1, sym_comment, - [131164] = 3, + [132572] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8713), 1, + anon_sym_RBRACE, + STATE(4994), 1, + sym_comment, + [132582] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8715), 1, + anon_sym_RBRACK, + STATE(4995), 1, + sym_comment, + [132592] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8717), 1, + sym__space, + STATE(4996), 1, + sym_comment, + [132602] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8719), 1, + anon_sym_GT2, + STATE(4997), 1, + sym_comment, + [132612] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8721), 1, + anon_sym_RBRACK, + STATE(4998), 1, + sym_comment, + [132622] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + STATE(4999), 1, + sym_comment, + [132632] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + STATE(5000), 1, + sym_comment, + [132642] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1724), 1, + sym__unquoted_pattern, + STATE(5001), 1, + sym_comment, + [132652] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1860), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5002), 1, + sym_comment, + [132662] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8723), 1, + anon_sym_RBRACK, + STATE(5003), 1, + sym_comment, + [132672] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8725), 1, + anon_sym_EQ, + STATE(5004), 1, + sym_comment, + [132682] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8727), 1, + anon_sym_RBRACE, + STATE(5005), 1, + sym_comment, + [132692] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1882), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5006), 1, + sym_comment, + [132702] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8729), 1, + anon_sym_RBRACE, + STATE(5007), 1, + sym_comment, + [132712] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5070), 1, + anon_sym_EQ2, + STATE(5008), 1, + sym_comment, + [132722] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(5009), 1, + sym_comment, + [132732] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + STATE(5010), 1, + sym_comment, + [132742] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1856), 1, + sym__unquoted_pattern_in_record, + STATE(5011), 1, + sym_comment, + [132752] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8731), 1, + anon_sym_EQ, + STATE(5012), 1, + sym_comment, + [132762] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8733), 1, + anon_sym_EQ, + STATE(5013), 1, + sym_comment, + [132772] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8735), 1, + anon_sym_EQ, + STATE(5014), 1, + sym_comment, + [132782] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8737), 1, + anon_sym_EQ, + STATE(5015), 1, + sym_comment, + [132792] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8739), 1, + anon_sym_RPAREN2, + STATE(5016), 1, + sym_comment, + [132802] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8741), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5017), 1, + sym_comment, + [132812] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8009), 1, + anon_sym_EQ_GT, + STATE(5018), 1, + sym_comment, + [132822] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8743), 1, + anon_sym_RPAREN, + STATE(5019), 1, + sym_comment, + [132832] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, + STATE(5020), 1, + sym_comment, + [132842] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8745), 1, + anon_sym_RBRACK, + STATE(5021), 1, + sym_comment, + [132852] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8747), 1, + sym_raw_string_end, + STATE(5022), 1, + sym_comment, + [132862] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1872), 1, + sym__table_head_separator, + STATE(5023), 1, + sym_comment, + [132872] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8749), 1, + aux_sym_cmd_identifier_token2, + STATE(5024), 1, + sym_comment, + [132882] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6980), 1, + sym__unquoted_pattern, + STATE(5025), 1, + sym_comment, + [132892] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8392), 1, + anon_sym_LBRACE, + STATE(5026), 1, + sym_comment, + [132902] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8751), 1, + anon_sym_RBRACE, + STATE(5027), 1, + sym_comment, + [132912] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + STATE(5028), 1, + sym_comment, + [132922] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1860), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5029), 1, + sym_comment, + [132932] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(5030), 1, + sym_comment, + [132942] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8753), 1, + anon_sym_RBRACK, + STATE(5031), 1, + sym_comment, + [132952] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2597), 1, + sym__unquoted_pattern_in_record, + STATE(5032), 1, + sym_comment, + [132962] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8755), 1, + anon_sym_EQ_GT, + STATE(5033), 1, + sym_comment, + [132972] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8757), 1, + anon_sym_RPAREN, + STATE(5034), 1, + sym_comment, + [132982] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8759), 1, + sym_raw_string_content, + STATE(5035), 1, + sym_comment, + [132992] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_record, + STATE(5036), 1, + sym_comment, + [133002] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(313), 1, + anon_sym_RBRACE, + STATE(5037), 1, + sym_comment, + [133012] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8761), 1, + anon_sym_RBRACE, + STATE(5038), 1, + sym_comment, + [133022] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8763), 1, + anon_sym_RPAREN, + STATE(5039), 1, + sym_comment, + [133032] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8765), 1, + sym__table_head_separator, + STATE(5040), 1, + sym_comment, + [133042] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8767), 1, + anon_sym_RBRACE, + STATE(5041), 1, + sym_comment, + [133052] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8769), 1, + anon_sym_RBRACE, + STATE(5042), 1, + sym_comment, + [133062] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8771), 1, + aux_sym_shebang_token1, + STATE(5043), 1, + sym_comment, + [133072] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(303), 1, - anon_sym_RBRACE, - STATE(4994), 1, + ACTIONS(8773), 1, + anon_sym_RPAREN, + STATE(5044), 1, sym_comment, - [131174] = 3, + [133082] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8683), 1, - anon_sym_RBRACE, - STATE(4995), 1, + ACTIONS(8775), 1, + anon_sym_DQUOTE, + STATE(5045), 1, sym_comment, - [131184] = 3, + [133092] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(4996), 1, + ACTIONS(8777), 1, + anon_sym_SQUOTE2, + STATE(5046), 1, sym_comment, - [131194] = 3, + [133102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - STATE(4997), 1, + ACTIONS(8779), 1, + anon_sym_BQUOTE2, + STATE(5047), 1, sym_comment, - [131204] = 3, + [133112] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8685), 1, - sym_raw_string_content, - STATE(4998), 1, + ACTIONS(8781), 1, + anon_sym_EQ, + STATE(5048), 1, sym_comment, - [131214] = 3, + [133122] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_EQ2, - STATE(4999), 1, + ACTIONS(8783), 1, + sym_identifier, + STATE(5049), 1, sym_comment, - [131224] = 3, - ACTIONS(3), 1, + [133132] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8687), 1, - sym_identifier, - STATE(5000), 1, + ACTIONS(8785), 1, + aux_sym_cmd_identifier_token6, + STATE(5050), 1, sym_comment, - [131234] = 3, + [133142] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8689), 1, - aux_sym_cmd_identifier_token2, - STATE(5001), 1, + ACTIONS(1860), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5051), 1, sym_comment, - [131244] = 3, + [133152] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8691), 1, + ACTIONS(8787), 1, anon_sym_EQ, - STATE(5002), 1, + STATE(5052), 1, sym_comment, - [131254] = 3, + [133162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8693), 1, + ACTIONS(1708), 1, + anon_sym_COLON2, + STATE(5053), 1, + sym_comment, + [133172] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8789), 1, anon_sym_RBRACK, - STATE(5003), 1, + STATE(5054), 1, sym_comment, - [131264] = 3, + [133182] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8695), 1, - anon_sym_GT2, - STATE(5004), 1, + ACTIONS(8791), 1, + anon_sym_RBRACE, + STATE(5055), 1, sym_comment, - [131274] = 3, + [133192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8697), 1, - sym_identifier, - STATE(5005), 1, + ACTIONS(5100), 1, + anon_sym_EQ2, + STATE(5056), 1, sym_comment, - [131284] = 3, + [133202] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8699), 1, + ACTIONS(8793), 1, + anon_sym_RBRACE, + STATE(5057), 1, + sym_comment, + [133212] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8795), 1, anon_sym_RPAREN, - STATE(5006), 1, + STATE(5058), 1, sym_comment, - [131294] = 3, + [133222] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_LBRACE, - STATE(5007), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + STATE(5059), 1, sym_comment, - [131304] = 3, + [133232] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8703), 1, - anon_sym_RBRACE, - STATE(5008), 1, + ACTIONS(8797), 1, + anon_sym_EQ_GT, + STATE(5060), 1, sym_comment, - [131314] = 3, + [133242] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(5009), 1, + ACTIONS(8799), 1, + aux_sym_cmd_identifier_token6, + STATE(5061), 1, sym_comment, - [131324] = 3, + [133252] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8705), 1, + ACTIONS(8801), 1, anon_sym_RBRACK, - STATE(5010), 1, + STATE(5062), 1, sym_comment, - [131334] = 3, + [133262] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(289), 1, + ACTIONS(8803), 1, anon_sym_RBRACE, - STATE(5011), 1, + STATE(5063), 1, sym_comment, - [131344] = 3, - ACTIONS(3), 1, + [133272] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8707), 1, - anon_sym_RBRACE, - STATE(5012), 1, + ACTIONS(8805), 1, + aux_sym_cmd_identifier_token6, + STATE(5064), 1, + sym_comment, + [133282] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8807), 1, + aux_sym_cmd_identifier_token2, + STATE(5065), 1, sym_comment, - [131354] = 3, + [133292] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8709), 1, - anon_sym_RBRACE, - STATE(5013), 1, + ACTIONS(2636), 1, + sym__table_head_separator, + STATE(5066), 1, sym_comment, - [131364] = 3, + [133302] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8711), 1, - anon_sym_RBRACK, - STATE(5014), 1, + ACTIONS(8809), 1, + anon_sym_SQUOTE2, + STATE(5067), 1, sym_comment, - [131374] = 3, + [133312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8713), 1, - anon_sym_RBRACE, - STATE(5015), 1, + ACTIONS(359), 1, + anon_sym_RPAREN2, + STATE(5068), 1, + sym_comment, + [133322] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1882), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5069), 1, sym_comment, - [131384] = 3, + [133332] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_RBRACE, - STATE(5016), 1, + ACTIONS(5140), 1, + anon_sym_EQ2, + STATE(5070), 1, sym_comment, - [131394] = 3, + [133342] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8717), 1, - ts_builtin_sym_end, - STATE(5017), 1, + ACTIONS(8811), 1, + anon_sym_LBRACE, + STATE(5071), 1, sym_comment, - [131404] = 3, + [133352] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8719), 1, - anon_sym_RBRACK, - STATE(5018), 1, + ACTIONS(299), 1, + anon_sym_RBRACE, + STATE(5072), 1, sym_comment, - [131414] = 3, + [133362] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8721), 1, - anon_sym_GT2, - STATE(5019), 1, + ACTIONS(8813), 1, + sym_identifier, + STATE(5073), 1, sym_comment, - [131424] = 3, + [133372] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8723), 1, + ACTIONS(8815), 1, sym_raw_string_end, - STATE(5020), 1, + STATE(5074), 1, sym_comment, - [131434] = 3, + [133382] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(2589), 1, sym__unquoted_pattern, - STATE(5021), 1, + STATE(5075), 1, sym_comment, - [131444] = 3, + [133392] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8725), 1, - anon_sym_DQUOTE, - STATE(5022), 1, + ACTIONS(8817), 1, + ts_builtin_sym_end, + STATE(5076), 1, sym_comment, - [131454] = 3, + [133402] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8727), 1, - anon_sym_EQ, - STATE(5023), 1, - sym_comment, - [131464] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8729), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5024), 1, + ACTIONS(5213), 1, + sym__unquoted_pattern, + STATE(5077), 1, sym_comment, - [131474] = 3, + [133412] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8731), 1, + ACTIONS(8819), 1, anon_sym_GT2, - STATE(5025), 1, + STATE(5078), 1, sym_comment, - [131484] = 3, + [133422] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_EQ2, - STATE(5026), 1, + ACTIONS(8821), 1, + anon_sym_RBRACE, + STATE(5079), 1, sym_comment, - [131494] = 3, + [133432] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8733), 1, - anon_sym_GT2, - STATE(5027), 1, + ACTIONS(8823), 1, + anon_sym_LBRACE, + STATE(5080), 1, sym_comment, - [131504] = 3, + [133442] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8735), 1, - anon_sym_SQUOTE2, - STATE(5028), 1, + ACTIONS(301), 1, + anon_sym_RBRACE, + STATE(5081), 1, sym_comment, - [131514] = 3, + [133452] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8737), 1, - sym_raw_string_end, - STATE(5029), 1, + ACTIONS(2597), 1, + sym__unquoted_pattern, + STATE(5082), 1, sym_comment, - [131524] = 3, + [133462] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_EQ_GT, - STATE(5030), 1, + ACTIONS(7348), 1, + sym__unquoted_pattern, + STATE(5083), 1, sym_comment, - [131534] = 3, + [133472] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8741), 1, - anon_sym_BQUOTE2, - STATE(5031), 1, + ACTIONS(8825), 1, + anon_sym_RBRACK, + STATE(5084), 1, sym_comment, - [131544] = 3, + [133482] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7264), 1, - sym__unquoted_pattern, - STATE(5032), 1, + ACTIONS(8827), 1, + anon_sym_RBRACE, + STATE(5085), 1, sym_comment, - [131554] = 3, + [133492] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8743), 1, - anon_sym_EQ, - STATE(5033), 1, + ACTIONS(8829), 1, + anon_sym_RPAREN, + STATE(5086), 1, sym_comment, - [131564] = 3, + [133502] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8745), 1, - anon_sym_RPAREN, - STATE(5034), 1, + ACTIONS(373), 1, + ts_builtin_sym_end, + STATE(5087), 1, sym_comment, - [131574] = 3, + [133512] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8747), 1, - anon_sym_LPAREN2, - STATE(5035), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + STATE(5088), 1, sym_comment, - [131584] = 3, + [133522] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8749), 1, - anon_sym_EQ, - STATE(5036), 1, + ACTIONS(8823), 1, + anon_sym_LBRACE, + STATE(5089), 1, sym_comment, - [131594] = 3, + [133532] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8751), 1, - anon_sym_BQUOTE2, - STATE(5037), 1, + ACTIONS(8831), 1, + anon_sym_GT2, + STATE(5090), 1, sym_comment, - [131604] = 3, + [133542] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(5038), 1, + ACTIONS(8833), 1, + anon_sym_RBRACE, + STATE(5091), 1, sym_comment, - [131614] = 3, + [133552] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8753), 1, - sym_identifier, - STATE(5039), 1, + ACTIONS(8835), 1, + anon_sym_EQ, + STATE(5092), 1, sym_comment, - [131624] = 3, + [133562] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8755), 1, - anon_sym_RBRACK, - STATE(5040), 1, + ACTIONS(8837), 1, + anon_sym_RBRACE, + STATE(5093), 1, sym_comment, - [131634] = 3, + [133572] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8757), 1, + ACTIONS(8839), 1, anon_sym_RBRACK, - STATE(5041), 1, + STATE(5094), 1, sym_comment, - [131644] = 3, - ACTIONS(103), 1, + [133582] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8759), 1, - aux_sym_cmd_identifier_token6, - STATE(5042), 1, + ACTIONS(8841), 1, + anon_sym_LBRACE, + STATE(5095), 1, sym_comment, - [131654] = 3, + [133592] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8761), 1, + ACTIONS(8843), 1, anon_sym_RBRACE, - STATE(5043), 1, + STATE(5096), 1, sym_comment, - [131664] = 3, + [133602] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8763), 1, + ACTIONS(8845), 1, anon_sym_RBRACK, - STATE(5044), 1, + STATE(5097), 1, sym_comment, - [131674] = 3, - ACTIONS(3), 1, + [133612] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2591), 1, - sym__table_head_separator, - STATE(5045), 1, + ACTIONS(8847), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5098), 1, sym_comment, - [131684] = 3, + [133622] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8765), 1, + ACTIONS(8849), 1, anon_sym_RPAREN, - STATE(5046), 1, + STATE(5099), 1, sym_comment, - [131694] = 3, - ACTIONS(3), 1, + [133632] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8767), 1, - anon_sym_RBRACK, - STATE(5047), 1, + ACTIONS(8851), 1, + aux_sym_cmd_identifier_token6, + STATE(5100), 1, sym_comment, - [131704] = 3, - ACTIONS(103), 1, + [133642] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5048), 1, + ACTIONS(8853), 1, + anon_sym_DQUOTE, + STATE(5101), 1, sym_comment, - [131714] = 3, + [133652] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8769), 1, - anon_sym_RPAREN, - STATE(5049), 1, + ACTIONS(8855), 1, + anon_sym_SQUOTE2, + STATE(5102), 1, sym_comment, - [131724] = 3, + [133662] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(5050), 1, + ACTIONS(8857), 1, + anon_sym_BQUOTE2, + STATE(5103), 1, sym_comment, - [131734] = 3, + [133672] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8771), 1, - anon_sym_RBRACK, - STATE(5051), 1, + ACTIONS(8859), 1, + anon_sym_DQUOTE, + STATE(5104), 1, sym_comment, - [131744] = 3, + [133682] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8773), 1, - anon_sym_RPAREN, - STATE(5052), 1, + ACTIONS(8861), 1, + anon_sym_SQUOTE2, + STATE(5105), 1, sym_comment, - [131754] = 3, + [133692] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8775), 1, + ACTIONS(8863), 1, anon_sym_RBRACE, - STATE(5053), 1, + STATE(5106), 1, sym_comment, - [131764] = 3, + [133702] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8777), 1, + ACTIONS(8865), 1, anon_sym_RBRACK, - STATE(5054), 1, + STATE(5107), 1, sym_comment, - [131774] = 3, - ACTIONS(3), 1, + [133712] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(313), 1, - anon_sym_RBRACE, - STATE(5055), 1, + ACTIONS(8867), 1, + aux_sym_cmd_identifier_token6, + STATE(5108), 1, sym_comment, - [131784] = 3, + [133722] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8779), 1, + ACTIONS(8869), 1, anon_sym_RBRACK, - STATE(5056), 1, + STATE(5109), 1, sym_comment, - [131794] = 3, + [133732] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8781), 1, + ACTIONS(8871), 1, sym_raw_string_content, - STATE(5057), 1, + STATE(5110), 1, sym_comment, - [131804] = 3, + [133742] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7518), 1, + ACTIONS(7713), 1, anon_sym_LBRACK2, - STATE(5058), 1, + STATE(5111), 1, sym_comment, - [131814] = 3, + [133752] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8783), 1, + ACTIONS(8873), 1, aux_sym__str_single_quotes_token1, - STATE(5059), 1, + STATE(5112), 1, sym_comment, - [131824] = 3, + [133762] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8785), 1, + ACTIONS(8875), 1, aux_sym__str_back_ticks_token1, - STATE(5060), 1, + STATE(5113), 1, sym_comment, - [131834] = 3, + [133772] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8787), 1, - anon_sym_RBRACE, - STATE(5061), 1, + ACTIONS(8877), 1, + anon_sym_RBRACK, + STATE(5114), 1, sym_comment, - [131844] = 3, + [133782] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern_in_record, - STATE(5062), 1, + ACTIONS(8879), 1, + anon_sym_RBRACK, + STATE(5115), 1, sym_comment, - [131854] = 3, + [133792] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8789), 1, - anon_sym_EQ, - STATE(5063), 1, + ACTIONS(8881), 1, + anon_sym_RBRACE, + STATE(5116), 1, sym_comment, - [131864] = 3, + [133802] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8791), 1, + ACTIONS(8883), 1, sym__space, - STATE(5064), 1, + STATE(5117), 1, sym_comment, - [131874] = 3, + [133812] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8793), 1, + ACTIONS(8885), 1, anon_sym_RBRACE, - STATE(5065), 1, + STATE(5118), 1, sym_comment, - [131884] = 3, + [133822] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8795), 1, - anon_sym_RBRACE, - STATE(5066), 1, + ACTIONS(5134), 1, + anon_sym_EQ2, + STATE(5119), 1, sym_comment, - [131894] = 3, - ACTIONS(3), 1, + [133832] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8797), 1, - anon_sym_RPAREN, - STATE(5067), 1, + ACTIONS(8887), 1, + aux_sym_comment_token1, + STATE(5120), 1, sym_comment, - [131904] = 3, + [133842] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(5068), 1, + ACTIONS(8889), 1, + anon_sym_RBRACE, + STATE(5121), 1, sym_comment, - [131914] = 3, + [133852] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern_in_record, - STATE(5069), 1, + ACTIONS(8891), 1, + anon_sym_RPAREN, + STATE(5122), 1, sym_comment, - [131924] = 3, + [133862] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8799), 1, - anon_sym_SQUOTE2, - STATE(5070), 1, + ACTIONS(8893), 1, + sym_raw_string_end, + STATE(5123), 1, sym_comment, - [131934] = 3, + [133872] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8801), 1, + ACTIONS(8895), 1, aux_sym_cmd_identifier_token6, - STATE(5071), 1, + STATE(5124), 1, sym_comment, - [131944] = 3, + [133882] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8803), 1, + ACTIONS(8897), 1, anon_sym_BQUOTE2, - STATE(5072), 1, + STATE(5125), 1, sym_comment, - [131954] = 3, + [133892] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern_in_record, - STATE(5073), 1, + ACTIONS(8899), 1, + anon_sym_LBRACE, + STATE(5126), 1, sym_comment, - [131964] = 3, + [133902] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8805), 1, + ACTIONS(8901), 1, anon_sym_RBRACE, - STATE(5074), 1, + STATE(5127), 1, sym_comment, - [131974] = 3, + [133912] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern_in_record, - STATE(5075), 1, + ACTIONS(2923), 1, + anon_sym_LBRACK2, + STATE(5128), 1, sym_comment, - [131984] = 3, - ACTIONS(3), 1, + [133922] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_DQUOTE, - STATE(5076), 1, + ACTIONS(8903), 1, + aux_sym_cmd_identifier_token2, + STATE(5129), 1, sym_comment, - [131994] = 3, + [133932] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - STATE(5077), 1, + ACTIONS(8905), 1, + anon_sym_RBRACE, + STATE(5130), 1, sym_comment, - [132004] = 3, + [133942] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8809), 1, - anon_sym_SQUOTE2, - STATE(5078), 1, + ACTIONS(8907), 1, + anon_sym_EQ, + STATE(5131), 1, sym_comment, - [132014] = 3, + [133952] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8811), 1, - anon_sym_BQUOTE2, - STATE(5079), 1, + ACTIONS(8909), 1, + sym_identifier, + STATE(5132), 1, sym_comment, - [132024] = 3, + [133962] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - anon_sym_RBRACK, - STATE(5080), 1, + ACTIONS(8911), 1, + anon_sym_EQ, + STATE(5133), 1, sym_comment, - [132034] = 3, + [133972] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8815), 1, - anon_sym_RBRACE, - STATE(5081), 1, - sym_comment, - [132044] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8817), 1, - aux_sym_cmd_identifier_token6, - STATE(5082), 1, + ACTIONS(8811), 1, + anon_sym_LBRACE, + STATE(5134), 1, sym_comment, - [132054] = 3, + [133982] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8819), 1, - anon_sym_EQ, - STATE(5083), 1, + ACTIONS(8913), 1, + anon_sym_RBRACK, + STATE(5135), 1, sym_comment, - [132064] = 3, + [133992] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(5084), 1, + ACTIONS(8915), 1, + aux_sym__str_single_quotes_token1, + STATE(5136), 1, sym_comment, - [132074] = 3, + [134002] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8821), 1, - anon_sym_RBRACE, - STATE(5085), 1, + ACTIONS(8917), 1, + sym_raw_string_end, + STATE(5137), 1, sym_comment, - [132084] = 3, + [134012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(5086), 1, + ACTIONS(8919), 1, + anon_sym_RBRACE, + STATE(5138), 1, sym_comment, - [132094] = 3, + [134022] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8823), 1, - anon_sym_LBRACE, - STATE(5087), 1, + ACTIONS(7541), 1, + sym__unquoted_pattern, + STATE(5139), 1, sym_comment, - [132104] = 3, + [134032] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8825), 1, - anon_sym_EQ, - STATE(5088), 1, + ACTIONS(5172), 1, + sym__unquoted_pattern, + STATE(5140), 1, sym_comment, - [132114] = 3, - ACTIONS(103), 1, + [134042] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8827), 1, - sym__space, - STATE(5089), 1, + ACTIONS(8921), 1, + anon_sym_RBRACE, + STATE(5141), 1, sym_comment, - [132124] = 3, + [134052] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8829), 1, - anon_sym_RPAREN, - STATE(5090), 1, + ACTIONS(8923), 1, + sym_raw_string_end, + STATE(5142), 1, sym_comment, - [132134] = 3, + [134062] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8831), 1, + ACTIONS(8925), 1, anon_sym_RBRACK, - STATE(5091), 1, + STATE(5143), 1, sym_comment, - [132144] = 3, + [134072] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8833), 1, - anon_sym_EQ, - STATE(5092), 1, + ACTIONS(2704), 1, + anon_sym_COLON2, + STATE(5144), 1, sym_comment, - [132154] = 3, + [134082] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8835), 1, - anon_sym_EQ, - STATE(5093), 1, + ACTIONS(8927), 1, + anon_sym_RPAREN, + STATE(5145), 1, sym_comment, - [132164] = 3, + [134092] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8837), 1, + ACTIONS(8929), 1, sym_raw_string_content, - STATE(5094), 1, + STATE(5146), 1, sym_comment, - [132174] = 3, + [134102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6016), 1, + ACTIONS(5939), 1, anon_sym_LBRACK2, - STATE(5095), 1, + STATE(5147), 1, sym_comment, - [132184] = 3, + [134112] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8839), 1, + ACTIONS(8931), 1, aux_sym__str_single_quotes_token1, - STATE(5096), 1, + STATE(5148), 1, sym_comment, - [132194] = 3, + [134122] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8841), 1, + ACTIONS(8933), 1, aux_sym__str_back_ticks_token1, - STATE(5097), 1, + STATE(5149), 1, sym_comment, - [132204] = 3, + [134132] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8843), 1, - anon_sym_RBRACK, - STATE(5098), 1, + ACTIONS(8935), 1, + sym__table_head_separator, + STATE(5150), 1, sym_comment, - [132214] = 3, + [134142] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8845), 1, + ACTIONS(8937), 1, sym__space, - STATE(5099), 1, + STATE(5151), 1, sym_comment, - [132224] = 3, - ACTIONS(103), 1, + [134152] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - STATE(5100), 1, + ACTIONS(315), 1, + anon_sym_RBRACE, + STATE(5152), 1, sym_comment, - [132234] = 3, + [134162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8847), 1, - anon_sym_RPAREN, - STATE(5101), 1, + ACTIONS(8939), 1, + anon_sym_RBRACE, + STATE(5153), 1, sym_comment, - [132244] = 3, + [134172] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8823), 1, - anon_sym_LBRACE, - STATE(5102), 1, + ACTIONS(8941), 1, + anon_sym_GT2, + STATE(5154), 1, sym_comment, - [132254] = 3, + [134182] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8849), 1, - sym_identifier, - STATE(5103), 1, + ACTIONS(2387), 1, + sym__unquoted_pattern_in_record, + STATE(5155), 1, sym_comment, - [132264] = 3, + [134192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8851), 1, - anon_sym_GT2, - STATE(5104), 1, + ACTIONS(5496), 1, + anon_sym_EQ2, + STATE(5156), 1, sym_comment, - [132274] = 3, + [134202] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8853), 1, - anon_sym_RPAREN, - STATE(5105), 1, + ACTIONS(8943), 1, + anon_sym_RBRACE, + STATE(5157), 1, sym_comment, - [132284] = 3, + [134212] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8855), 1, + ACTIONS(8945), 1, + anon_sym_RBRACK, + STATE(5158), 1, + sym_comment, + [134222] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8947), 1, sym_raw_string_content, - STATE(5106), 1, + STATE(5159), 1, sym_comment, - [132294] = 3, + [134232] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4527), 1, + ACTIONS(4550), 1, anon_sym_LBRACK2, - STATE(5107), 1, + STATE(5160), 1, sym_comment, - [132304] = 3, + [134242] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8857), 1, + ACTIONS(8949), 1, aux_sym__str_single_quotes_token1, - STATE(5108), 1, + STATE(5161), 1, sym_comment, - [132314] = 3, + [134252] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8859), 1, + ACTIONS(8951), 1, aux_sym__str_back_ticks_token1, - STATE(5109), 1, + STATE(5162), 1, sym_comment, - [132324] = 3, + [134262] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8861), 1, + ACTIONS(8953), 1, sym_raw_string_content, - STATE(5110), 1, + STATE(5163), 1, sym_comment, - [132334] = 3, + [134272] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5727), 1, + ACTIONS(5767), 1, anon_sym_LBRACK2, - STATE(5111), 1, + STATE(5164), 1, sym_comment, - [132344] = 3, + [134282] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8863), 1, + ACTIONS(8955), 1, aux_sym__str_single_quotes_token1, - STATE(5112), 1, + STATE(5165), 1, sym_comment, - [132354] = 3, + [134292] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8865), 1, + ACTIONS(8957), 1, aux_sym__str_back_ticks_token1, - STATE(5113), 1, + STATE(5166), 1, sym_comment, - [132364] = 3, + [134302] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8867), 1, + ACTIONS(8959), 1, sym_raw_string_content, - STATE(5114), 1, + STATE(5167), 1, sym_comment, - [132374] = 3, + [134312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5751), 1, + ACTIONS(5799), 1, anon_sym_LBRACK2, - STATE(5115), 1, + STATE(5168), 1, sym_comment, - [132384] = 3, + [134322] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8869), 1, + ACTIONS(8961), 1, aux_sym__str_single_quotes_token1, - STATE(5116), 1, + STATE(5169), 1, sym_comment, - [132394] = 3, + [134332] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8871), 1, + ACTIONS(8963), 1, aux_sym__str_back_ticks_token1, - STATE(5117), 1, + STATE(5170), 1, sym_comment, - [132404] = 3, + [134342] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8873), 1, + ACTIONS(8965), 1, sym_raw_string_content, - STATE(5118), 1, + STATE(5171), 1, sym_comment, - [132414] = 3, + [134352] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8875), 1, + ACTIONS(8967), 1, aux_sym__str_single_quotes_token1, - STATE(5119), 1, + STATE(5172), 1, sym_comment, - [132424] = 3, + [134362] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8877), 1, + ACTIONS(8969), 1, aux_sym__str_back_ticks_token1, - STATE(5120), 1, + STATE(5173), 1, sym_comment, - [132434] = 3, + [134372] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8879), 1, + ACTIONS(8971), 1, sym_raw_string_content, - STATE(5121), 1, + STATE(5174), 1, sym_comment, - [132444] = 3, + [134382] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8881), 1, + ACTIONS(8973), 1, aux_sym__str_single_quotes_token1, - STATE(5122), 1, + STATE(5175), 1, sym_comment, - [132454] = 3, + [134392] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8883), 1, + ACTIONS(8975), 1, aux_sym__str_back_ticks_token1, - STATE(5123), 1, + STATE(5176), 1, sym_comment, - [132464] = 3, + [134402] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8885), 1, + ACTIONS(8977), 1, sym_raw_string_content, - STATE(5124), 1, + STATE(5177), 1, sym_comment, - [132474] = 3, + [134412] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8887), 1, + ACTIONS(8979), 1, aux_sym__str_single_quotes_token1, - STATE(5125), 1, + STATE(5178), 1, sym_comment, - [132484] = 3, + [134422] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8889), 1, + ACTIONS(8981), 1, aux_sym__str_back_ticks_token1, - STATE(5126), 1, + STATE(5179), 1, sym_comment, - [132494] = 3, + [134432] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8891), 1, + ACTIONS(8983), 1, sym_raw_string_content, - STATE(5127), 1, + STATE(5180), 1, sym_comment, - [132504] = 3, + [134442] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8893), 1, + ACTIONS(8985), 1, aux_sym__str_single_quotes_token1, - STATE(5128), 1, + STATE(5181), 1, sym_comment, - [132514] = 3, + [134452] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8895), 1, + ACTIONS(8987), 1, aux_sym__str_back_ticks_token1, - STATE(5129), 1, + STATE(5182), 1, sym_comment, - [132524] = 3, + [134462] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8897), 1, + ACTIONS(8989), 1, sym_raw_string_content, - STATE(5130), 1, + STATE(5183), 1, sym_comment, - [132534] = 3, + [134472] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8899), 1, + ACTIONS(8991), 1, aux_sym__str_single_quotes_token1, - STATE(5131), 1, + STATE(5184), 1, sym_comment, - [132544] = 3, + [134482] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8901), 1, + ACTIONS(8993), 1, aux_sym__str_back_ticks_token1, - STATE(5132), 1, + STATE(5185), 1, sym_comment, - [132554] = 3, + [134492] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8903), 1, + ACTIONS(8995), 1, sym_raw_string_content, - STATE(5133), 1, + STATE(5186), 1, sym_comment, - [132564] = 3, + [134502] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8905), 1, + ACTIONS(8997), 1, aux_sym__str_single_quotes_token1, - STATE(5134), 1, + STATE(5187), 1, sym_comment, - [132574] = 3, + [134512] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8907), 1, + ACTIONS(8999), 1, aux_sym__str_back_ticks_token1, - STATE(5135), 1, + STATE(5188), 1, sym_comment, - [132584] = 3, + [134522] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8909), 1, + ACTIONS(9001), 1, sym_raw_string_content, - STATE(5136), 1, + STATE(5189), 1, sym_comment, - [132594] = 3, + [134532] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8911), 1, + ACTIONS(9003), 1, aux_sym__str_single_quotes_token1, - STATE(5137), 1, + STATE(5190), 1, sym_comment, - [132604] = 3, + [134542] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8913), 1, + ACTIONS(9005), 1, aux_sym__str_back_ticks_token1, - STATE(5138), 1, + STATE(5191), 1, sym_comment, - [132614] = 3, + [134552] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8915), 1, + ACTIONS(9007), 1, sym_raw_string_content, - STATE(5139), 1, + STATE(5192), 1, sym_comment, - [132624] = 3, + [134562] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8917), 1, + ACTIONS(9009), 1, aux_sym__str_single_quotes_token1, - STATE(5140), 1, + STATE(5193), 1, sym_comment, - [132634] = 3, + [134572] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8919), 1, + ACTIONS(9011), 1, aux_sym__str_back_ticks_token1, - STATE(5141), 1, + STATE(5194), 1, sym_comment, - [132644] = 3, + [134582] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8921), 1, + ACTIONS(9013), 1, sym_raw_string_content, - STATE(5142), 1, + STATE(5195), 1, sym_comment, - [132654] = 3, + [134592] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8923), 1, + ACTIONS(9015), 1, aux_sym__str_single_quotes_token1, - STATE(5143), 1, + STATE(5196), 1, sym_comment, - [132664] = 3, + [134602] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8925), 1, + ACTIONS(9017), 1, aux_sym__str_back_ticks_token1, - STATE(5144), 1, + STATE(5197), 1, sym_comment, - [132674] = 3, + [134612] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8927), 1, + ACTIONS(9019), 1, sym_raw_string_content, - STATE(5145), 1, + STATE(5198), 1, sym_comment, - [132684] = 3, + [134622] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8929), 1, + ACTIONS(9021), 1, aux_sym__str_single_quotes_token1, - STATE(5146), 1, + STATE(5199), 1, sym_comment, - [132694] = 3, + [134632] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8931), 1, + ACTIONS(9023), 1, aux_sym__str_back_ticks_token1, - STATE(5147), 1, + STATE(5200), 1, sym_comment, - [132704] = 3, + [134642] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8933), 1, + ACTIONS(9025), 1, sym_raw_string_content, - STATE(5148), 1, + STATE(5201), 1, sym_comment, - [132714] = 3, + [134652] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8935), 1, + ACTIONS(9027), 1, aux_sym__str_single_quotes_token1, - STATE(5149), 1, + STATE(5202), 1, sym_comment, - [132724] = 3, + [134662] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8937), 1, + ACTIONS(9029), 1, aux_sym__str_back_ticks_token1, - STATE(5150), 1, + STATE(5203), 1, sym_comment, - [132734] = 3, + [134672] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8939), 1, + ACTIONS(9031), 1, sym_raw_string_content, - STATE(5151), 1, + STATE(5204), 1, sym_comment, - [132744] = 3, + [134682] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8941), 1, + ACTIONS(9033), 1, aux_sym__str_single_quotes_token1, - STATE(5152), 1, + STATE(5205), 1, sym_comment, - [132754] = 3, + [134692] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8943), 1, + ACTIONS(9035), 1, aux_sym__str_back_ticks_token1, - STATE(5153), 1, + STATE(5206), 1, sym_comment, - [132764] = 3, + [134702] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8945), 1, + ACTIONS(9037), 1, sym_raw_string_content, - STATE(5154), 1, + STATE(5207), 1, sym_comment, - [132774] = 3, + [134712] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9039), 1, aux_sym__str_single_quotes_token1, - STATE(5155), 1, + STATE(5208), 1, sym_comment, - [132784] = 3, + [134722] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8949), 1, + ACTIONS(9041), 1, aux_sym__str_back_ticks_token1, - STATE(5156), 1, + STATE(5209), 1, + sym_comment, + [134732] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9043), 1, + sym_raw_string_content, + STATE(5210), 1, sym_comment, - [132794] = 3, + [134742] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8951), 1, - aux_sym_cmd_identifier_token6, - STATE(5157), 1, + ACTIONS(9045), 1, + aux_sym__str_single_quotes_token1, + STATE(5211), 1, sym_comment, - [132804] = 3, - ACTIONS(3), 1, + [134752] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8953), 1, - sym_raw_string_end, - STATE(5158), 1, + ACTIONS(9047), 1, + aux_sym__str_back_ticks_token1, + STATE(5212), 1, sym_comment, - [132814] = 3, + [134762] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - STATE(5159), 1, + ACTIONS(9049), 1, + sym_raw_string_content, + STATE(5213), 1, sym_comment, - [132824] = 3, - ACTIONS(3), 1, + [134772] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_RBRACE, - STATE(5160), 1, + ACTIONS(9051), 1, + aux_sym__str_single_quotes_token1, + STATE(5214), 1, sym_comment, - [132834] = 3, - ACTIONS(3), 1, + [134782] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8955), 1, - anon_sym_COLON2, - STATE(5161), 1, + ACTIONS(9053), 1, + aux_sym__str_back_ticks_token1, + STATE(5215), 1, sym_comment, - [132844] = 3, + [134792] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8957), 1, - anon_sym_LBRACE, - STATE(5162), 1, + ACTIONS(7465), 1, + sym__unquoted_pattern_in_record, + STATE(5216), 1, sym_comment, - [132854] = 3, + [134802] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8959), 1, - anon_sym_RBRACE, - STATE(5163), 1, + ACTIONS(9055), 1, + anon_sym_DQUOTE, + STATE(5217), 1, sym_comment, - [132864] = 3, + [134812] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8961), 1, - anon_sym_in, - STATE(5164), 1, + ACTIONS(8309), 1, + anon_sym_LPAREN2, + STATE(5218), 1, sym_comment, - [132874] = 3, + [134822] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8963), 1, - ts_builtin_sym_end, - STATE(5165), 1, + ACTIONS(9057), 1, + anon_sym_SQUOTE2, + STATE(5219), 1, sym_comment, - [132884] = 3, + [134832] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8965), 1, - sym_long_flag_identifier, - STATE(5166), 1, + ACTIONS(9059), 1, + anon_sym_BQUOTE2, + STATE(5220), 1, sym_comment, - [132894] = 3, + [134842] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8967), 1, - anon_sym_RBRACE, - STATE(5167), 1, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(5221), 1, sym_comment, - [132904] = 3, + [134852] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8969), 1, - anon_sym_RBRACE, - STATE(5168), 1, + ACTIONS(9061), 1, + anon_sym_RPAREN, + STATE(5222), 1, sym_comment, - [132914] = 3, + [134862] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_LBRACE, - STATE(5169), 1, + ACTIONS(9063), 1, + anon_sym_in, + STATE(5223), 1, sym_comment, - [132924] = 3, + [134872] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8971), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5170), 1, + ACTIONS(9065), 1, + aux_sym_cmd_identifier_token6, + STATE(5224), 1, sym_comment, - [132934] = 3, + [134882] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8973), 1, - sym_param_short_flag_identifier, - STATE(5171), 1, + ACTIONS(9067), 1, + anon_sym_GT2, + STATE(5225), 1, sym_comment, - [132944] = 3, + [134892] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8975), 1, - anon_sym_RBRACE, - STATE(5172), 1, + ACTIONS(9069), 1, + anon_sym_RBRACK, + STATE(5226), 1, sym_comment, - [132954] = 3, + [134902] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8977), 1, - anon_sym_EQ_GT, - STATE(5173), 1, + ACTIONS(9071), 1, + anon_sym_RBRACE, + STATE(5227), 1, sym_comment, - [132964] = 3, - ACTIONS(3), 1, + [134912] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8979), 1, - anon_sym_RBRACE, - STATE(5174), 1, + ACTIONS(9073), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5228), 1, sym_comment, - [132974] = 3, + [134922] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8981), 1, - anon_sym_RPAREN, - STATE(5175), 1, + ACTIONS(9075), 1, + anon_sym_RBRACK, + STATE(5229), 1, sym_comment, - [132984] = 3, + [134932] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8983), 1, + ACTIONS(9077), 1, anon_sym_RBRACE, - STATE(5176), 1, + STATE(5230), 1, sym_comment, - [132994] = 3, + [134942] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8985), 1, - anon_sym_RBRACK, - STATE(5177), 1, + ACTIONS(9079), 1, + anon_sym_GT2, + STATE(5231), 1, sym_comment, - [133004] = 3, + [134952] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8987), 1, - anon_sym_RBRACE, - STATE(5178), 1, + ACTIONS(9081), 1, + ts_builtin_sym_end, + STATE(5232), 1, sym_comment, - [133014] = 3, + [134962] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8989), 1, - anon_sym_LT, - STATE(5179), 1, + ACTIONS(9083), 1, + anon_sym_RBRACE, + STATE(5233), 1, sym_comment, - [133024] = 3, + [134972] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8991), 1, - anon_sym_RBRACK, - STATE(5180), 1, + ACTIONS(9085), 1, + anon_sym_RPAREN, + STATE(5234), 1, sym_comment, - [133034] = 3, + [134982] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8993), 1, - anon_sym_DQUOTE, - STATE(5181), 1, + ACTIONS(9087), 1, + anon_sym_RPAREN, + STATE(5235), 1, sym_comment, - [133044] = 3, + [134992] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8995), 1, + ACTIONS(9089), 1, aux_sym_cmd_identifier_token6, - STATE(5182), 1, + STATE(5236), 1, sym_comment, - [133054] = 3, + [135002] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_RPAREN2, - STATE(5183), 1, + ACTIONS(9091), 1, + anon_sym_RBRACK, + STATE(5237), 1, sym_comment, - [133064] = 3, + [135012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8997), 1, - anon_sym_RPAREN, - STATE(5184), 1, + ACTIONS(9093), 1, + anon_sym_LT, + STATE(5238), 1, + sym_comment, + [135022] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9095), 1, + aux_sym__str_back_ticks_token1, + STATE(5239), 1, sym_comment, - [133074] = 3, + [135032] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8999), 1, + ACTIONS(9097), 1, anon_sym_RBRACE, - STATE(5185), 1, + STATE(5240), 1, sym_comment, - [133084] = 3, - ACTIONS(3), 1, + [135042] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(441), 1, - ts_builtin_sym_end, - STATE(5186), 1, + ACTIONS(9099), 1, + sym__space, + STATE(5241), 1, sym_comment, - [133094] = 3, + [135052] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9101), 1, + aux_sym_cmd_identifier_token2, + STATE(5242), 1, + sym_comment, + [135062] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9001), 1, - anon_sym_SQUOTE2, - STATE(5187), 1, + ACTIONS(9103), 1, + anon_sym_GT2, + STATE(5243), 1, sym_comment, - [133104] = 3, + [135072] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9105), 1, + aux_sym_cmd_identifier_token6, + STATE(5244), 1, + sym_comment, + [135082] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9003), 1, - anon_sym_BQUOTE2, - STATE(5188), 1, + ACTIONS(9107), 1, + anon_sym_EQ, + STATE(5245), 1, sym_comment, - [133114] = 3, + [135092] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + STATE(5246), 1, + sym_comment, + [135102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9005), 1, + ACTIONS(9109), 1, anon_sym_LT, - STATE(5189), 1, + STATE(5247), 1, sym_comment, - [133124] = 3, + [135112] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9007), 1, - anon_sym_RBRACE, - STATE(5190), 1, + ACTIONS(9111), 1, + sym_identifier, + STATE(5248), 1, sym_comment, - [133134] = 3, + [135122] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9009), 1, - anon_sym_RBRACE, - STATE(5191), 1, + ACTIONS(9113), 1, + sym_raw_string_end, + STATE(5249), 1, sym_comment, - [133144] = 3, + [135132] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, - STATE(5192), 1, + ACTIONS(9115), 1, + anon_sym_RBRACE, + STATE(5250), 1, sym_comment, - [133154] = 3, - ACTIONS(103), 1, + [135142] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9011), 1, - aux_sym_cmd_identifier_token6, - STATE(5193), 1, + ACTIONS(9117), 1, + anon_sym_DASH_GT, + STATE(5251), 1, sym_comment, - [133164] = 3, + [135152] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9013), 1, + ACTIONS(9119), 1, anon_sym_EQ, - STATE(5194), 1, + STATE(5252), 1, sym_comment, - [133174] = 3, + [135162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9015), 1, - anon_sym_EQ, - STATE(5195), 1, + ACTIONS(9121), 1, + anon_sym_RBRACK, + STATE(5253), 1, sym_comment, - [133184] = 3, + [135172] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9017), 1, + ACTIONS(9123), 1, aux_sym_cmd_identifier_token6, - STATE(5196), 1, + STATE(5254), 1, sym_comment, - [133194] = 3, + [135182] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9019), 1, - anon_sym_EQ, - STATE(5197), 1, + ACTIONS(9125), 1, + anon_sym_RPAREN, + STATE(5255), 1, sym_comment, - [133204] = 3, - ACTIONS(3), 1, + [135192] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9021), 1, - anon_sym_RPAREN, - STATE(5198), 1, + ACTIONS(9127), 1, + aux_sym_cmd_identifier_token2, + STATE(5256), 1, sym_comment, - [133214] = 3, + [135202] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - STATE(5199), 1, + ACTIONS(9129), 1, + anon_sym_RBRACE, + STATE(5257), 1, sym_comment, - [133224] = 3, + [135212] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9023), 1, - anon_sym_EQ, - STATE(5200), 1, + ACTIONS(9131), 1, + anon_sym_RBRACK, + STATE(5258), 1, sym_comment, - [133234] = 3, + [135222] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, - STATE(5201), 1, + ACTIONS(9133), 1, + anon_sym_DQUOTE, + STATE(5259), 1, sym_comment, - [133244] = 3, + [135232] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9025), 1, - anon_sym_DQUOTE, - STATE(5202), 1, + ACTIONS(9135), 1, + anon_sym_RPAREN, + STATE(5260), 1, sym_comment, - [133254] = 1, - ACTIONS(9027), 1, + [135242] = 1, + ACTIONS(9137), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1263)] = 0, - [SMALL_STATE(1264)] = 73, - [SMALL_STATE(1265)] = 146, - [SMALL_STATE(1266)] = 219, - [SMALL_STATE(1267)] = 292, - [SMALL_STATE(1268)] = 391, - [SMALL_STATE(1269)] = 468, - [SMALL_STATE(1270)] = 541, - [SMALL_STATE(1271)] = 614, - [SMALL_STATE(1272)] = 687, - [SMALL_STATE(1273)] = 760, - [SMALL_STATE(1274)] = 833, - [SMALL_STATE(1275)] = 906, - [SMALL_STATE(1276)] = 1045, - [SMALL_STATE(1277)] = 1128, - [SMALL_STATE(1278)] = 1201, - [SMALL_STATE(1279)] = 1302, - [SMALL_STATE(1280)] = 1375, - [SMALL_STATE(1281)] = 1448, - [SMALL_STATE(1282)] = 1521, - [SMALL_STATE(1283)] = 1594, - [SMALL_STATE(1284)] = 1685, - [SMALL_STATE(1285)] = 1758, - [SMALL_STATE(1286)] = 1831, - [SMALL_STATE(1287)] = 1926, - [SMALL_STATE(1288)] = 2069, - [SMALL_STATE(1289)] = 2144, - [SMALL_STATE(1290)] = 2217, - [SMALL_STATE(1291)] = 2290, - [SMALL_STATE(1292)] = 2433, - [SMALL_STATE(1293)] = 2506, - [SMALL_STATE(1294)] = 2579, - [SMALL_STATE(1295)] = 2652, - [SMALL_STATE(1296)] = 2725, - [SMALL_STATE(1297)] = 2798, - [SMALL_STATE(1298)] = 2871, - [SMALL_STATE(1299)] = 2944, - [SMALL_STATE(1300)] = 3017, - [SMALL_STATE(1301)] = 3090, - [SMALL_STATE(1302)] = 3163, - [SMALL_STATE(1303)] = 3236, - [SMALL_STATE(1304)] = 3309, - [SMALL_STATE(1305)] = 3382, - [SMALL_STATE(1306)] = 3455, - [SMALL_STATE(1307)] = 3528, - [SMALL_STATE(1308)] = 3601, - [SMALL_STATE(1309)] = 3704, - [SMALL_STATE(1310)] = 3777, - [SMALL_STATE(1311)] = 3850, - [SMALL_STATE(1312)] = 3923, - [SMALL_STATE(1313)] = 3996, - [SMALL_STATE(1314)] = 4069, - [SMALL_STATE(1315)] = 4166, - [SMALL_STATE(1316)] = 4259, - [SMALL_STATE(1317)] = 4332, - [SMALL_STATE(1318)] = 4405, - [SMALL_STATE(1319)] = 4478, - [SMALL_STATE(1320)] = 4551, - [SMALL_STATE(1321)] = 4624, - [SMALL_STATE(1322)] = 4697, - [SMALL_STATE(1323)] = 4770, - [SMALL_STATE(1324)] = 4859, - [SMALL_STATE(1325)] = 4932, - [SMALL_STATE(1326)] = 5005, - [SMALL_STATE(1327)] = 5078, - [SMALL_STATE(1328)] = 5151, - [SMALL_STATE(1329)] = 5290, - [SMALL_STATE(1330)] = 5433, - [SMALL_STATE(1331)] = 5518, - [SMALL_STATE(1332)] = 5661, - [SMALL_STATE(1333)] = 5734, - [SMALL_STATE(1334)] = 5807, - [SMALL_STATE(1335)] = 5880, - [SMALL_STATE(1336)] = 5959, - [SMALL_STATE(1337)] = 6032, - [SMALL_STATE(1338)] = 6105, - [SMALL_STATE(1339)] = 6244, - [SMALL_STATE(1340)] = 6317, - [SMALL_STATE(1341)] = 6390, - [SMALL_STATE(1342)] = 6463, - [SMALL_STATE(1343)] = 6536, - [SMALL_STATE(1344)] = 6609, - [SMALL_STATE(1345)] = 6682, - [SMALL_STATE(1346)] = 6755, - [SMALL_STATE(1347)] = 6895, - [SMALL_STATE(1348)] = 7043, - [SMALL_STATE(1349)] = 7180, - [SMALL_STATE(1350)] = 7317, - [SMALL_STATE(1351)] = 7394, - [SMALL_STATE(1352)] = 7531, - [SMALL_STATE(1353)] = 7668, - [SMALL_STATE(1354)] = 7805, - [SMALL_STATE(1355)] = 7882, - [SMALL_STATE(1356)] = 7955, - [SMALL_STATE(1357)] = 8032, - [SMALL_STATE(1358)] = 8105, - [SMALL_STATE(1359)] = 8179, - [SMALL_STATE(1360)] = 8249, - [SMALL_STATE(1361)] = 8391, - [SMALL_STATE(1362)] = 8531, - [SMALL_STATE(1363)] = 8665, - [SMALL_STATE(1364)] = 8741, - [SMALL_STATE(1365)] = 8819, - [SMALL_STATE(1366)] = 8953, - [SMALL_STATE(1367)] = 9023, - [SMALL_STATE(1368)] = 9099, - [SMALL_STATE(1369)] = 9175, - [SMALL_STATE(1370)] = 9247, - [SMALL_STATE(1371)] = 9319, - [SMALL_STATE(1372)] = 9395, - [SMALL_STATE(1373)] = 9537, - [SMALL_STATE(1374)] = 9671, - [SMALL_STATE(1375)] = 9805, - [SMALL_STATE(1376)] = 9939, - [SMALL_STATE(1377)] = 10008, - [SMALL_STATE(1378)] = 10077, - [SMALL_STATE(1379)] = 10146, - [SMALL_STATE(1380)] = 10231, - [SMALL_STATE(1381)] = 10300, - [SMALL_STATE(1382)] = 10373, - [SMALL_STATE(1383)] = 10446, - [SMALL_STATE(1384)] = 10521, - [SMALL_STATE(1385)] = 10590, - [SMALL_STATE(1386)] = 10659, - [SMALL_STATE(1387)] = 10743, - [SMALL_STATE(1388)] = 10825, - [SMALL_STATE(1389)] = 10907, - [SMALL_STATE(1390)] = 10975, - [SMALL_STATE(1391)] = 11061, - [SMALL_STATE(1392)] = 11129, - [SMALL_STATE(1393)] = 11215, - [SMALL_STATE(1394)] = 11340, - [SMALL_STATE(1395)] = 11473, - [SMALL_STATE(1396)] = 11544, - [SMALL_STATE(1397)] = 11625, - [SMALL_STATE(1398)] = 11706, - [SMALL_STATE(1399)] = 11779, - [SMALL_STATE(1400)] = 11904, - [SMALL_STATE(1401)] = 11975, - [SMALL_STATE(1402)] = 12046, - [SMALL_STATE(1403)] = 12116, - [SMALL_STATE(1404)] = 12184, - [SMALL_STATE(1405)] = 12252, - [SMALL_STATE(1406)] = 12320, - [SMALL_STATE(1407)] = 12400, - [SMALL_STATE(1408)] = 12470, - [SMALL_STATE(1409)] = 12540, - [SMALL_STATE(1410)] = 12606, - [SMALL_STATE(1411)] = 12674, - [SMALL_STATE(1412)] = 12739, - [SMALL_STATE(1413)] = 12864, - [SMALL_STATE(1414)] = 12931, - [SMALL_STATE(1415)] = 13000, - [SMALL_STATE(1416)] = 13079, - [SMALL_STATE(1417)] = 13144, - [SMALL_STATE(1418)] = 13273, - [SMALL_STATE(1419)] = 13402, - [SMALL_STATE(1420)] = 13471, - [SMALL_STATE(1421)] = 13600, - [SMALL_STATE(1422)] = 13665, - [SMALL_STATE(1423)] = 13732, - [SMALL_STATE(1424)] = 13797, - [SMALL_STATE(1425)] = 13926, - [SMALL_STATE(1426)] = 13991, - [SMALL_STATE(1427)] = 14059, - [SMALL_STATE(1428)] = 14127, - [SMALL_STATE(1429)] = 14191, - [SMALL_STATE(1430)] = 14257, - [SMALL_STATE(1431)] = 14321, - [SMALL_STATE(1432)] = 14387, - [SMALL_STATE(1433)] = 14451, - [SMALL_STATE(1434)] = 14514, - [SMALL_STATE(1435)] = 14585, - [SMALL_STATE(1436)] = 14648, - [SMALL_STATE(1437)] = 14719, - [SMALL_STATE(1438)] = 14782, - [SMALL_STATE(1439)] = 14847, - [SMALL_STATE(1440)] = 14912, - [SMALL_STATE(1441)] = 14978, - [SMALL_STATE(1442)] = 15048, - [SMALL_STATE(1443)] = 15114, - [SMALL_STATE(1444)] = 15184, - [SMALL_STATE(1445)] = 15246, - [SMALL_STATE(1446)] = 15344, - [SMALL_STATE(1447)] = 15416, - [SMALL_STATE(1448)] = 15514, - [SMALL_STATE(1449)] = 15576, - [SMALL_STATE(1450)] = 15638, - [SMALL_STATE(1451)] = 15709, - [SMALL_STATE(1452)] = 15772, - [SMALL_STATE(1453)] = 15835, - [SMALL_STATE(1454)] = 15928, - [SMALL_STATE(1455)] = 16021, - [SMALL_STATE(1456)] = 16118, - [SMALL_STATE(1457)] = 16183, - [SMALL_STATE(1458)] = 16276, - [SMALL_STATE(1459)] = 16373, - [SMALL_STATE(1460)] = 16438, - [SMALL_STATE(1461)] = 16502, - [SMALL_STATE(1462)] = 16562, - [SMALL_STATE(1463)] = 16626, - [SMALL_STATE(1464)] = 16686, - [SMALL_STATE(1465)] = 16752, - [SMALL_STATE(1466)] = 16816, - [SMALL_STATE(1467)] = 16882, - [SMALL_STATE(1468)] = 16948, - [SMALL_STATE(1469)] = 17014, - [SMALL_STATE(1470)] = 17080, - [SMALL_STATE(1471)] = 17144, - [SMALL_STATE(1472)] = 17208, - [SMALL_STATE(1473)] = 17268, - [SMALL_STATE(1474)] = 17330, - [SMALL_STATE(1475)] = 17396, - [SMALL_STATE(1476)] = 17462, - [SMALL_STATE(1477)] = 17524, - [SMALL_STATE(1478)] = 17584, - [SMALL_STATE(1479)] = 17650, - [SMALL_STATE(1480)] = 17714, - [SMALL_STATE(1481)] = 17780, - [SMALL_STATE(1482)] = 17842, - [SMALL_STATE(1483)] = 17906, - [SMALL_STATE(1484)] = 17972, - [SMALL_STATE(1485)] = 18038, - [SMALL_STATE(1486)] = 18104, - [SMALL_STATE(1487)] = 18168, - [SMALL_STATE(1488)] = 18232, - [SMALL_STATE(1489)] = 18293, - [SMALL_STATE(1490)] = 18352, - [SMALL_STATE(1491)] = 18415, - [SMALL_STATE(1492)] = 18478, - [SMALL_STATE(1493)] = 18537, - [SMALL_STATE(1494)] = 18598, - [SMALL_STATE(1495)] = 18661, - [SMALL_STATE(1496)] = 18724, - [SMALL_STATE(1497)] = 18787, - [SMALL_STATE(1498)] = 18850, - [SMALL_STATE(1499)] = 18911, - [SMALL_STATE(1500)] = 18970, - [SMALL_STATE(1501)] = 19029, - [SMALL_STATE(1502)] = 19092, - [SMALL_STATE(1503)] = 19155, - [SMALL_STATE(1504)] = 19216, - [SMALL_STATE(1505)] = 19279, - [SMALL_STATE(1506)] = 19342, - [SMALL_STATE(1507)] = 19405, - [SMALL_STATE(1508)] = 19464, - [SMALL_STATE(1509)] = 19525, - [SMALL_STATE(1510)] = 19605, - [SMALL_STATE(1511)] = 19665, - [SMALL_STATE(1512)] = 19725, - [SMALL_STATE(1513)] = 19785, - [SMALL_STATE(1514)] = 19865, - [SMALL_STATE(1515)] = 19945, - [SMALL_STATE(1516)] = 20003, - [SMALL_STATE(1517)] = 20083, - [SMALL_STATE(1518)] = 20163, - [SMALL_STATE(1519)] = 20223, - [SMALL_STATE(1520)] = 20297, - [SMALL_STATE(1521)] = 20357, - [SMALL_STATE(1522)] = 20437, - [SMALL_STATE(1523)] = 20517, - [SMALL_STATE(1524)] = 20597, - [SMALL_STATE(1525)] = 20677, - [SMALL_STATE(1526)] = 20767, - [SMALL_STATE(1527)] = 20847, - [SMALL_STATE(1528)] = 20927, - [SMALL_STATE(1529)] = 21007, - [SMALL_STATE(1530)] = 21087, - [SMALL_STATE(1531)] = 21173, - [SMALL_STATE(1532)] = 21253, - [SMALL_STATE(1533)] = 21333, - [SMALL_STATE(1534)] = 21413, - [SMALL_STATE(1535)] = 21493, - [SMALL_STATE(1536)] = 21573, - [SMALL_STATE(1537)] = 21653, - [SMALL_STATE(1538)] = 21745, - [SMALL_STATE(1539)] = 21825, - [SMALL_STATE(1540)] = 21905, - [SMALL_STATE(1541)] = 21985, - [SMALL_STATE(1542)] = 22065, - [SMALL_STATE(1543)] = 22145, - [SMALL_STATE(1544)] = 22225, - [SMALL_STATE(1545)] = 22305, - [SMALL_STATE(1546)] = 22385, - [SMALL_STATE(1547)] = 22465, - [SMALL_STATE(1548)] = 22545, - [SMALL_STATE(1549)] = 22625, - [SMALL_STATE(1550)] = 22705, - [SMALL_STATE(1551)] = 22791, - [SMALL_STATE(1552)] = 22871, - [SMALL_STATE(1553)] = 22951, - [SMALL_STATE(1554)] = 23031, - [SMALL_STATE(1555)] = 23111, - [SMALL_STATE(1556)] = 23191, - [SMALL_STATE(1557)] = 23271, - [SMALL_STATE(1558)] = 23351, - [SMALL_STATE(1559)] = 23431, - [SMALL_STATE(1560)] = 23511, - [SMALL_STATE(1561)] = 23591, - [SMALL_STATE(1562)] = 23671, - [SMALL_STATE(1563)] = 23751, - [SMALL_STATE(1564)] = 23843, - [SMALL_STATE(1565)] = 23919, - [SMALL_STATE(1566)] = 23993, - [SMALL_STATE(1567)] = 24061, - [SMALL_STATE(1568)] = 24125, - [SMALL_STATE(1569)] = 24211, - [SMALL_STATE(1570)] = 24299, - [SMALL_STATE(1571)] = 24389, - [SMALL_STATE(1572)] = 24467, - [SMALL_STATE(1573)] = 24539, - [SMALL_STATE(1574)] = 24619, - [SMALL_STATE(1575)] = 24701, - [SMALL_STATE(1576)] = 24785, - [SMALL_STATE(1577)] = 24865, - [SMALL_STATE(1578)] = 24951, - [SMALL_STATE(1579)] = 25027, - [SMALL_STATE(1580)] = 25101, - [SMALL_STATE(1581)] = 25175, - [SMALL_STATE(1582)] = 25247, - [SMALL_STATE(1583)] = 25315, - [SMALL_STATE(1584)] = 25381, - [SMALL_STATE(1585)] = 25445, - [SMALL_STATE(1586)] = 25507, - [SMALL_STATE(1587)] = 25593, - [SMALL_STATE(1588)] = 25677, - [SMALL_STATE(1589)] = 25765, - [SMALL_STATE(1590)] = 25855, - [SMALL_STATE(1591)] = 25943, - [SMALL_STATE(1592)] = 26021, - [SMALL_STATE(1593)] = 26097, - [SMALL_STATE(1594)] = 26169, - [SMALL_STATE(1595)] = 26239, - [SMALL_STATE(1596)] = 26319, - [SMALL_STATE(1597)] = 26397, - [SMALL_STATE(1598)] = 26479, - [SMALL_STATE(1599)] = 26559, - [SMALL_STATE(1600)] = 26643, - [SMALL_STATE(1601)] = 26725, - [SMALL_STATE(1602)] = 26801, - [SMALL_STATE(1603)] = 26875, - [SMALL_STATE(1604)] = 26943, - [SMALL_STATE(1605)] = 27023, - [SMALL_STATE(1606)] = 27087, - [SMALL_STATE(1607)] = 27173, - [SMALL_STATE(1608)] = 27261, - [SMALL_STATE(1609)] = 27351, - [SMALL_STATE(1610)] = 27429, - [SMALL_STATE(1611)] = 27501, - [SMALL_STATE(1612)] = 27581, - [SMALL_STATE(1613)] = 27663, - [SMALL_STATE(1614)] = 27747, - [SMALL_STATE(1615)] = 27821, - [SMALL_STATE(1616)] = 27893, - [SMALL_STATE(1617)] = 27959, - [SMALL_STATE(1618)] = 28021, - [SMALL_STATE(1619)] = 28105, - [SMALL_STATE(1620)] = 28191, - [SMALL_STATE(1621)] = 28279, - [SMALL_STATE(1622)] = 28355, - [SMALL_STATE(1623)] = 28425, - [SMALL_STATE(1624)] = 28503, - [SMALL_STATE(1625)] = 28583, - [SMALL_STATE(1626)] = 28665, - [SMALL_STATE(1627)] = 28741, - [SMALL_STATE(1628)] = 28815, - [SMALL_STATE(1629)] = 28889, - [SMALL_STATE(1630)] = 28961, - [SMALL_STATE(1631)] = 29029, - [SMALL_STATE(1632)] = 29095, - [SMALL_STATE(1633)] = 29159, - [SMALL_STATE(1634)] = 29221, - [SMALL_STATE(1635)] = 29307, - [SMALL_STATE(1636)] = 29391, - [SMALL_STATE(1637)] = 29479, - [SMALL_STATE(1638)] = 29565, - [SMALL_STATE(1639)] = 29655, - [SMALL_STATE(1640)] = 29743, - [SMALL_STATE(1641)] = 29821, - [SMALL_STATE(1642)] = 29897, - [SMALL_STATE(1643)] = 29969, - [SMALL_STATE(1644)] = 30039, - [SMALL_STATE(1645)] = 30119, - [SMALL_STATE(1646)] = 30197, - [SMALL_STATE(1647)] = 30279, - [SMALL_STATE(1648)] = 30359, - [SMALL_STATE(1649)] = 30443, - [SMALL_STATE(1650)] = 30525, - [SMALL_STATE(1651)] = 30599, - [SMALL_STATE(1652)] = 30671, - [SMALL_STATE(1653)] = 30737, - [SMALL_STATE(1654)] = 30799, - [SMALL_STATE(1655)] = 30883, - [SMALL_STATE(1656)] = 30969, - [SMALL_STATE(1657)] = 31057, - [SMALL_STATE(1658)] = 31133, - [SMALL_STATE(1659)] = 31203, - [SMALL_STATE(1660)] = 31281, - [SMALL_STATE(1661)] = 31361, - [SMALL_STATE(1662)] = 31443, - [SMALL_STATE(1663)] = 31523, - [SMALL_STATE(1664)] = 31603, - [SMALL_STATE(1665)] = 31683, - [SMALL_STATE(1666)] = 31755, - [SMALL_STATE(1667)] = 31825, - [SMALL_STATE(1668)] = 31889, - [SMALL_STATE(1669)] = 31949, - [SMALL_STATE(1670)] = 32031, - [SMALL_STATE(1671)] = 32115, - [SMALL_STATE(1672)] = 32201, - [SMALL_STATE(1673)] = 32275, - [SMALL_STATE(1674)] = 32343, - [SMALL_STATE(1675)] = 32419, - [SMALL_STATE(1676)] = 32497, - [SMALL_STATE(1677)] = 32577, - [SMALL_STATE(1678)] = 32663, - [SMALL_STATE(1679)] = 32749, - [SMALL_STATE(1680)] = 32820, - [SMALL_STATE(1681)] = 32907, - [SMALL_STATE(1682)] = 32978, - [SMALL_STATE(1683)] = 33047, - [SMALL_STATE(1684)] = 33110, - [SMALL_STATE(1685)] = 33169, - [SMALL_STATE(1686)] = 33250, - [SMALL_STATE(1687)] = 33333, - [SMALL_STATE(1688)] = 33418, - [SMALL_STATE(1689)] = 33495, - [SMALL_STATE(1690)] = 33568, - [SMALL_STATE(1691)] = 33635, - [SMALL_STATE(1692)] = 33710, - [SMALL_STATE(1693)] = 33787, - [SMALL_STATE(1694)] = 33866, - [SMALL_STATE(1695)] = 33953, - [SMALL_STATE(1696)] = 34026, - [SMALL_STATE(1697)] = 34085, - [SMALL_STATE(1698)] = 34156, - [SMALL_STATE(1699)] = 34242, - [SMALL_STATE(1700)] = 34328, - [SMALL_STATE(1701)] = 34414, - [SMALL_STATE(1702)] = 34500, - [SMALL_STATE(1703)] = 34586, - [SMALL_STATE(1704)] = 34672, - [SMALL_STATE(1705)] = 34732, - [SMALL_STATE(1706)] = 34802, - [SMALL_STATE(1707)] = 34862, - [SMALL_STATE(1708)] = 34932, - [SMALL_STATE(1709)] = 35002, - [SMALL_STATE(1710)] = 35088, - [SMALL_STATE(1711)] = 35174, - [SMALL_STATE(1712)] = 35244, - [SMALL_STATE(1713)] = 35330, - [SMALL_STATE(1714)] = 35416, - [SMALL_STATE(1715)] = 35502, - [SMALL_STATE(1716)] = 35569, - [SMALL_STATE(1717)] = 35650, - [SMALL_STATE(1718)] = 35717, - [SMALL_STATE(1719)] = 35786, - [SMALL_STATE(1720)] = 35857, - [SMALL_STATE(1721)] = 35916, - [SMALL_STATE(1722)] = 35997, - [SMALL_STATE(1723)] = 36054, - [SMALL_STATE(1724)] = 36121, - [SMALL_STATE(1725)] = 36202, - [SMALL_STATE(1726)] = 36259, - [SMALL_STATE(1727)] = 36330, - [SMALL_STATE(1728)] = 36393, - [SMALL_STATE(1729)] = 36460, - [SMALL_STATE(1730)] = 36527, - [SMALL_STATE(1731)] = 36594, - [SMALL_STATE(1732)] = 36665, - [SMALL_STATE(1733)] = 36736, - [SMALL_STATE(1734)] = 36797, - [SMALL_STATE(1735)] = 36860, - [SMALL_STATE(1736)] = 36923, - [SMALL_STATE(1737)] = 36982, - [SMALL_STATE(1738)] = 37050, - [SMALL_STATE(1739)] = 37112, - [SMALL_STATE(1740)] = 37180, - [SMALL_STATE(1741)] = 37258, - [SMALL_STATE(1742)] = 37320, - [SMALL_STATE(1743)] = 37380, - [SMALL_STATE(1744)] = 37438, - [SMALL_STATE(1745)] = 37496, - [SMALL_STATE(1746)] = 37564, - [SMALL_STATE(1747)] = 37632, - [SMALL_STATE(1748)] = 37690, - [SMALL_STATE(1749)] = 37748, - [SMALL_STATE(1750)] = 37802, - [SMALL_STATE(1751)] = 37856, - [SMALL_STATE(1752)] = 37910, - [SMALL_STATE(1753)] = 37964, - [SMALL_STATE(1754)] = 38042, - [SMALL_STATE(1755)] = 38096, - [SMALL_STATE(1756)] = 38174, - [SMALL_STATE(1757)] = 38252, - [SMALL_STATE(1758)] = 38306, - [SMALL_STATE(1759)] = 38374, - [SMALL_STATE(1760)] = 38428, - [SMALL_STATE(1761)] = 38482, - [SMALL_STATE(1762)] = 38538, - [SMALL_STATE(1763)] = 38594, - [SMALL_STATE(1764)] = 38674, - [SMALL_STATE(1765)] = 38752, - [SMALL_STATE(1766)] = 38810, - [SMALL_STATE(1767)] = 38888, - [SMALL_STATE(1768)] = 38966, - [SMALL_STATE(1769)] = 39044, - [SMALL_STATE(1770)] = 39112, - [SMALL_STATE(1771)] = 39192, - [SMALL_STATE(1772)] = 39270, - [SMALL_STATE(1773)] = 39330, - [SMALL_STATE(1774)] = 39408, - [SMALL_STATE(1775)] = 39470, - [SMALL_STATE(1776)] = 39548, - [SMALL_STATE(1777)] = 39602, - [SMALL_STATE(1778)] = 39655, - [SMALL_STATE(1779)] = 39732, - [SMALL_STATE(1780)] = 39809, - [SMALL_STATE(1781)] = 39862, - [SMALL_STATE(1782)] = 39913, - [SMALL_STATE(1783)] = 39964, - [SMALL_STATE(1784)] = 40029, - [SMALL_STATE(1785)] = 40092, - [SMALL_STATE(1786)] = 40169, - [SMALL_STATE(1787)] = 40222, - [SMALL_STATE(1788)] = 40275, - [SMALL_STATE(1789)] = 40340, - [SMALL_STATE(1790)] = 40405, - [SMALL_STATE(1791)] = 40482, - [SMALL_STATE(1792)] = 40547, - [SMALL_STATE(1793)] = 40598, - [SMALL_STATE(1794)] = 40649, - [SMALL_STATE(1795)] = 40714, - [SMALL_STATE(1796)] = 40769, - [SMALL_STATE(1797)] = 40822, - [SMALL_STATE(1798)] = 40887, - [SMALL_STATE(1799)] = 40940, - [SMALL_STATE(1800)] = 41017, - [SMALL_STATE(1801)] = 41070, - [SMALL_STATE(1802)] = 41125, - [SMALL_STATE(1803)] = 41178, - [SMALL_STATE(1804)] = 41233, - [SMALL_STATE(1805)] = 41290, - [SMALL_STATE(1806)] = 41347, - [SMALL_STATE(1807)] = 41400, - [SMALL_STATE(1808)] = 41451, - [SMALL_STATE(1809)] = 41502, - [SMALL_STATE(1810)] = 41579, - [SMALL_STATE(1811)] = 41644, - [SMALL_STATE(1812)] = 41709, - [SMALL_STATE(1813)] = 41768, - [SMALL_STATE(1814)] = 41825, - [SMALL_STATE(1815)] = 41890, - [SMALL_STATE(1816)] = 41955, - [SMALL_STATE(1817)] = 42010, - [SMALL_STATE(1818)] = 42087, - [SMALL_STATE(1819)] = 42164, - [SMALL_STATE(1820)] = 42241, - [SMALL_STATE(1821)] = 42318, - [SMALL_STATE(1822)] = 42395, - [SMALL_STATE(1823)] = 42472, - [SMALL_STATE(1824)] = 42527, - [SMALL_STATE(1825)] = 42582, - [SMALL_STATE(1826)] = 42634, - [SMALL_STATE(1827)] = 42694, - [SMALL_STATE(1828)] = 42754, - [SMALL_STATE(1829)] = 42816, - [SMALL_STATE(1830)] = 42868, - [SMALL_STATE(1831)] = 42928, - [SMALL_STATE(1832)] = 42990, - [SMALL_STATE(1833)] = 43044, - [SMALL_STATE(1834)] = 43096, - [SMALL_STATE(1835)] = 43148, - [SMALL_STATE(1836)] = 43200, - [SMALL_STATE(1837)] = 43254, - [SMALL_STATE(1838)] = 43308, - [SMALL_STATE(1839)] = 43368, - [SMALL_STATE(1840)] = 43422, - [SMALL_STATE(1841)] = 43474, - [SMALL_STATE(1842)] = 43536, - [SMALL_STATE(1843)] = 43588, - [SMALL_STATE(1844)] = 43640, - [SMALL_STATE(1845)] = 43692, - [SMALL_STATE(1846)] = 43743, - [SMALL_STATE(1847)] = 43802, - [SMALL_STATE(1848)] = 43853, - [SMALL_STATE(1849)] = 43904, - [SMALL_STATE(1850)] = 43955, - [SMALL_STATE(1851)] = 44014, - [SMALL_STATE(1852)] = 44073, - [SMALL_STATE(1853)] = 44124, - [SMALL_STATE(1854)] = 44223, - [SMALL_STATE(1855)] = 44274, - [SMALL_STATE(1856)] = 44333, - [SMALL_STATE(1857)] = 44384, - [SMALL_STATE(1858)] = 44435, - [SMALL_STATE(1859)] = 44486, - [SMALL_STATE(1860)] = 44541, - [SMALL_STATE(1861)] = 44592, - [SMALL_STATE(1862)] = 44643, - [SMALL_STATE(1863)] = 44694, - [SMALL_STATE(1864)] = 44753, - [SMALL_STATE(1865)] = 44808, - [SMALL_STATE(1866)] = 44859, - [SMALL_STATE(1867)] = 44910, - [SMALL_STATE(1868)] = 44961, - [SMALL_STATE(1869)] = 45012, - [SMALL_STATE(1870)] = 45063, - [SMALL_STATE(1871)] = 45114, - [SMALL_STATE(1872)] = 45165, - [SMALL_STATE(1873)] = 45216, - [SMALL_STATE(1874)] = 45267, - [SMALL_STATE(1875)] = 45318, - [SMALL_STATE(1876)] = 45377, - [SMALL_STATE(1877)] = 45428, - [SMALL_STATE(1878)] = 45487, - [SMALL_STATE(1879)] = 45542, - [SMALL_STATE(1880)] = 45597, - [SMALL_STATE(1881)] = 45648, - [SMALL_STATE(1882)] = 45698, - [SMALL_STATE(1883)] = 45754, - [SMALL_STATE(1884)] = 45812, - [SMALL_STATE(1885)] = 45862, - [SMALL_STATE(1886)] = 45912, - [SMALL_STATE(1887)] = 45962, - [SMALL_STATE(1888)] = 46012, - [SMALL_STATE(1889)] = 46070, - [SMALL_STATE(1890)] = 46120, - [SMALL_STATE(1891)] = 46170, - [SMALL_STATE(1892)] = 46220, - [SMALL_STATE(1893)] = 46274, - [SMALL_STATE(1894)] = 46328, - [SMALL_STATE(1895)] = 46386, - [SMALL_STATE(1896)] = 46440, - [SMALL_STATE(1897)] = 46490, - [SMALL_STATE(1898)] = 46586, - [SMALL_STATE(1899)] = 46636, - [SMALL_STATE(1900)] = 46688, - [SMALL_STATE(1901)] = 46784, - [SMALL_STATE(1902)] = 46842, - [SMALL_STATE(1903)] = 46896, - [SMALL_STATE(1904)] = 46946, - [SMALL_STATE(1905)] = 46998, - [SMALL_STATE(1906)] = 47050, - [SMALL_STATE(1907)] = 47100, - [SMALL_STATE(1908)] = 47150, - [SMALL_STATE(1909)] = 47200, - [SMALL_STATE(1910)] = 47258, - [SMALL_STATE(1911)] = 47308, - [SMALL_STATE(1912)] = 47366, - [SMALL_STATE(1913)] = 47418, - [SMALL_STATE(1914)] = 47468, - [SMALL_STATE(1915)] = 47518, - [SMALL_STATE(1916)] = 47568, - [SMALL_STATE(1917)] = 47626, - [SMALL_STATE(1918)] = 47677, - [SMALL_STATE(1919)] = 47730, - [SMALL_STATE(1920)] = 47783, - [SMALL_STATE(1921)] = 47832, - [SMALL_STATE(1922)] = 47885, - [SMALL_STATE(1923)] = 47938, - [SMALL_STATE(1924)] = 47991, - [SMALL_STATE(1925)] = 48044, - [SMALL_STATE(1926)] = 48097, - [SMALL_STATE(1927)] = 48150, - [SMALL_STATE(1928)] = 48203, - [SMALL_STATE(1929)] = 48256, - [SMALL_STATE(1930)] = 48307, - [SMALL_STATE(1931)] = 48360, - [SMALL_STATE(1932)] = 48413, - [SMALL_STATE(1933)] = 48466, - [SMALL_STATE(1934)] = 48519, - [SMALL_STATE(1935)] = 48568, - [SMALL_STATE(1936)] = 48621, - [SMALL_STATE(1937)] = 48716, - [SMALL_STATE(1938)] = 48773, - [SMALL_STATE(1939)] = 48826, - [SMALL_STATE(1940)] = 48877, - [SMALL_STATE(1941)] = 48932, - [SMALL_STATE(1942)] = 48981, - [SMALL_STATE(1943)] = 49032, - [SMALL_STATE(1944)] = 49127, - [SMALL_STATE(1945)] = 49176, - [SMALL_STATE(1946)] = 49225, - [SMALL_STATE(1947)] = 49274, - [SMALL_STATE(1948)] = 49329, - [SMALL_STATE(1949)] = 49382, - [SMALL_STATE(1950)] = 49431, - [SMALL_STATE(1951)] = 49480, - [SMALL_STATE(1952)] = 49529, - [SMALL_STATE(1953)] = 49582, - [SMALL_STATE(1954)] = 49631, - [SMALL_STATE(1955)] = 49680, - [SMALL_STATE(1956)] = 49735, - [SMALL_STATE(1957)] = 49788, - [SMALL_STATE(1958)] = 49841, - [SMALL_STATE(1959)] = 49890, - [SMALL_STATE(1960)] = 49943, - [SMALL_STATE(1961)] = 49996, - [SMALL_STATE(1962)] = 50049, - [SMALL_STATE(1963)] = 50102, - [SMALL_STATE(1964)] = 50155, - [SMALL_STATE(1965)] = 50204, - [SMALL_STATE(1966)] = 50253, - [SMALL_STATE(1967)] = 50306, - [SMALL_STATE(1968)] = 50358, - [SMALL_STATE(1969)] = 50412, - [SMALL_STATE(1970)] = 50464, - [SMALL_STATE(1971)] = 50512, - [SMALL_STATE(1972)] = 50560, - [SMALL_STATE(1973)] = 50608, - [SMALL_STATE(1974)] = 50656, - [SMALL_STATE(1975)] = 50708, - [SMALL_STATE(1976)] = 50758, - [SMALL_STATE(1977)] = 50812, - [SMALL_STATE(1978)] = 50868, - [SMALL_STATE(1979)] = 50920, - [SMALL_STATE(1980)] = 50970, - [SMALL_STATE(1981)] = 51022, - [SMALL_STATE(1982)] = 51078, - [SMALL_STATE(1983)] = 51144, - [SMALL_STATE(1984)] = 51208, - [SMALL_STATE(1985)] = 51266, - [SMALL_STATE(1986)] = 51320, - [SMALL_STATE(1987)] = 51396, - [SMALL_STATE(1988)] = 51474, - [SMALL_STATE(1989)] = 51554, - [SMALL_STATE(1990)] = 51622, - [SMALL_STATE(1991)] = 51676, - [SMALL_STATE(1992)] = 51738, - [SMALL_STATE(1993)] = 51808, - [SMALL_STATE(1994)] = 51880, - [SMALL_STATE(1995)] = 51954, - [SMALL_STATE(1996)] = 52008, - [SMALL_STATE(1997)] = 52074, - [SMALL_STATE(1998)] = 52138, - [SMALL_STATE(1999)] = 52202, - [SMALL_STATE(2000)] = 52264, - [SMALL_STATE(2001)] = 52322, - [SMALL_STATE(2002)] = 52378, - [SMALL_STATE(2003)] = 52432, - [SMALL_STATE(2004)] = 52484, - [SMALL_STATE(2005)] = 52560, - [SMALL_STATE(2006)] = 52634, - [SMALL_STATE(2007)] = 52712, - [SMALL_STATE(2008)] = 52788, - [SMALL_STATE(2009)] = 52868, - [SMALL_STATE(2010)] = 52946, - [SMALL_STATE(2011)] = 53014, - [SMALL_STATE(2012)] = 53080, - [SMALL_STATE(2013)] = 53142, - [SMALL_STATE(2014)] = 53202, - [SMALL_STATE(2015)] = 53272, - [SMALL_STATE(2016)] = 53340, - [SMALL_STATE(2017)] = 53412, - [SMALL_STATE(2018)] = 53482, - [SMALL_STATE(2019)] = 53556, - [SMALL_STATE(2020)] = 53628, - [SMALL_STATE(2021)] = 53694, - [SMALL_STATE(2022)] = 53758, - [SMALL_STATE(2023)] = 53816, - [SMALL_STATE(2024)] = 53870, - [SMALL_STATE(2025)] = 53946, - [SMALL_STATE(2026)] = 54024, - [SMALL_STATE(2027)] = 54104, - [SMALL_STATE(2028)] = 54172, - [SMALL_STATE(2029)] = 54234, - [SMALL_STATE(2030)] = 54304, - [SMALL_STATE(2031)] = 54376, - [SMALL_STATE(2032)] = 54450, - [SMALL_STATE(2033)] = 54514, - [SMALL_STATE(2034)] = 54576, - [SMALL_STATE(2035)] = 54632, - [SMALL_STATE(2036)] = 54684, - [SMALL_STATE(2037)] = 54758, - [SMALL_STATE(2038)] = 54834, - [SMALL_STATE(2039)] = 54912, - [SMALL_STATE(2040)] = 54978, - [SMALL_STATE(2041)] = 55038, - [SMALL_STATE(2042)] = 55106, - [SMALL_STATE(2043)] = 55176, - [SMALL_STATE(2044)] = 55248, - [SMALL_STATE(2045)] = 55314, - [SMALL_STATE(2046)] = 55378, - [SMALL_STATE(2047)] = 55442, - [SMALL_STATE(2048)] = 55504, - [SMALL_STATE(2049)] = 55562, - [SMALL_STATE(2050)] = 55618, - [SMALL_STATE(2051)] = 55672, - [SMALL_STATE(2052)] = 55724, - [SMALL_STATE(2053)] = 55800, - [SMALL_STATE(2054)] = 55874, - [SMALL_STATE(2055)] = 55952, - [SMALL_STATE(2056)] = 56028, - [SMALL_STATE(2057)] = 56108, - [SMALL_STATE(2058)] = 56186, - [SMALL_STATE(2059)] = 56254, - [SMALL_STATE(2060)] = 56320, - [SMALL_STATE(2061)] = 56382, - [SMALL_STATE(2062)] = 56442, - [SMALL_STATE(2063)] = 56512, - [SMALL_STATE(2064)] = 56580, - [SMALL_STATE(2065)] = 56652, - [SMALL_STATE(2066)] = 56722, - [SMALL_STATE(2067)] = 56796, - [SMALL_STATE(2068)] = 56868, - [SMALL_STATE(2069)] = 56932, - [SMALL_STATE(2070)] = 56994, - [SMALL_STATE(2071)] = 57050, - [SMALL_STATE(2072)] = 57102, - [SMALL_STATE(2073)] = 57176, - [SMALL_STATE(2074)] = 57252, - [SMALL_STATE(2075)] = 57330, - [SMALL_STATE(2076)] = 57396, - [SMALL_STATE(2077)] = 57456, - [SMALL_STATE(2078)] = 57524, - [SMALL_STATE(2079)] = 57594, - [SMALL_STATE(2080)] = 57666, - [SMALL_STATE(2081)] = 57714, - [SMALL_STATE(2082)] = 57766, - [SMALL_STATE(2083)] = 57814, - [SMALL_STATE(2084)] = 57862, - [SMALL_STATE(2085)] = 57914, - [SMALL_STATE(2086)] = 57968, - [SMALL_STATE(2087)] = 58020, - [SMALL_STATE(2088)] = 58074, - [SMALL_STATE(2089)] = 58120, - [SMALL_STATE(2090)] = 58168, - [SMALL_STATE(2091)] = 58216, - [SMALL_STATE(2092)] = 58266, - [SMALL_STATE(2093)] = 58318, - [SMALL_STATE(2094)] = 58366, - [SMALL_STATE(2095)] = 58416, - [SMALL_STATE(2096)] = 58466, - [SMALL_STATE(2097)] = 58518, - [SMALL_STATE(2098)] = 58570, - [SMALL_STATE(2099)] = 58620, - [SMALL_STATE(2100)] = 58674, - [SMALL_STATE(2101)] = 58726, - [SMALL_STATE(2102)] = 58780, - [SMALL_STATE(2103)] = 58830, - [SMALL_STATE(2104)] = 58884, - [SMALL_STATE(2105)] = 58938, - [SMALL_STATE(2106)] = 58992, - [SMALL_STATE(2107)] = 59046, - [SMALL_STATE(2108)] = 59100, - [SMALL_STATE(2109)] = 59154, - [SMALL_STATE(2110)] = 59202, - [SMALL_STATE(2111)] = 59256, - [SMALL_STATE(2112)] = 59303, - [SMALL_STATE(2113)] = 59350, - [SMALL_STATE(2114)] = 59397, - [SMALL_STATE(2115)] = 59446, - [SMALL_STATE(2116)] = 59495, - [SMALL_STATE(2117)] = 59544, - [SMALL_STATE(2118)] = 59593, - [SMALL_STATE(2119)] = 59644, - [SMALL_STATE(2120)] = 59693, - [SMALL_STATE(2121)] = 59744, - [SMALL_STATE(2122)] = 59793, - [SMALL_STATE(2123)] = 59842, - [SMALL_STATE(2124)] = 59921, - [SMALL_STATE(2125)] = 60000, - [SMALL_STATE(2126)] = 60049, - [SMALL_STATE(2127)] = 60098, - [SMALL_STATE(2128)] = 60145, - [SMALL_STATE(2129)] = 60224, - [SMALL_STATE(2130)] = 60303, - [SMALL_STATE(2131)] = 60382, - [SMALL_STATE(2132)] = 60461, - [SMALL_STATE(2133)] = 60508, - [SMALL_STATE(2134)] = 60555, - [SMALL_STATE(2135)] = 60600, - [SMALL_STATE(2136)] = 60646, - [SMALL_STATE(2137)] = 60692, - [SMALL_STATE(2138)] = 60750, - [SMALL_STATE(2139)] = 60802, - [SMALL_STATE(2140)] = 60850, - [SMALL_STATE(2141)] = 60920, - [SMALL_STATE(2142)] = 60992, - [SMALL_STATE(2143)] = 61066, - [SMALL_STATE(2144)] = 61128, - [SMALL_STATE(2145)] = 61184, - [SMALL_STATE(2146)] = 61248, - [SMALL_STATE(2147)] = 61314, - [SMALL_STATE(2148)] = 61382, - [SMALL_STATE(2149)] = 61428, - [SMALL_STATE(2150)] = 61476, - [SMALL_STATE(2151)] = 61522, - [SMALL_STATE(2152)] = 61570, - [SMALL_STATE(2153)] = 61616, - [SMALL_STATE(2154)] = 61662, - [SMALL_STATE(2155)] = 61708, - [SMALL_STATE(2156)] = 61754, - [SMALL_STATE(2157)] = 61800, - [SMALL_STATE(2158)] = 61892, - [SMALL_STATE(2159)] = 61938, - [SMALL_STATE(2160)] = 62030, - [SMALL_STATE(2161)] = 62076, - [SMALL_STATE(2162)] = 62124, - [SMALL_STATE(2163)] = 62170, - [SMALL_STATE(2164)] = 62216, - [SMALL_STATE(2165)] = 62262, - [SMALL_STATE(2166)] = 62308, - [SMALL_STATE(2167)] = 62354, - [SMALL_STATE(2168)] = 62400, - [SMALL_STATE(2169)] = 62446, - [SMALL_STATE(2170)] = 62506, - [SMALL_STATE(2171)] = 62564, - [SMALL_STATE(2172)] = 62610, - [SMALL_STATE(2173)] = 62662, - [SMALL_STATE(2174)] = 62708, - [SMALL_STATE(2175)] = 62754, - [SMALL_STATE(2176)] = 62802, - [SMALL_STATE(2177)] = 62848, - [SMALL_STATE(2178)] = 62918, - [SMALL_STATE(2179)] = 62964, - [SMALL_STATE(2180)] = 63010, - [SMALL_STATE(2181)] = 63056, - [SMALL_STATE(2182)] = 63102, - [SMALL_STATE(2183)] = 63148, - [SMALL_STATE(2184)] = 63194, - [SMALL_STATE(2185)] = 63266, - [SMALL_STATE(2186)] = 63340, - [SMALL_STATE(2187)] = 63402, - [SMALL_STATE(2188)] = 63458, - [SMALL_STATE(2189)] = 63522, - [SMALL_STATE(2190)] = 63588, - [SMALL_STATE(2191)] = 63656, - [SMALL_STATE(2192)] = 63702, - [SMALL_STATE(2193)] = 63750, - [SMALL_STATE(2194)] = 63796, - [SMALL_STATE(2195)] = 63842, - [SMALL_STATE(2196)] = 63890, - [SMALL_STATE(2197)] = 63936, - [SMALL_STATE(2198)] = 63982, - [SMALL_STATE(2199)] = 64028, - [SMALL_STATE(2200)] = 64076, - [SMALL_STATE(2201)] = 64124, - [SMALL_STATE(2202)] = 64172, - [SMALL_STATE(2203)] = 64264, - [SMALL_STATE(2204)] = 64310, - [SMALL_STATE(2205)] = 64356, - [SMALL_STATE(2206)] = 64402, - [SMALL_STATE(2207)] = 64448, - [SMALL_STATE(2208)] = 64494, - [SMALL_STATE(2209)] = 64540, - [SMALL_STATE(2210)] = 64586, - [SMALL_STATE(2211)] = 64632, - [SMALL_STATE(2212)] = 64678, - [SMALL_STATE(2213)] = 64738, - [SMALL_STATE(2214)] = 64811, - [SMALL_STATE(2215)] = 64884, - [SMALL_STATE(2216)] = 64957, - [SMALL_STATE(2217)] = 65030, - [SMALL_STATE(2218)] = 65081, - [SMALL_STATE(2219)] = 65154, - [SMALL_STATE(2220)] = 65199, - [SMALL_STATE(2221)] = 65272, - [SMALL_STATE(2222)] = 65322, - [SMALL_STATE(2223)] = 65368, - [SMALL_STATE(2224)] = 65418, - [SMALL_STATE(2225)] = 65504, - [SMALL_STATE(2226)] = 65554, - [SMALL_STATE(2227)] = 65600, - [SMALL_STATE(2228)] = 65650, - [SMALL_STATE(2229)] = 65693, - [SMALL_STATE(2230)] = 65736, - [SMALL_STATE(2231)] = 65779, - [SMALL_STATE(2232)] = 65828, - [SMALL_STATE(2233)] = 65877, - [SMALL_STATE(2234)] = 65920, - [SMALL_STATE(2235)] = 65969, - [SMALL_STATE(2236)] = 66018, - [SMALL_STATE(2237)] = 66067, - [SMALL_STATE(2238)] = 66118, - [SMALL_STATE(2239)] = 66167, - [SMALL_STATE(2240)] = 66210, - [SMALL_STATE(2241)] = 66257, - [SMALL_STATE(2242)] = 66302, - [SMALL_STATE(2243)] = 66345, - [SMALL_STATE(2244)] = 66388, - [SMALL_STATE(2245)] = 66431, - [SMALL_STATE(2246)] = 66476, - [SMALL_STATE(2247)] = 66556, - [SMALL_STATE(2248)] = 66600, - [SMALL_STATE(2249)] = 66642, - [SMALL_STATE(2250)] = 66720, - [SMALL_STATE(2251)] = 66800, - [SMALL_STATE(2252)] = 66842, - [SMALL_STATE(2253)] = 66888, - [SMALL_STATE(2254)] = 66929, - [SMALL_STATE(2255)] = 66974, - [SMALL_STATE(2256)] = 67019, - [SMALL_STATE(2257)] = 67063, - [SMALL_STATE(2258)] = 67145, - [SMALL_STATE(2259)] = 67185, - [SMALL_STATE(2260)] = 67267, - [SMALL_STATE(2261)] = 67311, - [SMALL_STATE(2262)] = 67355, - [SMALL_STATE(2263)] = 67399, - [SMALL_STATE(2264)] = 67444, - [SMALL_STATE(2265)] = 67520, - [SMALL_STATE(2266)] = 67596, - [SMALL_STATE(2267)] = 67672, - [SMALL_STATE(2268)] = 67748, - [SMALL_STATE(2269)] = 67824, - [SMALL_STATE(2270)] = 67900, - [SMALL_STATE(2271)] = 67976, - [SMALL_STATE(2272)] = 68052, - [SMALL_STATE(2273)] = 68128, - [SMALL_STATE(2274)] = 68174, - [SMALL_STATE(2275)] = 68250, - [SMALL_STATE(2276)] = 68326, - [SMALL_STATE(2277)] = 68402, - [SMALL_STATE(2278)] = 68478, - [SMALL_STATE(2279)] = 68554, - [SMALL_STATE(2280)] = 68630, - [SMALL_STATE(2281)] = 68706, - [SMALL_STATE(2282)] = 68782, - [SMALL_STATE(2283)] = 68858, - [SMALL_STATE(2284)] = 68910, - [SMALL_STATE(2285)] = 68986, - [SMALL_STATE(2286)] = 69062, - [SMALL_STATE(2287)] = 69138, - [SMALL_STATE(2288)] = 69214, - [SMALL_STATE(2289)] = 69290, - [SMALL_STATE(2290)] = 69366, - [SMALL_STATE(2291)] = 69410, - [SMALL_STATE(2292)] = 69452, - [SMALL_STATE(2293)] = 69498, - [SMALL_STATE(2294)] = 69544, - [SMALL_STATE(2295)] = 69620, - [SMALL_STATE(2296)] = 69696, - [SMALL_STATE(2297)] = 69735, - [SMALL_STATE(2298)] = 69784, - [SMALL_STATE(2299)] = 69835, - [SMALL_STATE(2300)] = 69884, - [SMALL_STATE(2301)] = 69933, - [SMALL_STATE(2302)] = 69981, - [SMALL_STATE(2303)] = 70051, - [SMALL_STATE(2304)] = 70121, - [SMALL_STATE(2305)] = 70169, - [SMALL_STATE(2306)] = 70239, - [SMALL_STATE(2307)] = 70285, - [SMALL_STATE(2308)] = 70331, - [SMALL_STATE(2309)] = 70377, - [SMALL_STATE(2310)] = 70423, - [SMALL_STATE(2311)] = 70493, - [SMALL_STATE(2312)] = 70563, - [SMALL_STATE(2313)] = 70633, - [SMALL_STATE(2314)] = 70687, - [SMALL_STATE(2315)] = 70735, - [SMALL_STATE(2316)] = 70805, - [SMALL_STATE(2317)] = 70875, - [SMALL_STATE(2318)] = 70945, - [SMALL_STATE(2319)] = 71015, - [SMALL_STATE(2320)] = 71085, - [SMALL_STATE(2321)] = 71155, - [SMALL_STATE(2322)] = 71195, - [SMALL_STATE(2323)] = 71235, + [SMALL_STATE(1262)] = 0, + [SMALL_STATE(1263)] = 143, + [SMALL_STATE(1264)] = 216, + [SMALL_STATE(1265)] = 289, + [SMALL_STATE(1266)] = 372, + [SMALL_STATE(1267)] = 445, + [SMALL_STATE(1268)] = 518, + [SMALL_STATE(1269)] = 611, + [SMALL_STATE(1270)] = 684, + [SMALL_STATE(1271)] = 757, + [SMALL_STATE(1272)] = 830, + [SMALL_STATE(1273)] = 903, + [SMALL_STATE(1274)] = 980, + [SMALL_STATE(1275)] = 1053, + [SMALL_STATE(1276)] = 1148, + [SMALL_STATE(1277)] = 1221, + [SMALL_STATE(1278)] = 1318, + [SMALL_STATE(1279)] = 1391, + [SMALL_STATE(1280)] = 1480, + [SMALL_STATE(1281)] = 1553, + [SMALL_STATE(1282)] = 1626, + [SMALL_STATE(1283)] = 1711, + [SMALL_STATE(1284)] = 1784, + [SMALL_STATE(1285)] = 1863, + [SMALL_STATE(1286)] = 1936, + [SMALL_STATE(1287)] = 2009, + [SMALL_STATE(1288)] = 2082, + [SMALL_STATE(1289)] = 2155, + [SMALL_STATE(1290)] = 2228, + [SMALL_STATE(1291)] = 2301, + [SMALL_STATE(1292)] = 2374, + [SMALL_STATE(1293)] = 2447, + [SMALL_STATE(1294)] = 2520, + [SMALL_STATE(1295)] = 2595, + [SMALL_STATE(1296)] = 2668, + [SMALL_STATE(1297)] = 2741, + [SMALL_STATE(1298)] = 2814, + [SMALL_STATE(1299)] = 2887, + [SMALL_STATE(1300)] = 2960, + [SMALL_STATE(1301)] = 3033, + [SMALL_STATE(1302)] = 3132, + [SMALL_STATE(1303)] = 3205, + [SMALL_STATE(1304)] = 3278, + [SMALL_STATE(1305)] = 3351, + [SMALL_STATE(1306)] = 3424, + [SMALL_STATE(1307)] = 3497, + [SMALL_STATE(1308)] = 3570, + [SMALL_STATE(1309)] = 3643, + [SMALL_STATE(1310)] = 3786, + [SMALL_STATE(1311)] = 3859, + [SMALL_STATE(1312)] = 3932, + [SMALL_STATE(1313)] = 4005, + [SMALL_STATE(1314)] = 4078, + [SMALL_STATE(1315)] = 4217, + [SMALL_STATE(1316)] = 4290, + [SMALL_STATE(1317)] = 4363, + [SMALL_STATE(1318)] = 4436, + [SMALL_STATE(1319)] = 4509, + [SMALL_STATE(1320)] = 4610, + [SMALL_STATE(1321)] = 4683, + [SMALL_STATE(1322)] = 4756, + [SMALL_STATE(1323)] = 4859, + [SMALL_STATE(1324)] = 4932, + [SMALL_STATE(1325)] = 5005, + [SMALL_STATE(1326)] = 5078, + [SMALL_STATE(1327)] = 5169, + [SMALL_STATE(1328)] = 5242, + [SMALL_STATE(1329)] = 5315, + [SMALL_STATE(1330)] = 5388, + [SMALL_STATE(1331)] = 5461, + [SMALL_STATE(1332)] = 5604, + [SMALL_STATE(1333)] = 5747, + [SMALL_STATE(1334)] = 5886, + [SMALL_STATE(1335)] = 5959, + [SMALL_STATE(1336)] = 6032, + [SMALL_STATE(1337)] = 6105, + [SMALL_STATE(1338)] = 6178, + [SMALL_STATE(1339)] = 6251, + [SMALL_STATE(1340)] = 6324, + [SMALL_STATE(1341)] = 6397, + [SMALL_STATE(1342)] = 6470, + [SMALL_STATE(1343)] = 6609, + [SMALL_STATE(1344)] = 6682, + [SMALL_STATE(1345)] = 6755, + [SMALL_STATE(1346)] = 6895, + [SMALL_STATE(1347)] = 7043, + [SMALL_STATE(1348)] = 7120, + [SMALL_STATE(1349)] = 7257, + [SMALL_STATE(1350)] = 7330, + [SMALL_STATE(1351)] = 7407, + [SMALL_STATE(1352)] = 7544, + [SMALL_STATE(1353)] = 7681, + [SMALL_STATE(1354)] = 7818, + [SMALL_STATE(1355)] = 7895, + [SMALL_STATE(1356)] = 8032, + [SMALL_STATE(1357)] = 8105, + [SMALL_STATE(1358)] = 8177, + [SMALL_STATE(1359)] = 8255, + [SMALL_STATE(1360)] = 8397, + [SMALL_STATE(1361)] = 8469, + [SMALL_STATE(1362)] = 8609, + [SMALL_STATE(1363)] = 8743, + [SMALL_STATE(1364)] = 8885, + [SMALL_STATE(1365)] = 9019, + [SMALL_STATE(1366)] = 9095, + [SMALL_STATE(1367)] = 9165, + [SMALL_STATE(1368)] = 9241, + [SMALL_STATE(1369)] = 9375, + [SMALL_STATE(1370)] = 9451, + [SMALL_STATE(1371)] = 9525, + [SMALL_STATE(1372)] = 9659, + [SMALL_STATE(1373)] = 9735, + [SMALL_STATE(1374)] = 9805, + [SMALL_STATE(1375)] = 9939, + [SMALL_STATE(1376)] = 10012, + [SMALL_STATE(1377)] = 10081, + [SMALL_STATE(1378)] = 10156, + [SMALL_STATE(1379)] = 10229, + [SMALL_STATE(1380)] = 10298, + [SMALL_STATE(1381)] = 10367, + [SMALL_STATE(1382)] = 10436, + [SMALL_STATE(1383)] = 10521, + [SMALL_STATE(1384)] = 10590, + [SMALL_STATE(1385)] = 10659, + [SMALL_STATE(1386)] = 10741, + [SMALL_STATE(1387)] = 10809, + [SMALL_STATE(1388)] = 10893, + [SMALL_STATE(1389)] = 10979, + [SMALL_STATE(1390)] = 11061, + [SMALL_STATE(1391)] = 11147, + [SMALL_STATE(1392)] = 11215, + [SMALL_STATE(1393)] = 11288, + [SMALL_STATE(1394)] = 11359, + [SMALL_STATE(1395)] = 11430, + [SMALL_STATE(1396)] = 11501, + [SMALL_STATE(1397)] = 11634, + [SMALL_STATE(1398)] = 11759, + [SMALL_STATE(1399)] = 11840, + [SMALL_STATE(1400)] = 11965, + [SMALL_STATE(1401)] = 12046, + [SMALL_STATE(1402)] = 12114, + [SMALL_STATE(1403)] = 12184, + [SMALL_STATE(1404)] = 12250, + [SMALL_STATE(1405)] = 12318, + [SMALL_STATE(1406)] = 12398, + [SMALL_STATE(1407)] = 12466, + [SMALL_STATE(1408)] = 12536, + [SMALL_STATE(1409)] = 12604, + [SMALL_STATE(1410)] = 12674, + [SMALL_STATE(1411)] = 12803, + [SMALL_STATE(1412)] = 12872, + [SMALL_STATE(1413)] = 13001, + [SMALL_STATE(1414)] = 13066, + [SMALL_STATE(1415)] = 13135, + [SMALL_STATE(1416)] = 13264, + [SMALL_STATE(1417)] = 13331, + [SMALL_STATE(1418)] = 13460, + [SMALL_STATE(1419)] = 13525, + [SMALL_STATE(1420)] = 13604, + [SMALL_STATE(1421)] = 13669, + [SMALL_STATE(1422)] = 13794, + [SMALL_STATE(1423)] = 13859, + [SMALL_STATE(1424)] = 13926, + [SMALL_STATE(1425)] = 13991, + [SMALL_STATE(1426)] = 14057, + [SMALL_STATE(1427)] = 14125, + [SMALL_STATE(1428)] = 14189, + [SMALL_STATE(1429)] = 14255, + [SMALL_STATE(1430)] = 14319, + [SMALL_STATE(1431)] = 14387, + [SMALL_STATE(1432)] = 14451, + [SMALL_STATE(1433)] = 14516, + [SMALL_STATE(1434)] = 14587, + [SMALL_STATE(1435)] = 14652, + [SMALL_STATE(1436)] = 14723, + [SMALL_STATE(1437)] = 14786, + [SMALL_STATE(1438)] = 14849, + [SMALL_STATE(1439)] = 14912, + [SMALL_STATE(1440)] = 14978, + [SMALL_STATE(1441)] = 15050, + [SMALL_STATE(1442)] = 15120, + [SMALL_STATE(1443)] = 15182, + [SMALL_STATE(1444)] = 15244, + [SMALL_STATE(1445)] = 15342, + [SMALL_STATE(1446)] = 15440, + [SMALL_STATE(1447)] = 15502, + [SMALL_STATE(1448)] = 15568, + [SMALL_STATE(1449)] = 15638, + [SMALL_STATE(1450)] = 15735, + [SMALL_STATE(1451)] = 15832, + [SMALL_STATE(1452)] = 15925, + [SMALL_STATE(1453)] = 15990, + [SMALL_STATE(1454)] = 16053, + [SMALL_STATE(1455)] = 16118, + [SMALL_STATE(1456)] = 16189, + [SMALL_STATE(1457)] = 16282, + [SMALL_STATE(1458)] = 16345, + [SMALL_STATE(1459)] = 16438, + [SMALL_STATE(1460)] = 16500, + [SMALL_STATE(1461)] = 16564, + [SMALL_STATE(1462)] = 16630, + [SMALL_STATE(1463)] = 16696, + [SMALL_STATE(1464)] = 16762, + [SMALL_STATE(1465)] = 16826, + [SMALL_STATE(1466)] = 16886, + [SMALL_STATE(1467)] = 16946, + [SMALL_STATE(1468)] = 17012, + [SMALL_STATE(1469)] = 17076, + [SMALL_STATE(1470)] = 17142, + [SMALL_STATE(1471)] = 17206, + [SMALL_STATE(1472)] = 17272, + [SMALL_STATE(1473)] = 17338, + [SMALL_STATE(1474)] = 17404, + [SMALL_STATE(1475)] = 17468, + [SMALL_STATE(1476)] = 17532, + [SMALL_STATE(1477)] = 17598, + [SMALL_STATE(1478)] = 17658, + [SMALL_STATE(1479)] = 17722, + [SMALL_STATE(1480)] = 17782, + [SMALL_STATE(1481)] = 17844, + [SMALL_STATE(1482)] = 17908, + [SMALL_STATE(1483)] = 17974, + [SMALL_STATE(1484)] = 18036, + [SMALL_STATE(1485)] = 18102, + [SMALL_STATE(1486)] = 18166, + [SMALL_STATE(1487)] = 18232, + [SMALL_STATE(1488)] = 18295, + [SMALL_STATE(1489)] = 18356, + [SMALL_STATE(1490)] = 18419, + [SMALL_STATE(1491)] = 18482, + [SMALL_STATE(1492)] = 18545, + [SMALL_STATE(1493)] = 18608, + [SMALL_STATE(1494)] = 18667, + [SMALL_STATE(1495)] = 18730, + [SMALL_STATE(1496)] = 18791, + [SMALL_STATE(1497)] = 18854, + [SMALL_STATE(1498)] = 18917, + [SMALL_STATE(1499)] = 18976, + [SMALL_STATE(1500)] = 19039, + [SMALL_STATE(1501)] = 19098, + [SMALL_STATE(1502)] = 19159, + [SMALL_STATE(1503)] = 19222, + [SMALL_STATE(1504)] = 19283, + [SMALL_STATE(1505)] = 19342, + [SMALL_STATE(1506)] = 19403, + [SMALL_STATE(1507)] = 19462, + [SMALL_STATE(1508)] = 19525, + [SMALL_STATE(1509)] = 19597, + [SMALL_STATE(1510)] = 19677, + [SMALL_STATE(1511)] = 19735, + [SMALL_STATE(1512)] = 19795, + [SMALL_STATE(1513)] = 19875, + [SMALL_STATE(1514)] = 19955, + [SMALL_STATE(1515)] = 20047, + [SMALL_STATE(1516)] = 20121, + [SMALL_STATE(1517)] = 20201, + [SMALL_STATE(1518)] = 20281, + [SMALL_STATE(1519)] = 20361, + [SMALL_STATE(1520)] = 20441, + [SMALL_STATE(1521)] = 20521, + [SMALL_STATE(1522)] = 20601, + [SMALL_STATE(1523)] = 20661, + [SMALL_STATE(1524)] = 20751, + [SMALL_STATE(1525)] = 20831, + [SMALL_STATE(1526)] = 20911, + [SMALL_STATE(1527)] = 21003, + [SMALL_STATE(1528)] = 21083, + [SMALL_STATE(1529)] = 21163, + [SMALL_STATE(1530)] = 21243, + [SMALL_STATE(1531)] = 21323, + [SMALL_STATE(1532)] = 21403, + [SMALL_STATE(1533)] = 21483, + [SMALL_STATE(1534)] = 21563, + [SMALL_STATE(1535)] = 21643, + [SMALL_STATE(1536)] = 21723, + [SMALL_STATE(1537)] = 21809, + [SMALL_STATE(1538)] = 21889, + [SMALL_STATE(1539)] = 21969, + [SMALL_STATE(1540)] = 22049, + [SMALL_STATE(1541)] = 22129, + [SMALL_STATE(1542)] = 22215, + [SMALL_STATE(1543)] = 22295, + [SMALL_STATE(1544)] = 22375, + [SMALL_STATE(1545)] = 22455, + [SMALL_STATE(1546)] = 22535, + [SMALL_STATE(1547)] = 22615, + [SMALL_STATE(1548)] = 22695, + [SMALL_STATE(1549)] = 22775, + [SMALL_STATE(1550)] = 22855, + [SMALL_STATE(1551)] = 22935, + [SMALL_STATE(1552)] = 23015, + [SMALL_STATE(1553)] = 23095, + [SMALL_STATE(1554)] = 23175, + [SMALL_STATE(1555)] = 23255, + [SMALL_STATE(1556)] = 23335, + [SMALL_STATE(1557)] = 23415, + [SMALL_STATE(1558)] = 23495, + [SMALL_STATE(1559)] = 23575, + [SMALL_STATE(1560)] = 23655, + [SMALL_STATE(1561)] = 23735, + [SMALL_STATE(1562)] = 23815, + [SMALL_STATE(1563)] = 23891, + [SMALL_STATE(1564)] = 23965, + [SMALL_STATE(1565)] = 24033, + [SMALL_STATE(1566)] = 24097, + [SMALL_STATE(1567)] = 24183, + [SMALL_STATE(1568)] = 24271, + [SMALL_STATE(1569)] = 24361, + [SMALL_STATE(1570)] = 24439, + [SMALL_STATE(1571)] = 24511, + [SMALL_STATE(1572)] = 24591, + [SMALL_STATE(1573)] = 24673, + [SMALL_STATE(1574)] = 24757, + [SMALL_STATE(1575)] = 24843, + [SMALL_STATE(1576)] = 24919, + [SMALL_STATE(1577)] = 24993, + [SMALL_STATE(1578)] = 25067, + [SMALL_STATE(1579)] = 25139, + [SMALL_STATE(1580)] = 25207, + [SMALL_STATE(1581)] = 25273, + [SMALL_STATE(1582)] = 25337, + [SMALL_STATE(1583)] = 25399, + [SMALL_STATE(1584)] = 25485, + [SMALL_STATE(1585)] = 25569, + [SMALL_STATE(1586)] = 25657, + [SMALL_STATE(1587)] = 25743, + [SMALL_STATE(1588)] = 25833, + [SMALL_STATE(1589)] = 25921, + [SMALL_STATE(1590)] = 25999, + [SMALL_STATE(1591)] = 26075, + [SMALL_STATE(1592)] = 26145, + [SMALL_STATE(1593)] = 26225, + [SMALL_STATE(1594)] = 26303, + [SMALL_STATE(1595)] = 26385, + [SMALL_STATE(1596)] = 26465, + [SMALL_STATE(1597)] = 26549, + [SMALL_STATE(1598)] = 26631, + [SMALL_STATE(1599)] = 26707, + [SMALL_STATE(1600)] = 26781, + [SMALL_STATE(1601)] = 26849, + [SMALL_STATE(1602)] = 26913, + [SMALL_STATE(1603)] = 26999, + [SMALL_STATE(1604)] = 27087, + [SMALL_STATE(1605)] = 27177, + [SMALL_STATE(1606)] = 27255, + [SMALL_STATE(1607)] = 27327, + [SMALL_STATE(1608)] = 27407, + [SMALL_STATE(1609)] = 27489, + [SMALL_STATE(1610)] = 27573, + [SMALL_STATE(1611)] = 27647, + [SMALL_STATE(1612)] = 27719, + [SMALL_STATE(1613)] = 27785, + [SMALL_STATE(1614)] = 27847, + [SMALL_STATE(1615)] = 27931, + [SMALL_STATE(1616)] = 28017, + [SMALL_STATE(1617)] = 28105, + [SMALL_STATE(1618)] = 28181, + [SMALL_STATE(1619)] = 28251, + [SMALL_STATE(1620)] = 28329, + [SMALL_STATE(1621)] = 28409, + [SMALL_STATE(1622)] = 28491, + [SMALL_STATE(1623)] = 28567, + [SMALL_STATE(1624)] = 28641, + [SMALL_STATE(1625)] = 28715, + [SMALL_STATE(1626)] = 28787, + [SMALL_STATE(1627)] = 28855, + [SMALL_STATE(1628)] = 28921, + [SMALL_STATE(1629)] = 28985, + [SMALL_STATE(1630)] = 29047, + [SMALL_STATE(1631)] = 29133, + [SMALL_STATE(1632)] = 29217, + [SMALL_STATE(1633)] = 29305, + [SMALL_STATE(1634)] = 29391, + [SMALL_STATE(1635)] = 29481, + [SMALL_STATE(1636)] = 29569, + [SMALL_STATE(1637)] = 29647, + [SMALL_STATE(1638)] = 29723, + [SMALL_STATE(1639)] = 29795, + [SMALL_STATE(1640)] = 29865, + [SMALL_STATE(1641)] = 29945, + [SMALL_STATE(1642)] = 30023, + [SMALL_STATE(1643)] = 30105, + [SMALL_STATE(1644)] = 30185, + [SMALL_STATE(1645)] = 30269, + [SMALL_STATE(1646)] = 30351, + [SMALL_STATE(1647)] = 30425, + [SMALL_STATE(1648)] = 30497, + [SMALL_STATE(1649)] = 30563, + [SMALL_STATE(1650)] = 30625, + [SMALL_STATE(1651)] = 30709, + [SMALL_STATE(1652)] = 30795, + [SMALL_STATE(1653)] = 30883, + [SMALL_STATE(1654)] = 30959, + [SMALL_STATE(1655)] = 31029, + [SMALL_STATE(1656)] = 31107, + [SMALL_STATE(1657)] = 31187, + [SMALL_STATE(1658)] = 31269, + [SMALL_STATE(1659)] = 31341, + [SMALL_STATE(1660)] = 31411, + [SMALL_STATE(1661)] = 31475, + [SMALL_STATE(1662)] = 31535, + [SMALL_STATE(1663)] = 31617, + [SMALL_STATE(1664)] = 31701, + [SMALL_STATE(1665)] = 31787, + [SMALL_STATE(1666)] = 31861, + [SMALL_STATE(1667)] = 31929, + [SMALL_STATE(1668)] = 32005, + [SMALL_STATE(1669)] = 32083, + [SMALL_STATE(1670)] = 32163, + [SMALL_STATE(1671)] = 32223, + [SMALL_STATE(1672)] = 32283, + [SMALL_STATE(1673)] = 32343, + [SMALL_STATE(1674)] = 32423, + [SMALL_STATE(1675)] = 32503, + [SMALL_STATE(1676)] = 32583, + [SMALL_STATE(1677)] = 32663, + [SMALL_STATE(1678)] = 32750, + [SMALL_STATE(1679)] = 32821, + [SMALL_STATE(1680)] = 32890, + [SMALL_STATE(1681)] = 32953, + [SMALL_STATE(1682)] = 33012, + [SMALL_STATE(1683)] = 33093, + [SMALL_STATE(1684)] = 33176, + [SMALL_STATE(1685)] = 33261, + [SMALL_STATE(1686)] = 33334, + [SMALL_STATE(1687)] = 33401, + [SMALL_STATE(1688)] = 33476, + [SMALL_STATE(1689)] = 33553, + [SMALL_STATE(1690)] = 33632, + [SMALL_STATE(1691)] = 33703, + [SMALL_STATE(1692)] = 33774, + [SMALL_STATE(1693)] = 33851, + [SMALL_STATE(1694)] = 33938, + [SMALL_STATE(1695)] = 34011, + [SMALL_STATE(1696)] = 34070, + [SMALL_STATE(1697)] = 34156, + [SMALL_STATE(1698)] = 34216, + [SMALL_STATE(1699)] = 34286, + [SMALL_STATE(1700)] = 34372, + [SMALL_STATE(1701)] = 34458, + [SMALL_STATE(1702)] = 34544, + [SMALL_STATE(1703)] = 34630, + [SMALL_STATE(1704)] = 34716, + [SMALL_STATE(1705)] = 34776, + [SMALL_STATE(1706)] = 34846, + [SMALL_STATE(1707)] = 34916, + [SMALL_STATE(1708)] = 35002, + [SMALL_STATE(1709)] = 35088, + [SMALL_STATE(1710)] = 35158, + [SMALL_STATE(1711)] = 35244, + [SMALL_STATE(1712)] = 35330, + [SMALL_STATE(1713)] = 35416, + [SMALL_STATE(1714)] = 35477, + [SMALL_STATE(1715)] = 35548, + [SMALL_STATE(1716)] = 35615, + [SMALL_STATE(1717)] = 35678, + [SMALL_STATE(1718)] = 35747, + [SMALL_STATE(1719)] = 35810, + [SMALL_STATE(1720)] = 35891, + [SMALL_STATE(1721)] = 35948, + [SMALL_STATE(1722)] = 36007, + [SMALL_STATE(1723)] = 36088, + [SMALL_STATE(1724)] = 36147, + [SMALL_STATE(1725)] = 36204, + [SMALL_STATE(1726)] = 36271, + [SMALL_STATE(1727)] = 36338, + [SMALL_STATE(1728)] = 36405, + [SMALL_STATE(1729)] = 36472, + [SMALL_STATE(1730)] = 36543, + [SMALL_STATE(1731)] = 36614, + [SMALL_STATE(1732)] = 36695, + [SMALL_STATE(1733)] = 36766, + [SMALL_STATE(1734)] = 36833, + [SMALL_STATE(1735)] = 36896, + [SMALL_STATE(1736)] = 36967, + [SMALL_STATE(1737)] = 37025, + [SMALL_STATE(1738)] = 37079, + [SMALL_STATE(1739)] = 37133, + [SMALL_STATE(1740)] = 37187, + [SMALL_STATE(1741)] = 37241, + [SMALL_STATE(1742)] = 37295, + [SMALL_STATE(1743)] = 37363, + [SMALL_STATE(1744)] = 37441, + [SMALL_STATE(1745)] = 37519, + [SMALL_STATE(1746)] = 37599, + [SMALL_STATE(1747)] = 37677, + [SMALL_STATE(1748)] = 37755, + [SMALL_STATE(1749)] = 37815, + [SMALL_STATE(1750)] = 37869, + [SMALL_STATE(1751)] = 37937, + [SMALL_STATE(1752)] = 38017, + [SMALL_STATE(1753)] = 38073, + [SMALL_STATE(1754)] = 38135, + [SMALL_STATE(1755)] = 38203, + [SMALL_STATE(1756)] = 38259, + [SMALL_STATE(1757)] = 38337, + [SMALL_STATE(1758)] = 38395, + [SMALL_STATE(1759)] = 38463, + [SMALL_STATE(1760)] = 38541, + [SMALL_STATE(1761)] = 38609, + [SMALL_STATE(1762)] = 38687, + [SMALL_STATE(1763)] = 38755, + [SMALL_STATE(1764)] = 38815, + [SMALL_STATE(1765)] = 38873, + [SMALL_STATE(1766)] = 38951, + [SMALL_STATE(1767)] = 39013, + [SMALL_STATE(1768)] = 39091, + [SMALL_STATE(1769)] = 39145, + [SMALL_STATE(1770)] = 39223, + [SMALL_STATE(1771)] = 39277, + [SMALL_STATE(1772)] = 39335, + [SMALL_STATE(1773)] = 39393, + [SMALL_STATE(1774)] = 39471, + [SMALL_STATE(1775)] = 39539, + [SMALL_STATE(1776)] = 39593, + [SMALL_STATE(1777)] = 39655, + [SMALL_STATE(1778)] = 39712, + [SMALL_STATE(1779)] = 39789, + [SMALL_STATE(1780)] = 39854, + [SMALL_STATE(1781)] = 39919, + [SMALL_STATE(1782)] = 39970, + [SMALL_STATE(1783)] = 40021, + [SMALL_STATE(1784)] = 40074, + [SMALL_STATE(1785)] = 40127, + [SMALL_STATE(1786)] = 40180, + [SMALL_STATE(1787)] = 40235, + [SMALL_STATE(1788)] = 40288, + [SMALL_STATE(1789)] = 40341, + [SMALL_STATE(1790)] = 40394, + [SMALL_STATE(1791)] = 40445, + [SMALL_STATE(1792)] = 40510, + [SMALL_STATE(1793)] = 40561, + [SMALL_STATE(1794)] = 40626, + [SMALL_STATE(1795)] = 40681, + [SMALL_STATE(1796)] = 40744, + [SMALL_STATE(1797)] = 40799, + [SMALL_STATE(1798)] = 40876, + [SMALL_STATE(1799)] = 40931, + [SMALL_STATE(1800)] = 40990, + [SMALL_STATE(1801)] = 41055, + [SMALL_STATE(1802)] = 41120, + [SMALL_STATE(1803)] = 41197, + [SMALL_STATE(1804)] = 41248, + [SMALL_STATE(1805)] = 41325, + [SMALL_STATE(1806)] = 41376, + [SMALL_STATE(1807)] = 41429, + [SMALL_STATE(1808)] = 41482, + [SMALL_STATE(1809)] = 41535, + [SMALL_STATE(1810)] = 41592, + [SMALL_STATE(1811)] = 41647, + [SMALL_STATE(1812)] = 41702, + [SMALL_STATE(1813)] = 41759, + [SMALL_STATE(1814)] = 41824, + [SMALL_STATE(1815)] = 41901, + [SMALL_STATE(1816)] = 41966, + [SMALL_STATE(1817)] = 42031, + [SMALL_STATE(1818)] = 42096, + [SMALL_STATE(1819)] = 42173, + [SMALL_STATE(1820)] = 42250, + [SMALL_STATE(1821)] = 42327, + [SMALL_STATE(1822)] = 42404, + [SMALL_STATE(1823)] = 42481, + [SMALL_STATE(1824)] = 42558, + [SMALL_STATE(1825)] = 42635, + [SMALL_STATE(1826)] = 42697, + [SMALL_STATE(1827)] = 42749, + [SMALL_STATE(1828)] = 42811, + [SMALL_STATE(1829)] = 42873, + [SMALL_STATE(1830)] = 42925, + [SMALL_STATE(1831)] = 42985, + [SMALL_STATE(1832)] = 43045, + [SMALL_STATE(1833)] = 43099, + [SMALL_STATE(1834)] = 43151, + [SMALL_STATE(1835)] = 43203, + [SMALL_STATE(1836)] = 43255, + [SMALL_STATE(1837)] = 43309, + [SMALL_STATE(1838)] = 43361, + [SMALL_STATE(1839)] = 43413, + [SMALL_STATE(1840)] = 43465, + [SMALL_STATE(1841)] = 43517, + [SMALL_STATE(1842)] = 43571, + [SMALL_STATE(1843)] = 43631, + [SMALL_STATE(1844)] = 43691, + [SMALL_STATE(1845)] = 43745, + [SMALL_STATE(1846)] = 43804, + [SMALL_STATE(1847)] = 43855, + [SMALL_STATE(1848)] = 43906, + [SMALL_STATE(1849)] = 43957, + [SMALL_STATE(1850)] = 44056, + [SMALL_STATE(1851)] = 44107, + [SMALL_STATE(1852)] = 44162, + [SMALL_STATE(1853)] = 44217, + [SMALL_STATE(1854)] = 44272, + [SMALL_STATE(1855)] = 44323, + [SMALL_STATE(1856)] = 44374, + [SMALL_STATE(1857)] = 44425, + [SMALL_STATE(1858)] = 44476, + [SMALL_STATE(1859)] = 44527, + [SMALL_STATE(1860)] = 44586, + [SMALL_STATE(1861)] = 44641, + [SMALL_STATE(1862)] = 44692, + [SMALL_STATE(1863)] = 44743, + [SMALL_STATE(1864)] = 44794, + [SMALL_STATE(1865)] = 44845, + [SMALL_STATE(1866)] = 44896, + [SMALL_STATE(1867)] = 44947, + [SMALL_STATE(1868)] = 44998, + [SMALL_STATE(1869)] = 45049, + [SMALL_STATE(1870)] = 45108, + [SMALL_STATE(1871)] = 45159, + [SMALL_STATE(1872)] = 45210, + [SMALL_STATE(1873)] = 45269, + [SMALL_STATE(1874)] = 45320, + [SMALL_STATE(1875)] = 45371, + [SMALL_STATE(1876)] = 45430, + [SMALL_STATE(1877)] = 45481, + [SMALL_STATE(1878)] = 45540, + [SMALL_STATE(1879)] = 45591, + [SMALL_STATE(1880)] = 45642, + [SMALL_STATE(1881)] = 45692, + [SMALL_STATE(1882)] = 45750, + [SMALL_STATE(1883)] = 45846, + [SMALL_STATE(1884)] = 45896, + [SMALL_STATE(1885)] = 45946, + [SMALL_STATE(1886)] = 45996, + [SMALL_STATE(1887)] = 46054, + [SMALL_STATE(1888)] = 46104, + [SMALL_STATE(1889)] = 46154, + [SMALL_STATE(1890)] = 46204, + [SMALL_STATE(1891)] = 46254, + [SMALL_STATE(1892)] = 46304, + [SMALL_STATE(1893)] = 46354, + [SMALL_STATE(1894)] = 46404, + [SMALL_STATE(1895)] = 46500, + [SMALL_STATE(1896)] = 46556, + [SMALL_STATE(1897)] = 46608, + [SMALL_STATE(1898)] = 46662, + [SMALL_STATE(1899)] = 46712, + [SMALL_STATE(1900)] = 46766, + [SMALL_STATE(1901)] = 46816, + [SMALL_STATE(1902)] = 46874, + [SMALL_STATE(1903)] = 46932, + [SMALL_STATE(1904)] = 46990, + [SMALL_STATE(1905)] = 47044, + [SMALL_STATE(1906)] = 47094, + [SMALL_STATE(1907)] = 47146, + [SMALL_STATE(1908)] = 47198, + [SMALL_STATE(1909)] = 47248, + [SMALL_STATE(1910)] = 47300, + [SMALL_STATE(1911)] = 47358, + [SMALL_STATE(1912)] = 47412, + [SMALL_STATE(1913)] = 47462, + [SMALL_STATE(1914)] = 47512, + [SMALL_STATE(1915)] = 47570, + [SMALL_STATE(1916)] = 47620, + [SMALL_STATE(1917)] = 47673, + [SMALL_STATE(1918)] = 47728, + [SMALL_STATE(1919)] = 47777, + [SMALL_STATE(1920)] = 47826, + [SMALL_STATE(1921)] = 47875, + [SMALL_STATE(1922)] = 47924, + [SMALL_STATE(1923)] = 47973, + [SMALL_STATE(1924)] = 48022, + [SMALL_STATE(1925)] = 48075, + [SMALL_STATE(1926)] = 48128, + [SMALL_STATE(1927)] = 48177, + [SMALL_STATE(1928)] = 48230, + [SMALL_STATE(1929)] = 48281, + [SMALL_STATE(1930)] = 48334, + [SMALL_STATE(1931)] = 48387, + [SMALL_STATE(1932)] = 48438, + [SMALL_STATE(1933)] = 48491, + [SMALL_STATE(1934)] = 48542, + [SMALL_STATE(1935)] = 48595, + [SMALL_STATE(1936)] = 48648, + [SMALL_STATE(1937)] = 48701, + [SMALL_STATE(1938)] = 48754, + [SMALL_STATE(1939)] = 48849, + [SMALL_STATE(1940)] = 48898, + [SMALL_STATE(1941)] = 48951, + [SMALL_STATE(1942)] = 49002, + [SMALL_STATE(1943)] = 49055, + [SMALL_STATE(1944)] = 49104, + [SMALL_STATE(1945)] = 49153, + [SMALL_STATE(1946)] = 49202, + [SMALL_STATE(1947)] = 49257, + [SMALL_STATE(1948)] = 49310, + [SMALL_STATE(1949)] = 49363, + [SMALL_STATE(1950)] = 49416, + [SMALL_STATE(1951)] = 49469, + [SMALL_STATE(1952)] = 49518, + [SMALL_STATE(1953)] = 49567, + [SMALL_STATE(1954)] = 49616, + [SMALL_STATE(1955)] = 49669, + [SMALL_STATE(1956)] = 49726, + [SMALL_STATE(1957)] = 49781, + [SMALL_STATE(1958)] = 49834, + [SMALL_STATE(1959)] = 49887, + [SMALL_STATE(1960)] = 49940, + [SMALL_STATE(1961)] = 49993, + [SMALL_STATE(1962)] = 50046, + [SMALL_STATE(1963)] = 50099, + [SMALL_STATE(1964)] = 50152, + [SMALL_STATE(1965)] = 50205, + [SMALL_STATE(1966)] = 50300, + [SMALL_STATE(1967)] = 50356, + [SMALL_STATE(1968)] = 50410, + [SMALL_STATE(1969)] = 50464, + [SMALL_STATE(1970)] = 50516, + [SMALL_STATE(1971)] = 50564, + [SMALL_STATE(1972)] = 50618, + [SMALL_STATE(1973)] = 50666, + [SMALL_STATE(1974)] = 50714, + [SMALL_STATE(1975)] = 50768, + [SMALL_STATE(1976)] = 50814, + [SMALL_STATE(1977)] = 50862, + [SMALL_STATE(1978)] = 50910, + [SMALL_STATE(1979)] = 50962, + [SMALL_STATE(1980)] = 51016, + [SMALL_STATE(1981)] = 51072, + [SMALL_STATE(1982)] = 51124, + [SMALL_STATE(1983)] = 51190, + [SMALL_STATE(1984)] = 51254, + [SMALL_STATE(1985)] = 51312, + [SMALL_STATE(1986)] = 51366, + [SMALL_STATE(1987)] = 51442, + [SMALL_STATE(1988)] = 51520, + [SMALL_STATE(1989)] = 51600, + [SMALL_STATE(1990)] = 51668, + [SMALL_STATE(1991)] = 51730, + [SMALL_STATE(1992)] = 51800, + [SMALL_STATE(1993)] = 51872, + [SMALL_STATE(1994)] = 51924, + [SMALL_STATE(1995)] = 51998, + [SMALL_STATE(1996)] = 52046, + [SMALL_STATE(1997)] = 52100, + [SMALL_STATE(1998)] = 52166, + [SMALL_STATE(1999)] = 52230, + [SMALL_STATE(2000)] = 52294, + [SMALL_STATE(2001)] = 52356, + [SMALL_STATE(2002)] = 52414, + [SMALL_STATE(2003)] = 52470, + [SMALL_STATE(2004)] = 52524, + [SMALL_STATE(2005)] = 52576, + [SMALL_STATE(2006)] = 52652, + [SMALL_STATE(2007)] = 52726, + [SMALL_STATE(2008)] = 52804, + [SMALL_STATE(2009)] = 52880, + [SMALL_STATE(2010)] = 52960, + [SMALL_STATE(2011)] = 53038, + [SMALL_STATE(2012)] = 53106, + [SMALL_STATE(2013)] = 53172, + [SMALL_STATE(2014)] = 53234, + [SMALL_STATE(2015)] = 53294, + [SMALL_STATE(2016)] = 53364, + [SMALL_STATE(2017)] = 53432, + [SMALL_STATE(2018)] = 53504, + [SMALL_STATE(2019)] = 53574, + [SMALL_STATE(2020)] = 53648, + [SMALL_STATE(2021)] = 53720, + [SMALL_STATE(2022)] = 53786, + [SMALL_STATE(2023)] = 53850, + [SMALL_STATE(2024)] = 53908, + [SMALL_STATE(2025)] = 53962, + [SMALL_STATE(2026)] = 54038, + [SMALL_STATE(2027)] = 54116, + [SMALL_STATE(2028)] = 54196, + [SMALL_STATE(2029)] = 54264, + [SMALL_STATE(2030)] = 54326, + [SMALL_STATE(2031)] = 54396, + [SMALL_STATE(2032)] = 54468, + [SMALL_STATE(2033)] = 54542, + [SMALL_STATE(2034)] = 54596, + [SMALL_STATE(2035)] = 54660, + [SMALL_STATE(2036)] = 54722, + [SMALL_STATE(2037)] = 54774, + [SMALL_STATE(2038)] = 54848, + [SMALL_STATE(2039)] = 54924, + [SMALL_STATE(2040)] = 55002, + [SMALL_STATE(2041)] = 55068, + [SMALL_STATE(2042)] = 55128, + [SMALL_STATE(2043)] = 55196, + [SMALL_STATE(2044)] = 55266, + [SMALL_STATE(2045)] = 55338, + [SMALL_STATE(2046)] = 55404, + [SMALL_STATE(2047)] = 55468, + [SMALL_STATE(2048)] = 55532, + [SMALL_STATE(2049)] = 55594, + [SMALL_STATE(2050)] = 55652, + [SMALL_STATE(2051)] = 55708, + [SMALL_STATE(2052)] = 55762, + [SMALL_STATE(2053)] = 55814, + [SMALL_STATE(2054)] = 55890, + [SMALL_STATE(2055)] = 55964, + [SMALL_STATE(2056)] = 56042, + [SMALL_STATE(2057)] = 56118, + [SMALL_STATE(2058)] = 56198, + [SMALL_STATE(2059)] = 56276, + [SMALL_STATE(2060)] = 56344, + [SMALL_STATE(2061)] = 56410, + [SMALL_STATE(2062)] = 56472, + [SMALL_STATE(2063)] = 56532, + [SMALL_STATE(2064)] = 56602, + [SMALL_STATE(2065)] = 56670, + [SMALL_STATE(2066)] = 56742, + [SMALL_STATE(2067)] = 56812, + [SMALL_STATE(2068)] = 56886, + [SMALL_STATE(2069)] = 56958, + [SMALL_STATE(2070)] = 57022, + [SMALL_STATE(2071)] = 57084, + [SMALL_STATE(2072)] = 57140, + [SMALL_STATE(2073)] = 57192, + [SMALL_STATE(2074)] = 57266, + [SMALL_STATE(2075)] = 57342, + [SMALL_STATE(2076)] = 57420, + [SMALL_STATE(2077)] = 57486, + [SMALL_STATE(2078)] = 57546, + [SMALL_STATE(2079)] = 57614, + [SMALL_STATE(2080)] = 57684, + [SMALL_STATE(2081)] = 57756, + [SMALL_STATE(2082)] = 57808, + [SMALL_STATE(2083)] = 57860, + [SMALL_STATE(2084)] = 57914, + [SMALL_STATE(2085)] = 57968, + [SMALL_STATE(2086)] = 58018, + [SMALL_STATE(2087)] = 58068, + [SMALL_STATE(2088)] = 58120, + [SMALL_STATE(2089)] = 58172, + [SMALL_STATE(2090)] = 58220, + [SMALL_STATE(2091)] = 58268, + [SMALL_STATE(2092)] = 58318, + [SMALL_STATE(2093)] = 58372, + [SMALL_STATE(2094)] = 58420, + [SMALL_STATE(2095)] = 58470, + [SMALL_STATE(2096)] = 58518, + [SMALL_STATE(2097)] = 58568, + [SMALL_STATE(2098)] = 58620, + [SMALL_STATE(2099)] = 58670, + [SMALL_STATE(2100)] = 58722, + [SMALL_STATE(2101)] = 58774, + [SMALL_STATE(2102)] = 58828, + [SMALL_STATE(2103)] = 58878, + [SMALL_STATE(2104)] = 58926, + [SMALL_STATE(2105)] = 58980, + [SMALL_STATE(2106)] = 59034, + [SMALL_STATE(2107)] = 59088, + [SMALL_STATE(2108)] = 59142, + [SMALL_STATE(2109)] = 59196, + [SMALL_STATE(2110)] = 59252, + [SMALL_STATE(2111)] = 59304, + [SMALL_STATE(2112)] = 59351, + [SMALL_STATE(2113)] = 59400, + [SMALL_STATE(2114)] = 59447, + [SMALL_STATE(2115)] = 59496, + [SMALL_STATE(2116)] = 59543, + [SMALL_STATE(2117)] = 59590, + [SMALL_STATE(2118)] = 59639, + [SMALL_STATE(2119)] = 59690, + [SMALL_STATE(2120)] = 59739, + [SMALL_STATE(2121)] = 59818, + [SMALL_STATE(2122)] = 59897, + [SMALL_STATE(2123)] = 59944, + [SMALL_STATE(2124)] = 59993, + [SMALL_STATE(2125)] = 60044, + [SMALL_STATE(2126)] = 60091, + [SMALL_STATE(2127)] = 60170, + [SMALL_STATE(2128)] = 60249, + [SMALL_STATE(2129)] = 60298, + [SMALL_STATE(2130)] = 60343, + [SMALL_STATE(2131)] = 60422, + [SMALL_STATE(2132)] = 60501, + [SMALL_STATE(2133)] = 60550, + [SMALL_STATE(2134)] = 60599, + [SMALL_STATE(2135)] = 60648, + [SMALL_STATE(2136)] = 60694, + [SMALL_STATE(2137)] = 60740, + [SMALL_STATE(2138)] = 60788, + [SMALL_STATE(2139)] = 60834, + [SMALL_STATE(2140)] = 60890, + [SMALL_STATE(2141)] = 60936, + [SMALL_STATE(2142)] = 60982, + [SMALL_STATE(2143)] = 61046, + [SMALL_STATE(2144)] = 61112, + [SMALL_STATE(2145)] = 61180, + [SMALL_STATE(2146)] = 61240, + [SMALL_STATE(2147)] = 61298, + [SMALL_STATE(2148)] = 61350, + [SMALL_STATE(2149)] = 61398, + [SMALL_STATE(2150)] = 61468, + [SMALL_STATE(2151)] = 61540, + [SMALL_STATE(2152)] = 61614, + [SMALL_STATE(2153)] = 61676, + [SMALL_STATE(2154)] = 61732, + [SMALL_STATE(2155)] = 61796, + [SMALL_STATE(2156)] = 61862, + [SMALL_STATE(2157)] = 61930, + [SMALL_STATE(2158)] = 61976, + [SMALL_STATE(2159)] = 62022, + [SMALL_STATE(2160)] = 62070, + [SMALL_STATE(2161)] = 62116, + [SMALL_STATE(2162)] = 62162, + [SMALL_STATE(2163)] = 62208, + [SMALL_STATE(2164)] = 62254, + [SMALL_STATE(2165)] = 62300, + [SMALL_STATE(2166)] = 62346, + [SMALL_STATE(2167)] = 62392, + [SMALL_STATE(2168)] = 62438, + [SMALL_STATE(2169)] = 62484, + [SMALL_STATE(2170)] = 62530, + [SMALL_STATE(2171)] = 62576, + [SMALL_STATE(2172)] = 62622, + [SMALL_STATE(2173)] = 62668, + [SMALL_STATE(2174)] = 62714, + [SMALL_STATE(2175)] = 62760, + [SMALL_STATE(2176)] = 62830, + [SMALL_STATE(2177)] = 62876, + [SMALL_STATE(2178)] = 62922, + [SMALL_STATE(2179)] = 62968, + [SMALL_STATE(2180)] = 63014, + [SMALL_STATE(2181)] = 63060, + [SMALL_STATE(2182)] = 63106, + [SMALL_STATE(2183)] = 63166, + [SMALL_STATE(2184)] = 63214, + [SMALL_STATE(2185)] = 63272, + [SMALL_STATE(2186)] = 63320, + [SMALL_STATE(2187)] = 63372, + [SMALL_STATE(2188)] = 63418, + [SMALL_STATE(2189)] = 63464, + [SMALL_STATE(2190)] = 63512, + [SMALL_STATE(2191)] = 63558, + [SMALL_STATE(2192)] = 63606, + [SMALL_STATE(2193)] = 63652, + [SMALL_STATE(2194)] = 63726, + [SMALL_STATE(2195)] = 63774, + [SMALL_STATE(2196)] = 63836, + [SMALL_STATE(2197)] = 63884, + [SMALL_STATE(2198)] = 63932, + [SMALL_STATE(2199)] = 63978, + [SMALL_STATE(2200)] = 64024, + [SMALL_STATE(2201)] = 64072, + [SMALL_STATE(2202)] = 64118, + [SMALL_STATE(2203)] = 64164, + [SMALL_STATE(2204)] = 64210, + [SMALL_STATE(2205)] = 64256, + [SMALL_STATE(2206)] = 64328, + [SMALL_STATE(2207)] = 64374, + [SMALL_STATE(2208)] = 64420, + [SMALL_STATE(2209)] = 64466, + [SMALL_STATE(2210)] = 64512, + [SMALL_STATE(2211)] = 64558, + [SMALL_STATE(2212)] = 64647, + [SMALL_STATE(2213)] = 64734, + [SMALL_STATE(2214)] = 64785, + [SMALL_STATE(2215)] = 64858, + [SMALL_STATE(2216)] = 64931, + [SMALL_STATE(2217)] = 65020, + [SMALL_STATE(2218)] = 65109, + [SMALL_STATE(2219)] = 65198, + [SMALL_STATE(2220)] = 65271, + [SMALL_STATE(2221)] = 65360, + [SMALL_STATE(2222)] = 65449, + [SMALL_STATE(2223)] = 65522, + [SMALL_STATE(2224)] = 65567, + [SMALL_STATE(2225)] = 65656, + [SMALL_STATE(2226)] = 65729, + [SMALL_STATE(2227)] = 65802, + [SMALL_STATE(2228)] = 65891, + [SMALL_STATE(2229)] = 65941, + [SMALL_STATE(2230)] = 65991, + [SMALL_STATE(2231)] = 66037, + [SMALL_STATE(2232)] = 66083, + [SMALL_STATE(2233)] = 66133, + [SMALL_STATE(2234)] = 66183, + [SMALL_STATE(2235)] = 66226, + [SMALL_STATE(2236)] = 66277, + [SMALL_STATE(2237)] = 66322, + [SMALL_STATE(2238)] = 66371, + [SMALL_STATE(2239)] = 66420, + [SMALL_STATE(2240)] = 66465, + [SMALL_STATE(2241)] = 66514, + [SMALL_STATE(2242)] = 66557, + [SMALL_STATE(2243)] = 66600, + [SMALL_STATE(2244)] = 66643, + [SMALL_STATE(2245)] = 66692, + [SMALL_STATE(2246)] = 66739, + [SMALL_STATE(2247)] = 66788, + [SMALL_STATE(2248)] = 66831, + [SMALL_STATE(2249)] = 66874, + [SMALL_STATE(2250)] = 66923, + [SMALL_STATE(2251)] = 66966, + [SMALL_STATE(2252)] = 67009, + [SMALL_STATE(2253)] = 67051, + [SMALL_STATE(2254)] = 67095, + [SMALL_STATE(2255)] = 67141, + [SMALL_STATE(2256)] = 67183, + [SMALL_STATE(2257)] = 67228, + [SMALL_STATE(2258)] = 67269, + [SMALL_STATE(2259)] = 67314, + [SMALL_STATE(2260)] = 67358, + [SMALL_STATE(2261)] = 67402, + [SMALL_STATE(2262)] = 67446, + [SMALL_STATE(2263)] = 67528, + [SMALL_STATE(2264)] = 67610, + [SMALL_STATE(2265)] = 67654, + [SMALL_STATE(2266)] = 67694, + [SMALL_STATE(2267)] = 67739, + [SMALL_STATE(2268)] = 67815, + [SMALL_STATE(2269)] = 67891, + [SMALL_STATE(2270)] = 67937, + [SMALL_STATE(2271)] = 68013, + [SMALL_STATE(2272)] = 68089, + [SMALL_STATE(2273)] = 68165, + [SMALL_STATE(2274)] = 68241, + [SMALL_STATE(2275)] = 68317, + [SMALL_STATE(2276)] = 68393, + [SMALL_STATE(2277)] = 68469, + [SMALL_STATE(2278)] = 68545, + [SMALL_STATE(2279)] = 68621, + [SMALL_STATE(2280)] = 68697, + [SMALL_STATE(2281)] = 68773, + [SMALL_STATE(2282)] = 68849, + [SMALL_STATE(2283)] = 68925, + [SMALL_STATE(2284)] = 69001, + [SMALL_STATE(2285)] = 69077, + [SMALL_STATE(2286)] = 69153, + [SMALL_STATE(2287)] = 69229, + [SMALL_STATE(2288)] = 69305, + [SMALL_STATE(2289)] = 69381, + [SMALL_STATE(2290)] = 69457, + [SMALL_STATE(2291)] = 69533, + [SMALL_STATE(2292)] = 69609, + [SMALL_STATE(2293)] = 69685, + [SMALL_STATE(2294)] = 69761, + [SMALL_STATE(2295)] = 69805, + [SMALL_STATE(2296)] = 69847, + [SMALL_STATE(2297)] = 69893, + [SMALL_STATE(2298)] = 69939, + [SMALL_STATE(2299)] = 69991, + [SMALL_STATE(2300)] = 70042, + [SMALL_STATE(2301)] = 70087, + [SMALL_STATE(2302)] = 70130, + [SMALL_STATE(2303)] = 70179, + [SMALL_STATE(2304)] = 70224, + [SMALL_STATE(2305)] = 70269, + [SMALL_STATE(2306)] = 70318, + [SMALL_STATE(2307)] = 70363, + [SMALL_STATE(2308)] = 70402, + [SMALL_STATE(2309)] = 70447, + [SMALL_STATE(2310)] = 70496, + [SMALL_STATE(2311)] = 70566, + [SMALL_STATE(2312)] = 70606, + [SMALL_STATE(2313)] = 70676, + [SMALL_STATE(2314)] = 70746, + [SMALL_STATE(2315)] = 70816, + [SMALL_STATE(2316)] = 70886, + [SMALL_STATE(2317)] = 70956, + [SMALL_STATE(2318)] = 71026, + [SMALL_STATE(2319)] = 71096, + [SMALL_STATE(2320)] = 71132, + [SMALL_STATE(2321)] = 71168, + [SMALL_STATE(2322)] = 71204, + [SMALL_STATE(2323)] = 71244, [SMALL_STATE(2324)] = 71280, - [SMALL_STATE(2325)] = 71317, - [SMALL_STATE(2326)] = 71368, - [SMALL_STATE(2327)] = 71421, - [SMALL_STATE(2328)] = 71460, - [SMALL_STATE(2329)] = 71499, - [SMALL_STATE(2330)] = 71550, - [SMALL_STATE(2331)] = 71601, - [SMALL_STATE(2332)] = 71648, - [SMALL_STATE(2333)] = 71693, - [SMALL_STATE(2334)] = 71738, - [SMALL_STATE(2335)] = 71783, - [SMALL_STATE(2336)] = 71820, - [SMALL_STATE(2337)] = 71854, - [SMALL_STATE(2338)] = 71892, - [SMALL_STATE(2339)] = 71938, - [SMALL_STATE(2340)] = 71972, - [SMALL_STATE(2341)] = 72022, - [SMALL_STATE(2342)] = 72070, - [SMALL_STATE(2343)] = 72104, - [SMALL_STATE(2344)] = 72152, - [SMALL_STATE(2345)] = 72200, - [SMALL_STATE(2346)] = 72248, - [SMALL_STATE(2347)] = 72298, - [SMALL_STATE(2348)] = 72334, - [SMALL_STATE(2349)] = 72372, - [SMALL_STATE(2350)] = 72412, - [SMALL_STATE(2351)] = 72450, - [SMALL_STATE(2352)] = 72490, - [SMALL_STATE(2353)] = 72528, - [SMALL_STATE(2354)] = 72578, - [SMALL_STATE(2355)] = 72614, - [SMALL_STATE(2356)] = 72647, - [SMALL_STATE(2357)] = 72694, - [SMALL_STATE(2358)] = 72731, - [SMALL_STATE(2359)] = 72778, - [SMALL_STATE(2360)] = 72817, - [SMALL_STATE(2361)] = 72852, - [SMALL_STATE(2362)] = 72887, - [SMALL_STATE(2363)] = 72926, - [SMALL_STATE(2364)] = 72973, - [SMALL_STATE(2365)] = 73014, - [SMALL_STATE(2366)] = 73051, - [SMALL_STATE(2367)] = 73086, - [SMALL_STATE(2368)] = 73127, - [SMALL_STATE(2369)] = 73164, - [SMALL_STATE(2370)] = 73201, - [SMALL_STATE(2371)] = 73240, - [SMALL_STATE(2372)] = 73275, - [SMALL_STATE(2373)] = 73314, - [SMALL_STATE(2374)] = 73353, - [SMALL_STATE(2375)] = 73392, - [SMALL_STATE(2376)] = 73425, - [SMALL_STATE(2377)] = 73464, - [SMALL_STATE(2378)] = 73511, - [SMALL_STATE(2379)] = 73562, - [SMALL_STATE(2380)] = 73595, - [SMALL_STATE(2381)] = 73630, - [SMALL_STATE(2382)] = 73677, - [SMALL_STATE(2383)] = 73718, - [SMALL_STATE(2384)] = 73766, - [SMALL_STATE(2385)] = 73802, - [SMALL_STATE(2386)] = 73834, - [SMALL_STATE(2387)] = 73868, - [SMALL_STATE(2388)] = 73906, - [SMALL_STATE(2389)] = 73946, - [SMALL_STATE(2390)] = 73984, - [SMALL_STATE(2391)] = 74016, - [SMALL_STATE(2392)] = 74048, - [SMALL_STATE(2393)] = 74096, - [SMALL_STATE(2394)] = 74130, - [SMALL_STATE(2395)] = 74170, - [SMALL_STATE(2396)] = 74206, - [SMALL_STATE(2397)] = 74242, - [SMALL_STATE(2398)] = 74288, - [SMALL_STATE(2399)] = 74320, - [SMALL_STATE(2400)] = 74354, - [SMALL_STATE(2401)] = 74386, - [SMALL_STATE(2402)] = 74418, - [SMALL_STATE(2403)] = 74454, - [SMALL_STATE(2404)] = 74486, - [SMALL_STATE(2405)] = 74524, - [SMALL_STATE(2406)] = 74558, - [SMALL_STATE(2407)] = 74596, - [SMALL_STATE(2408)] = 74632, - [SMALL_STATE(2409)] = 74664, - [SMALL_STATE(2410)] = 74702, - [SMALL_STATE(2411)] = 74734, - [SMALL_STATE(2412)] = 74766, - [SMALL_STATE(2413)] = 74806, - [SMALL_STATE(2414)] = 74844, - [SMALL_STATE(2415)] = 74882, - [SMALL_STATE(2416)] = 74920, - [SMALL_STATE(2417)] = 74958, - [SMALL_STATE(2418)] = 74996, - [SMALL_STATE(2419)] = 75044, - [SMALL_STATE(2420)] = 75078, - [SMALL_STATE(2421)] = 75110, - [SMALL_STATE(2422)] = 75142, - [SMALL_STATE(2423)] = 75174, - [SMALL_STATE(2424)] = 75210, - [SMALL_STATE(2425)] = 75241, - [SMALL_STATE(2426)] = 75280, - [SMALL_STATE(2427)] = 75311, - [SMALL_STATE(2428)] = 75356, - [SMALL_STATE(2429)] = 75401, - [SMALL_STATE(2430)] = 75446, - [SMALL_STATE(2431)] = 75483, - [SMALL_STATE(2432)] = 75518, - [SMALL_STATE(2433)] = 75557, - [SMALL_STATE(2434)] = 75594, - [SMALL_STATE(2435)] = 75629, - [SMALL_STATE(2436)] = 75664, - [SMALL_STATE(2437)] = 75701, - [SMALL_STATE(2438)] = 75746, - [SMALL_STATE(2439)] = 75777, - [SMALL_STATE(2440)] = 75808, - [SMALL_STATE(2441)] = 75839, - [SMALL_STATE(2442)] = 75870, - [SMALL_STATE(2443)] = 75903, - [SMALL_STATE(2444)] = 75938, - [SMALL_STATE(2445)] = 75983, - [SMALL_STATE(2446)] = 76016, - [SMALL_STATE(2447)] = 76047, - [SMALL_STATE(2448)] = 76082, - [SMALL_STATE(2449)] = 76123, - [SMALL_STATE(2450)] = 76156, - [SMALL_STATE(2451)] = 76187, - [SMALL_STATE(2452)] = 76218, - [SMALL_STATE(2453)] = 76251, - [SMALL_STATE(2454)] = 76282, - [SMALL_STATE(2455)] = 76313, - [SMALL_STATE(2456)] = 76350, - [SMALL_STATE(2457)] = 76389, - [SMALL_STATE(2458)] = 76420, - [SMALL_STATE(2459)] = 76451, - [SMALL_STATE(2460)] = 76484, - [SMALL_STATE(2461)] = 76517, - [SMALL_STATE(2462)] = 76550, - [SMALL_STATE(2463)] = 76580, - [SMALL_STATE(2464)] = 76610, - [SMALL_STATE(2465)] = 76662, - [SMALL_STATE(2466)] = 76692, - [SMALL_STATE(2467)] = 76728, - [SMALL_STATE(2468)] = 76778, - [SMALL_STATE(2469)] = 76808, - [SMALL_STATE(2470)] = 76848, - [SMALL_STATE(2471)] = 76884, - [SMALL_STATE(2472)] = 76916, - [SMALL_STATE(2473)] = 76946, - [SMALL_STATE(2474)] = 76976, - [SMALL_STATE(2475)] = 77012, - [SMALL_STATE(2476)] = 77044, - [SMALL_STATE(2477)] = 77074, - [SMALL_STATE(2478)] = 77110, - [SMALL_STATE(2479)] = 77142, - [SMALL_STATE(2480)] = 77178, - [SMALL_STATE(2481)] = 77212, - [SMALL_STATE(2482)] = 77244, - [SMALL_STATE(2483)] = 77278, - [SMALL_STATE(2484)] = 77308, - [SMALL_STATE(2485)] = 77360, - [SMALL_STATE(2486)] = 77412, - [SMALL_STATE(2487)] = 77442, - [SMALL_STATE(2488)] = 77472, - [SMALL_STATE(2489)] = 77506, - [SMALL_STATE(2490)] = 77542, - [SMALL_STATE(2491)] = 77572, - [SMALL_STATE(2492)] = 77610, - [SMALL_STATE(2493)] = 77644, - [SMALL_STATE(2494)] = 77676, - [SMALL_STATE(2495)] = 77714, - [SMALL_STATE(2496)] = 77766, - [SMALL_STATE(2497)] = 77796, - [SMALL_STATE(2498)] = 77828, - [SMALL_STATE(2499)] = 77866, - [SMALL_STATE(2500)] = 77898, - [SMALL_STATE(2501)] = 77930, - [SMALL_STATE(2502)] = 77962, - [SMALL_STATE(2503)] = 77994, - [SMALL_STATE(2504)] = 78026, - [SMALL_STATE(2505)] = 78060, - [SMALL_STATE(2506)] = 78098, - [SMALL_STATE(2507)] = 78130, - [SMALL_STATE(2508)] = 78160, - [SMALL_STATE(2509)] = 78190, - [SMALL_STATE(2510)] = 78228, - [SMALL_STATE(2511)] = 78260, - [SMALL_STATE(2512)] = 78290, - [SMALL_STATE(2513)] = 78322, - [SMALL_STATE(2514)] = 78358, - [SMALL_STATE(2515)] = 78388, - [SMALL_STATE(2516)] = 78419, - [SMALL_STATE(2517)] = 78456, - [SMALL_STATE(2518)] = 78485, - [SMALL_STATE(2519)] = 78516, - [SMALL_STATE(2520)] = 78553, - [SMALL_STATE(2521)] = 78584, - [SMALL_STATE(2522)] = 78621, - [SMALL_STATE(2523)] = 78650, - [SMALL_STATE(2524)] = 78681, - [SMALL_STATE(2525)] = 78712, - [SMALL_STATE(2526)] = 78743, - [SMALL_STATE(2527)] = 78772, - [SMALL_STATE(2528)] = 78803, - [SMALL_STATE(2529)] = 78834, - [SMALL_STATE(2530)] = 78863, - [SMALL_STATE(2531)] = 78892, - [SMALL_STATE(2532)] = 78921, - [SMALL_STATE(2533)] = 78950, - [SMALL_STATE(2534)] = 78981, - [SMALL_STATE(2535)] = 79012, - [SMALL_STATE(2536)] = 79043, - [SMALL_STATE(2537)] = 79072, - [SMALL_STATE(2538)] = 79105, - [SMALL_STATE(2539)] = 79142, - [SMALL_STATE(2540)] = 79179, - [SMALL_STATE(2541)] = 79208, - [SMALL_STATE(2542)] = 79237, - [SMALL_STATE(2543)] = 79266, - [SMALL_STATE(2544)] = 79299, - [SMALL_STATE(2545)] = 79328, - [SMALL_STATE(2546)] = 79365, - [SMALL_STATE(2547)] = 79396, - [SMALL_STATE(2548)] = 79427, - [SMALL_STATE(2549)] = 79456, - [SMALL_STATE(2550)] = 79493, - [SMALL_STATE(2551)] = 79526, - [SMALL_STATE(2552)] = 79557, - [SMALL_STATE(2553)] = 79586, - [SMALL_STATE(2554)] = 79623, - [SMALL_STATE(2555)] = 79660, - [SMALL_STATE(2556)] = 79691, - [SMALL_STATE(2557)] = 79726, - [SMALL_STATE(2558)] = 79763, - [SMALL_STATE(2559)] = 79792, - [SMALL_STATE(2560)] = 79821, - [SMALL_STATE(2561)] = 79858, - [SMALL_STATE(2562)] = 79887, - [SMALL_STATE(2563)] = 79918, - [SMALL_STATE(2564)] = 79951, - [SMALL_STATE(2565)] = 79982, - [SMALL_STATE(2566)] = 80019, - [SMALL_STATE(2567)] = 80048, - [SMALL_STATE(2568)] = 80079, - [SMALL_STATE(2569)] = 80108, - [SMALL_STATE(2570)] = 80137, - [SMALL_STATE(2571)] = 80166, - [SMALL_STATE(2572)] = 80195, - [SMALL_STATE(2573)] = 80226, - [SMALL_STATE(2574)] = 80263, - [SMALL_STATE(2575)] = 80294, - [SMALL_STATE(2576)] = 80327, - [SMALL_STATE(2577)] = 80358, - [SMALL_STATE(2578)] = 80389, - [SMALL_STATE(2579)] = 80420, - [SMALL_STATE(2580)] = 80451, - [SMALL_STATE(2581)] = 80482, - [SMALL_STATE(2582)] = 80513, - [SMALL_STATE(2583)] = 80545, - [SMALL_STATE(2584)] = 80573, - [SMALL_STATE(2585)] = 80617, - [SMALL_STATE(2586)] = 80653, - [SMALL_STATE(2587)] = 80683, - [SMALL_STATE(2588)] = 80713, - [SMALL_STATE(2589)] = 80741, - [SMALL_STATE(2590)] = 80769, - [SMALL_STATE(2591)] = 80807, - [SMALL_STATE(2592)] = 80835, - [SMALL_STATE(2593)] = 80879, - [SMALL_STATE(2594)] = 80909, - [SMALL_STATE(2595)] = 80945, - [SMALL_STATE(2596)] = 80973, - [SMALL_STATE(2597)] = 81001, - [SMALL_STATE(2598)] = 81035, - [SMALL_STATE(2599)] = 81067, - [SMALL_STATE(2600)] = 81103, - [SMALL_STATE(2601)] = 81133, - [SMALL_STATE(2602)] = 81161, - [SMALL_STATE(2603)] = 81197, - [SMALL_STATE(2604)] = 81227, - [SMALL_STATE(2605)] = 81259, - [SMALL_STATE(2606)] = 81291, - [SMALL_STATE(2607)] = 81323, - [SMALL_STATE(2608)] = 81355, - [SMALL_STATE(2609)] = 81387, - [SMALL_STATE(2610)] = 81415, - [SMALL_STATE(2611)] = 81443, - [SMALL_STATE(2612)] = 81471, - [SMALL_STATE(2613)] = 81507, - [SMALL_STATE(2614)] = 81537, - [SMALL_STATE(2615)] = 81567, - [SMALL_STATE(2616)] = 81595, - [SMALL_STATE(2617)] = 81623, - [SMALL_STATE(2618)] = 81659, - [SMALL_STATE(2619)] = 81689, - [SMALL_STATE(2620)] = 81719, - [SMALL_STATE(2621)] = 81747, - [SMALL_STATE(2622)] = 81791, - [SMALL_STATE(2623)] = 81819, - [SMALL_STATE(2624)] = 81863, - [SMALL_STATE(2625)] = 81891, - [SMALL_STATE(2626)] = 81927, - [SMALL_STATE(2627)] = 81957, - [SMALL_STATE(2628)] = 81985, - [SMALL_STATE(2629)] = 82021, - [SMALL_STATE(2630)] = 82053, - [SMALL_STATE(2631)] = 82089, - [SMALL_STATE(2632)] = 82133, - [SMALL_STATE(2633)] = 82163, - [SMALL_STATE(2634)] = 82199, - [SMALL_STATE(2635)] = 82233, - [SMALL_STATE(2636)] = 82269, - [SMALL_STATE(2637)] = 82305, - [SMALL_STATE(2638)] = 82341, - [SMALL_STATE(2639)] = 82371, - [SMALL_STATE(2640)] = 82401, - [SMALL_STATE(2641)] = 82429, - [SMALL_STATE(2642)] = 82459, - [SMALL_STATE(2643)] = 82487, - [SMALL_STATE(2644)] = 82514, - [SMALL_STATE(2645)] = 82541, - [SMALL_STATE(2646)] = 82572, - [SMALL_STATE(2647)] = 82605, - [SMALL_STATE(2648)] = 82636, - [SMALL_STATE(2649)] = 82667, - [SMALL_STATE(2650)] = 82694, - [SMALL_STATE(2651)] = 82721, - [SMALL_STATE(2652)] = 82752, - [SMALL_STATE(2653)] = 82779, - [SMALL_STATE(2654)] = 82806, - [SMALL_STATE(2655)] = 82837, - [SMALL_STATE(2656)] = 82868, - [SMALL_STATE(2657)] = 82897, - [SMALL_STATE(2658)] = 82926, - [SMALL_STATE(2659)] = 82959, - [SMALL_STATE(2660)] = 82992, - [SMALL_STATE(2661)] = 83023, - [SMALL_STATE(2662)] = 83054, - [SMALL_STATE(2663)] = 83081, - [SMALL_STATE(2664)] = 83108, - [SMALL_STATE(2665)] = 83137, - [SMALL_STATE(2666)] = 83166, - [SMALL_STATE(2667)] = 83197, - [SMALL_STATE(2668)] = 83228, - [SMALL_STATE(2669)] = 83255, - [SMALL_STATE(2670)] = 83282, - [SMALL_STATE(2671)] = 83309, - [SMALL_STATE(2672)] = 83336, - [SMALL_STATE(2673)] = 83367, - [SMALL_STATE(2674)] = 83398, - [SMALL_STATE(2675)] = 83427, - [SMALL_STATE(2676)] = 83456, - [SMALL_STATE(2677)] = 83489, - [SMALL_STATE(2678)] = 83522, - [SMALL_STATE(2679)] = 83553, - [SMALL_STATE(2680)] = 83584, - [SMALL_STATE(2681)] = 83617, - [SMALL_STATE(2682)] = 83648, - [SMALL_STATE(2683)] = 83679, - [SMALL_STATE(2684)] = 83710, - [SMALL_STATE(2685)] = 83737, - [SMALL_STATE(2686)] = 83766, - [SMALL_STATE(2687)] = 83795, - [SMALL_STATE(2688)] = 83826, - [SMALL_STATE(2689)] = 83857, - [SMALL_STATE(2690)] = 83884, - [SMALL_STATE(2691)] = 83911, - [SMALL_STATE(2692)] = 83940, - [SMALL_STATE(2693)] = 83969, - [SMALL_STATE(2694)] = 84000, - [SMALL_STATE(2695)] = 84031, - [SMALL_STATE(2696)] = 84062, - [SMALL_STATE(2697)] = 84091, - [SMALL_STATE(2698)] = 84118, - [SMALL_STATE(2699)] = 84145, - [SMALL_STATE(2700)] = 84176, - [SMALL_STATE(2701)] = 84203, - [SMALL_STATE(2702)] = 84230, - [SMALL_STATE(2703)] = 84257, - [SMALL_STATE(2704)] = 84288, - [SMALL_STATE(2705)] = 84319, - [SMALL_STATE(2706)] = 84350, - [SMALL_STATE(2707)] = 84381, - [SMALL_STATE(2708)] = 84412, - [SMALL_STATE(2709)] = 84443, - [SMALL_STATE(2710)] = 84472, - [SMALL_STATE(2711)] = 84503, - [SMALL_STATE(2712)] = 84534, - [SMALL_STATE(2713)] = 84565, - [SMALL_STATE(2714)] = 84596, - [SMALL_STATE(2715)] = 84625, - [SMALL_STATE(2716)] = 84654, - [SMALL_STATE(2717)] = 84681, - [SMALL_STATE(2718)] = 84712, - [SMALL_STATE(2719)] = 84745, - [SMALL_STATE(2720)] = 84778, - [SMALL_STATE(2721)] = 84809, - [SMALL_STATE(2722)] = 84842, - [SMALL_STATE(2723)] = 84873, - [SMALL_STATE(2724)] = 84904, - [SMALL_STATE(2725)] = 84935, - [SMALL_STATE(2726)] = 84968, - [SMALL_STATE(2727)] = 85001, - [SMALL_STATE(2728)] = 85028, - [SMALL_STATE(2729)] = 85059, - [SMALL_STATE(2730)] = 85086, - [SMALL_STATE(2731)] = 85113, - [SMALL_STATE(2732)] = 85140, - [SMALL_STATE(2733)] = 85171, - [SMALL_STATE(2734)] = 85202, - [SMALL_STATE(2735)] = 85233, - [SMALL_STATE(2736)] = 85266, - [SMALL_STATE(2737)] = 85297, - [SMALL_STATE(2738)] = 85328, - [SMALL_STATE(2739)] = 85359, - [SMALL_STATE(2740)] = 85390, - [SMALL_STATE(2741)] = 85421, - [SMALL_STATE(2742)] = 85454, - [SMALL_STATE(2743)] = 85487, - [SMALL_STATE(2744)] = 85518, - [SMALL_STATE(2745)] = 85549, - [SMALL_STATE(2746)] = 85574, - [SMALL_STATE(2747)] = 85607, - [SMALL_STATE(2748)] = 85634, - [SMALL_STATE(2749)] = 85661, - [SMALL_STATE(2750)] = 85692, - [SMALL_STATE(2751)] = 85723, - [SMALL_STATE(2752)] = 85756, - [SMALL_STATE(2753)] = 85789, - [SMALL_STATE(2754)] = 85822, - [SMALL_STATE(2755)] = 85849, - [SMALL_STATE(2756)] = 85876, - [SMALL_STATE(2757)] = 85903, - [SMALL_STATE(2758)] = 85930, - [SMALL_STATE(2759)] = 85957, - [SMALL_STATE(2760)] = 85988, - [SMALL_STATE(2761)] = 86021, - [SMALL_STATE(2762)] = 86048, - [SMALL_STATE(2763)] = 86079, - [SMALL_STATE(2764)] = 86114, - [SMALL_STATE(2765)] = 86141, - [SMALL_STATE(2766)] = 86172, - [SMALL_STATE(2767)] = 86201, - [SMALL_STATE(2768)] = 86230, - [SMALL_STATE(2769)] = 86257, - [SMALL_STATE(2770)] = 86284, - [SMALL_STATE(2771)] = 86319, - [SMALL_STATE(2772)] = 86352, - [SMALL_STATE(2773)] = 86385, - [SMALL_STATE(2774)] = 86416, - [SMALL_STATE(2775)] = 86447, - [SMALL_STATE(2776)] = 86474, - [SMALL_STATE(2777)] = 86509, - [SMALL_STATE(2778)] = 86544, - [SMALL_STATE(2779)] = 86577, - [SMALL_STATE(2780)] = 86602, - [SMALL_STATE(2781)] = 86627, - [SMALL_STATE(2782)] = 86654, - [SMALL_STATE(2783)] = 86679, - [SMALL_STATE(2784)] = 86704, - [SMALL_STATE(2785)] = 86731, - [SMALL_STATE(2786)] = 86766, - [SMALL_STATE(2787)] = 86791, - [SMALL_STATE(2788)] = 86828, - [SMALL_STATE(2789)] = 86859, - [SMALL_STATE(2790)] = 86890, - [SMALL_STATE(2791)] = 86921, - [SMALL_STATE(2792)] = 86956, - [SMALL_STATE(2793)] = 86991, - [SMALL_STATE(2794)] = 87026, - [SMALL_STATE(2795)] = 87061, - [SMALL_STATE(2796)] = 87096, - [SMALL_STATE(2797)] = 87131, - [SMALL_STATE(2798)] = 87156, - [SMALL_STATE(2799)] = 87181, - [SMALL_STATE(2800)] = 87206, - [SMALL_STATE(2801)] = 87233, - [SMALL_STATE(2802)] = 87260, - [SMALL_STATE(2803)] = 87289, - [SMALL_STATE(2804)] = 87318, - [SMALL_STATE(2805)] = 87349, - [SMALL_STATE(2806)] = 87374, - [SMALL_STATE(2807)] = 87401, - [SMALL_STATE(2808)] = 87428, - [SMALL_STATE(2809)] = 87453, - [SMALL_STATE(2810)] = 87480, - [SMALL_STATE(2811)] = 87507, - [SMALL_STATE(2812)] = 87536, - [SMALL_STATE(2813)] = 87565, - [SMALL_STATE(2814)] = 87594, - [SMALL_STATE(2815)] = 87623, - [SMALL_STATE(2816)] = 87650, - [SMALL_STATE(2817)] = 87680, - [SMALL_STATE(2818)] = 87706, - [SMALL_STATE(2819)] = 87738, - [SMALL_STATE(2820)] = 87764, - [SMALL_STATE(2821)] = 87790, - [SMALL_STATE(2822)] = 87820, - [SMALL_STATE(2823)] = 87846, - [SMALL_STATE(2824)] = 87876, - [SMALL_STATE(2825)] = 87906, - [SMALL_STATE(2826)] = 87934, - [SMALL_STATE(2827)] = 87960, - [SMALL_STATE(2828)] = 87990, - [SMALL_STATE(2829)] = 88036, - [SMALL_STATE(2830)] = 88062, - [SMALL_STATE(2831)] = 88092, - [SMALL_STATE(2832)] = 88116, - [SMALL_STATE(2833)] = 88146, - [SMALL_STATE(2834)] = 88172, - [SMALL_STATE(2835)] = 88202, - [SMALL_STATE(2836)] = 88228, - [SMALL_STATE(2837)] = 88254, - [SMALL_STATE(2838)] = 88284, - [SMALL_STATE(2839)] = 88314, - [SMALL_STATE(2840)] = 88342, - [SMALL_STATE(2841)] = 88370, - [SMALL_STATE(2842)] = 88394, - [SMALL_STATE(2843)] = 88420, - [SMALL_STATE(2844)] = 88446, - [SMALL_STATE(2845)] = 88470, - [SMALL_STATE(2846)] = 88494, - [SMALL_STATE(2847)] = 88526, - [SMALL_STATE(2848)] = 88578, - [SMALL_STATE(2849)] = 88622, - [SMALL_STATE(2850)] = 88646, - [SMALL_STATE(2851)] = 88670, - [SMALL_STATE(2852)] = 88694, - [SMALL_STATE(2853)] = 88746, - [SMALL_STATE(2854)] = 88770, - [SMALL_STATE(2855)] = 88794, - [SMALL_STATE(2856)] = 88818, - [SMALL_STATE(2857)] = 88844, - [SMALL_STATE(2858)] = 88870, - [SMALL_STATE(2859)] = 88896, - [SMALL_STATE(2860)] = 88924, - [SMALL_STATE(2861)] = 88952, - [SMALL_STATE(2862)] = 88976, - [SMALL_STATE(2863)] = 89000, - [SMALL_STATE(2864)] = 89026, - [SMALL_STATE(2865)] = 89052, - [SMALL_STATE(2866)] = 89078, - [SMALL_STATE(2867)] = 89108, - [SMALL_STATE(2868)] = 89136, - [SMALL_STATE(2869)] = 89162, - [SMALL_STATE(2870)] = 89188, - [SMALL_STATE(2871)] = 89214, - [SMALL_STATE(2872)] = 89244, - [SMALL_STATE(2873)] = 89274, - [SMALL_STATE(2874)] = 89304, - [SMALL_STATE(2875)] = 89330, - [SMALL_STATE(2876)] = 89360, - [SMALL_STATE(2877)] = 89390, - [SMALL_STATE(2878)] = 89420, - [SMALL_STATE(2879)] = 89450, - [SMALL_STATE(2880)] = 89502, - [SMALL_STATE(2881)] = 89554, - [SMALL_STATE(2882)] = 89582, - [SMALL_STATE(2883)] = 89612, - [SMALL_STATE(2884)] = 89640, - [SMALL_STATE(2885)] = 89670, - [SMALL_STATE(2886)] = 89696, - [SMALL_STATE(2887)] = 89726, - [SMALL_STATE(2888)] = 89778, - [SMALL_STATE(2889)] = 89808, - [SMALL_STATE(2890)] = 89860, - [SMALL_STATE(2891)] = 89888, - [SMALL_STATE(2892)] = 89912, - [SMALL_STATE(2893)] = 89952, - [SMALL_STATE(2894)] = 89982, - [SMALL_STATE(2895)] = 90012, - [SMALL_STATE(2896)] = 90044, - [SMALL_STATE(2897)] = 90072, - [SMALL_STATE(2898)] = 90098, - [SMALL_STATE(2899)] = 90126, - [SMALL_STATE(2900)] = 90152, - [SMALL_STATE(2901)] = 90178, - [SMALL_STATE(2902)] = 90230, - [SMALL_STATE(2903)] = 90282, - [SMALL_STATE(2904)] = 90308, - [SMALL_STATE(2905)] = 90334, - [SMALL_STATE(2906)] = 90362, - [SMALL_STATE(2907)] = 90392, - [SMALL_STATE(2908)] = 90418, - [SMALL_STATE(2909)] = 90444, - [SMALL_STATE(2910)] = 90474, - [SMALL_STATE(2911)] = 90526, - [SMALL_STATE(2912)] = 90558, - [SMALL_STATE(2913)] = 90610, - [SMALL_STATE(2914)] = 90640, - [SMALL_STATE(2915)] = 90666, - [SMALL_STATE(2916)] = 90694, - [SMALL_STATE(2917)] = 90723, - [SMALL_STATE(2918)] = 90752, - [SMALL_STATE(2919)] = 90783, - [SMALL_STATE(2920)] = 90812, - [SMALL_STATE(2921)] = 90837, - [SMALL_STATE(2922)] = 90862, - [SMALL_STATE(2923)] = 90887, - [SMALL_STATE(2924)] = 90916, - [SMALL_STATE(2925)] = 90941, - [SMALL_STATE(2926)] = 90966, - [SMALL_STATE(2927)] = 90993, - [SMALL_STATE(2928)] = 91022, - [SMALL_STATE(2929)] = 91051, - [SMALL_STATE(2930)] = 91080, - [SMALL_STATE(2931)] = 91105, - [SMALL_STATE(2932)] = 91130, - [SMALL_STATE(2933)] = 91155, - [SMALL_STATE(2934)] = 91180, - [SMALL_STATE(2935)] = 91205, - [SMALL_STATE(2936)] = 91230, - [SMALL_STATE(2937)] = 91255, - [SMALL_STATE(2938)] = 91284, - [SMALL_STATE(2939)] = 91315, - [SMALL_STATE(2940)] = 91338, - [SMALL_STATE(2941)] = 91363, - [SMALL_STATE(2942)] = 91400, - [SMALL_STATE(2943)] = 91425, - [SMALL_STATE(2944)] = 91450, - [SMALL_STATE(2945)] = 91479, - [SMALL_STATE(2946)] = 91508, - [SMALL_STATE(2947)] = 91537, - [SMALL_STATE(2948)] = 91562, - [SMALL_STATE(2949)] = 91591, - [SMALL_STATE(2950)] = 91634, - [SMALL_STATE(2951)] = 91663, - [SMALL_STATE(2952)] = 91688, - [SMALL_STATE(2953)] = 91713, - [SMALL_STATE(2954)] = 91744, - [SMALL_STATE(2955)] = 91769, - [SMALL_STATE(2956)] = 91794, - [SMALL_STATE(2957)] = 91819, - [SMALL_STATE(2958)] = 91848, - [SMALL_STATE(2959)] = 91873, - [SMALL_STATE(2960)] = 91898, - [SMALL_STATE(2961)] = 91941, - [SMALL_STATE(2962)] = 91970, - [SMALL_STATE(2963)] = 91999, - [SMALL_STATE(2964)] = 92028, - [SMALL_STATE(2965)] = 92057, - [SMALL_STATE(2966)] = 92082, - [SMALL_STATE(2967)] = 92111, - [SMALL_STATE(2968)] = 92136, - [SMALL_STATE(2969)] = 92161, - [SMALL_STATE(2970)] = 92190, - [SMALL_STATE(2971)] = 92215, - [SMALL_STATE(2972)] = 92240, - [SMALL_STATE(2973)] = 92265, - [SMALL_STATE(2974)] = 92290, - [SMALL_STATE(2975)] = 92315, - [SMALL_STATE(2976)] = 92340, - [SMALL_STATE(2977)] = 92371, - [SMALL_STATE(2978)] = 92396, - [SMALL_STATE(2979)] = 92421, - [SMALL_STATE(2980)] = 92446, - [SMALL_STATE(2981)] = 92475, - [SMALL_STATE(2982)] = 92500, - [SMALL_STATE(2983)] = 92525, - [SMALL_STATE(2984)] = 92554, - [SMALL_STATE(2985)] = 92579, - [SMALL_STATE(2986)] = 92604, - [SMALL_STATE(2987)] = 92629, - [SMALL_STATE(2988)] = 92654, - [SMALL_STATE(2989)] = 92679, - [SMALL_STATE(2990)] = 92708, - [SMALL_STATE(2991)] = 92735, - [SMALL_STATE(2992)] = 92764, - [SMALL_STATE(2993)] = 92791, - [SMALL_STATE(2994)] = 92820, - [SMALL_STATE(2995)] = 92849, - [SMALL_STATE(2996)] = 92874, - [SMALL_STATE(2997)] = 92899, - [SMALL_STATE(2998)] = 92924, - [SMALL_STATE(2999)] = 92949, - [SMALL_STATE(3000)] = 92988, - [SMALL_STATE(3001)] = 93013, - [SMALL_STATE(3002)] = 93040, - [SMALL_STATE(3003)] = 93065, - [SMALL_STATE(3004)] = 93090, - [SMALL_STATE(3005)] = 93127, - [SMALL_STATE(3006)] = 93152, - [SMALL_STATE(3007)] = 93177, - [SMALL_STATE(3008)] = 93206, - [SMALL_STATE(3009)] = 93231, - [SMALL_STATE(3010)] = 93260, - [SMALL_STATE(3011)] = 93285, - [SMALL_STATE(3012)] = 93310, - [SMALL_STATE(3013)] = 93335, - [SMALL_STATE(3014)] = 93360, - [SMALL_STATE(3015)] = 93389, - [SMALL_STATE(3016)] = 93418, - [SMALL_STATE(3017)] = 93443, - [SMALL_STATE(3018)] = 93468, - [SMALL_STATE(3019)] = 93493, - [SMALL_STATE(3020)] = 93518, - [SMALL_STATE(3021)] = 93543, - [SMALL_STATE(3022)] = 93568, - [SMALL_STATE(3023)] = 93593, - [SMALL_STATE(3024)] = 93618, - [SMALL_STATE(3025)] = 93647, - [SMALL_STATE(3026)] = 93672, - [SMALL_STATE(3027)] = 93701, - [SMALL_STATE(3028)] = 93726, - [SMALL_STATE(3029)] = 93755, - [SMALL_STATE(3030)] = 93778, - [SMALL_STATE(3031)] = 93803, - [SMALL_STATE(3032)] = 93832, - [SMALL_STATE(3033)] = 93857, - [SMALL_STATE(3034)] = 93886, - [SMALL_STATE(3035)] = 93911, - [SMALL_STATE(3036)] = 93936, - [SMALL_STATE(3037)] = 93961, - [SMALL_STATE(3038)] = 93986, - [SMALL_STATE(3039)] = 94011, - [SMALL_STATE(3040)] = 94048, - [SMALL_STATE(3041)] = 94077, - [SMALL_STATE(3042)] = 94106, - [SMALL_STATE(3043)] = 94135, - [SMALL_STATE(3044)] = 94162, - [SMALL_STATE(3045)] = 94191, - [SMALL_STATE(3046)] = 94216, - [SMALL_STATE(3047)] = 94241, - [SMALL_STATE(3048)] = 94270, - [SMALL_STATE(3049)] = 94299, - [SMALL_STATE(3050)] = 94324, - [SMALL_STATE(3051)] = 94349, - [SMALL_STATE(3052)] = 94374, - [SMALL_STATE(3053)] = 94399, - [SMALL_STATE(3054)] = 94428, - [SMALL_STATE(3055)] = 94457, - [SMALL_STATE(3056)] = 94482, - [SMALL_STATE(3057)] = 94507, - [SMALL_STATE(3058)] = 94536, - [SMALL_STATE(3059)] = 94561, - [SMALL_STATE(3060)] = 94586, - [SMALL_STATE(3061)] = 94611, - [SMALL_STATE(3062)] = 94636, - [SMALL_STATE(3063)] = 94661, - [SMALL_STATE(3064)] = 94686, - [SMALL_STATE(3065)] = 94713, - [SMALL_STATE(3066)] = 94740, - [SMALL_STATE(3067)] = 94765, - [SMALL_STATE(3068)] = 94790, - [SMALL_STATE(3069)] = 94815, - [SMALL_STATE(3070)] = 94844, - [SMALL_STATE(3071)] = 94869, - [SMALL_STATE(3072)] = 94898, - [SMALL_STATE(3073)] = 94923, - [SMALL_STATE(3074)] = 94948, - [SMALL_STATE(3075)] = 94973, - [SMALL_STATE(3076)] = 95007, - [SMALL_STATE(3077)] = 95031, - [SMALL_STATE(3078)] = 95077, - [SMALL_STATE(3079)] = 95101, - [SMALL_STATE(3080)] = 95123, - [SMALL_STATE(3081)] = 95165, - [SMALL_STATE(3082)] = 95189, - [SMALL_STATE(3083)] = 95223, - [SMALL_STATE(3084)] = 95269, - [SMALL_STATE(3085)] = 95293, - [SMALL_STATE(3086)] = 95317, - [SMALL_STATE(3087)] = 95341, - [SMALL_STATE(3088)] = 95363, - [SMALL_STATE(3089)] = 95409, - [SMALL_STATE(3090)] = 95433, - [SMALL_STATE(3091)] = 95473, - [SMALL_STATE(3092)] = 95497, - [SMALL_STATE(3093)] = 95521, - [SMALL_STATE(3094)] = 95545, - [SMALL_STATE(3095)] = 95569, - [SMALL_STATE(3096)] = 95593, - [SMALL_STATE(3097)] = 95617, - [SMALL_STATE(3098)] = 95641, - [SMALL_STATE(3099)] = 95665, - [SMALL_STATE(3100)] = 95705, - [SMALL_STATE(3101)] = 95729, - [SMALL_STATE(3102)] = 95753, - [SMALL_STATE(3103)] = 95775, - [SMALL_STATE(3104)] = 95799, - [SMALL_STATE(3105)] = 95823, - [SMALL_STATE(3106)] = 95847, - [SMALL_STATE(3107)] = 95871, - [SMALL_STATE(3108)] = 95895, - [SMALL_STATE(3109)] = 95935, - [SMALL_STATE(3110)] = 95957, - [SMALL_STATE(3111)] = 95981, - [SMALL_STATE(3112)] = 96005, - [SMALL_STATE(3113)] = 96029, - [SMALL_STATE(3114)] = 96051, - [SMALL_STATE(3115)] = 96073, - [SMALL_STATE(3116)] = 96095, - [SMALL_STATE(3117)] = 96119, - [SMALL_STATE(3118)] = 96145, - [SMALL_STATE(3119)] = 96167, - [SMALL_STATE(3120)] = 96207, - [SMALL_STATE(3121)] = 96231, - [SMALL_STATE(3122)] = 96255, - [SMALL_STATE(3123)] = 96279, - [SMALL_STATE(3124)] = 96303, - [SMALL_STATE(3125)] = 96327, - [SMALL_STATE(3126)] = 96351, - [SMALL_STATE(3127)] = 96375, - [SMALL_STATE(3128)] = 96415, - [SMALL_STATE(3129)] = 96441, - [SMALL_STATE(3130)] = 96465, - [SMALL_STATE(3131)] = 96489, - [SMALL_STATE(3132)] = 96513, - [SMALL_STATE(3133)] = 96537, - [SMALL_STATE(3134)] = 96561, - [SMALL_STATE(3135)] = 96585, - [SMALL_STATE(3136)] = 96609, - [SMALL_STATE(3137)] = 96631, - [SMALL_STATE(3138)] = 96655, - [SMALL_STATE(3139)] = 96679, - [SMALL_STATE(3140)] = 96703, - [SMALL_STATE(3141)] = 96727, - [SMALL_STATE(3142)] = 96751, - [SMALL_STATE(3143)] = 96775, - [SMALL_STATE(3144)] = 96799, - [SMALL_STATE(3145)] = 96823, - [SMALL_STATE(3146)] = 96845, - [SMALL_STATE(3147)] = 96867, - [SMALL_STATE(3148)] = 96891, - [SMALL_STATE(3149)] = 96915, - [SMALL_STATE(3150)] = 96951, - [SMALL_STATE(3151)] = 96975, - [SMALL_STATE(3152)] = 97021, - [SMALL_STATE(3153)] = 97045, - [SMALL_STATE(3154)] = 97069, - [SMALL_STATE(3155)] = 97103, - [SMALL_STATE(3156)] = 97127, - [SMALL_STATE(3157)] = 97151, - [SMALL_STATE(3158)] = 97175, - [SMALL_STATE(3159)] = 97199, - [SMALL_STATE(3160)] = 97223, - [SMALL_STATE(3161)] = 97257, - [SMALL_STATE(3162)] = 97279, - [SMALL_STATE(3163)] = 97303, - [SMALL_STATE(3164)] = 97327, - [SMALL_STATE(3165)] = 97363, - [SMALL_STATE(3166)] = 97387, - [SMALL_STATE(3167)] = 97411, - [SMALL_STATE(3168)] = 97433, - [SMALL_STATE(3169)] = 97457, - [SMALL_STATE(3170)] = 97479, - [SMALL_STATE(3171)] = 97503, - [SMALL_STATE(3172)] = 97549, - [SMALL_STATE(3173)] = 97595, - [SMALL_STATE(3174)] = 97619, - [SMALL_STATE(3175)] = 97665, - [SMALL_STATE(3176)] = 97705, - [SMALL_STATE(3177)] = 97729, - [SMALL_STATE(3178)] = 97753, - [SMALL_STATE(3179)] = 97795, - [SMALL_STATE(3180)] = 97841, - [SMALL_STATE(3181)] = 97865, - [SMALL_STATE(3182)] = 97889, - [SMALL_STATE(3183)] = 97913, - [SMALL_STATE(3184)] = 97941, - [SMALL_STATE(3185)] = 97969, - [SMALL_STATE(3186)] = 97997, - [SMALL_STATE(3187)] = 98025, - [SMALL_STATE(3188)] = 98053, - [SMALL_STATE(3189)] = 98081, - [SMALL_STATE(3190)] = 98109, - [SMALL_STATE(3191)] = 98137, - [SMALL_STATE(3192)] = 98165, - [SMALL_STATE(3193)] = 98193, - [SMALL_STATE(3194)] = 98221, - [SMALL_STATE(3195)] = 98249, - [SMALL_STATE(3196)] = 98273, - [SMALL_STATE(3197)] = 98297, - [SMALL_STATE(3198)] = 98321, - [SMALL_STATE(3199)] = 98367, - [SMALL_STATE(3200)] = 98391, - [SMALL_STATE(3201)] = 98431, - [SMALL_STATE(3202)] = 98455, - [SMALL_STATE(3203)] = 98501, - [SMALL_STATE(3204)] = 98525, - [SMALL_STATE(3205)] = 98549, - [SMALL_STATE(3206)] = 98573, - [SMALL_STATE(3207)] = 98597, - [SMALL_STATE(3208)] = 98619, - [SMALL_STATE(3209)] = 98643, - [SMALL_STATE(3210)] = 98665, - [SMALL_STATE(3211)] = 98689, - [SMALL_STATE(3212)] = 98713, - [SMALL_STATE(3213)] = 98737, - [SMALL_STATE(3214)] = 98761, - [SMALL_STATE(3215)] = 98788, - [SMALL_STATE(3216)] = 98809, - [SMALL_STATE(3217)] = 98848, - [SMALL_STATE(3218)] = 98869, - [SMALL_STATE(3219)] = 98890, - [SMALL_STATE(3220)] = 98913, - [SMALL_STATE(3221)] = 98936, - [SMALL_STATE(3222)] = 98959, - [SMALL_STATE(3223)] = 98980, - [SMALL_STATE(3224)] = 99001, - [SMALL_STATE(3225)] = 99022, - [SMALL_STATE(3226)] = 99043, - [SMALL_STATE(3227)] = 99066, - [SMALL_STATE(3228)] = 99093, - [SMALL_STATE(3229)] = 99120, - [SMALL_STATE(3230)] = 99141, - [SMALL_STATE(3231)] = 99162, - [SMALL_STATE(3232)] = 99185, - [SMALL_STATE(3233)] = 99206, - [SMALL_STATE(3234)] = 99229, - [SMALL_STATE(3235)] = 99252, - [SMALL_STATE(3236)] = 99289, - [SMALL_STATE(3237)] = 99326, - [SMALL_STATE(3238)] = 99363, - [SMALL_STATE(3239)] = 99400, - [SMALL_STATE(3240)] = 99423, - [SMALL_STATE(3241)] = 99460, - [SMALL_STATE(3242)] = 99483, - [SMALL_STATE(3243)] = 99506, - [SMALL_STATE(3244)] = 99529, - [SMALL_STATE(3245)] = 99552, - [SMALL_STATE(3246)] = 99573, - [SMALL_STATE(3247)] = 99594, - [SMALL_STATE(3248)] = 99615, - [SMALL_STATE(3249)] = 99642, - [SMALL_STATE(3250)] = 99663, - [SMALL_STATE(3251)] = 99684, - [SMALL_STATE(3252)] = 99707, - [SMALL_STATE(3253)] = 99728, - [SMALL_STATE(3254)] = 99755, - [SMALL_STATE(3255)] = 99782, - [SMALL_STATE(3256)] = 99803, - [SMALL_STATE(3257)] = 99826, - [SMALL_STATE(3258)] = 99847, - [SMALL_STATE(3259)] = 99868, - [SMALL_STATE(3260)] = 99889, - [SMALL_STATE(3261)] = 99912, - [SMALL_STATE(3262)] = 99933, - [SMALL_STATE(3263)] = 99954, - [SMALL_STATE(3264)] = 99975, - [SMALL_STATE(3265)] = 100012, - [SMALL_STATE(3266)] = 100033, - [SMALL_STATE(3267)] = 100054, - [SMALL_STATE(3268)] = 100081, - [SMALL_STATE(3269)] = 100110, - [SMALL_STATE(3270)] = 100133, - [SMALL_STATE(3271)] = 100160, - [SMALL_STATE(3272)] = 100183, - [SMALL_STATE(3273)] = 100204, - [SMALL_STATE(3274)] = 100243, - [SMALL_STATE(3275)] = 100266, - [SMALL_STATE(3276)] = 100289, - [SMALL_STATE(3277)] = 100316, - [SMALL_STATE(3278)] = 100353, - [SMALL_STATE(3279)] = 100374, - [SMALL_STATE(3280)] = 100397, - [SMALL_STATE(3281)] = 100418, - [SMALL_STATE(3282)] = 100439, - [SMALL_STATE(3283)] = 100460, - [SMALL_STATE(3284)] = 100481, - [SMALL_STATE(3285)] = 100504, - [SMALL_STATE(3286)] = 100527, - [SMALL_STATE(3287)] = 100566, - [SMALL_STATE(3288)] = 100587, - [SMALL_STATE(3289)] = 100608, - [SMALL_STATE(3290)] = 100629, - [SMALL_STATE(3291)] = 100652, - [SMALL_STATE(3292)] = 100673, - [SMALL_STATE(3293)] = 100710, - [SMALL_STATE(3294)] = 100741, - [SMALL_STATE(3295)] = 100762, - [SMALL_STATE(3296)] = 100783, - [SMALL_STATE(3297)] = 100804, - [SMALL_STATE(3298)] = 100825, - [SMALL_STATE(3299)] = 100852, - [SMALL_STATE(3300)] = 100873, - [SMALL_STATE(3301)] = 100896, - [SMALL_STATE(3302)] = 100917, - [SMALL_STATE(3303)] = 100938, - [SMALL_STATE(3304)] = 100959, - [SMALL_STATE(3305)] = 100982, - [SMALL_STATE(3306)] = 101005, - [SMALL_STATE(3307)] = 101030, - [SMALL_STATE(3308)] = 101051, - [SMALL_STATE(3309)] = 101072, - [SMALL_STATE(3310)] = 101093, - [SMALL_STATE(3311)] = 101114, - [SMALL_STATE(3312)] = 101135, - [SMALL_STATE(3313)] = 101156, - [SMALL_STATE(3314)] = 101177, - [SMALL_STATE(3315)] = 101200, - [SMALL_STATE(3316)] = 101221, - [SMALL_STATE(3317)] = 101242, - [SMALL_STATE(3318)] = 101269, - [SMALL_STATE(3319)] = 101296, - [SMALL_STATE(3320)] = 101323, - [SMALL_STATE(3321)] = 101350, - [SMALL_STATE(3322)] = 101377, - [SMALL_STATE(3323)] = 101404, - [SMALL_STATE(3324)] = 101431, - [SMALL_STATE(3325)] = 101458, - [SMALL_STATE(3326)] = 101485, - [SMALL_STATE(3327)] = 101512, - [SMALL_STATE(3328)] = 101539, - [SMALL_STATE(3329)] = 101562, - [SMALL_STATE(3330)] = 101583, - [SMALL_STATE(3331)] = 101604, - [SMALL_STATE(3332)] = 101641, - [SMALL_STATE(3333)] = 101662, - [SMALL_STATE(3334)] = 101683, - [SMALL_STATE(3335)] = 101704, - [SMALL_STATE(3336)] = 101741, - [SMALL_STATE(3337)] = 101778, - [SMALL_STATE(3338)] = 101815, - [SMALL_STATE(3339)] = 101852, - [SMALL_STATE(3340)] = 101891, - [SMALL_STATE(3341)] = 101912, - [SMALL_STATE(3342)] = 101933, - [SMALL_STATE(3343)] = 101972, - [SMALL_STATE(3344)] = 101995, - [SMALL_STATE(3345)] = 102034, - [SMALL_STATE(3346)] = 102057, - [SMALL_STATE(3347)] = 102080, - [SMALL_STATE(3348)] = 102103, - [SMALL_STATE(3349)] = 102130, - [SMALL_STATE(3350)] = 102151, - [SMALL_STATE(3351)] = 102178, - [SMALL_STATE(3352)] = 102201, - [SMALL_STATE(3353)] = 102222, - [SMALL_STATE(3354)] = 102261, - [SMALL_STATE(3355)] = 102282, - [SMALL_STATE(3356)] = 102314, - [SMALL_STATE(3357)] = 102336, - [SMALL_STATE(3358)] = 102372, - [SMALL_STATE(3359)] = 102396, - [SMALL_STATE(3360)] = 102428, - [SMALL_STATE(3361)] = 102452, - [SMALL_STATE(3362)] = 102486, - [SMALL_STATE(3363)] = 102512, - [SMALL_STATE(3364)] = 102538, - [SMALL_STATE(3365)] = 102564, - [SMALL_STATE(3366)] = 102588, - [SMALL_STATE(3367)] = 102624, - [SMALL_STATE(3368)] = 102650, - [SMALL_STATE(3369)] = 102674, - [SMALL_STATE(3370)] = 102704, - [SMALL_STATE(3371)] = 102728, - [SMALL_STATE(3372)] = 102752, - [SMALL_STATE(3373)] = 102774, - [SMALL_STATE(3374)] = 102798, - [SMALL_STATE(3375)] = 102824, - [SMALL_STATE(3376)] = 102858, - [SMALL_STATE(3377)] = 102880, - [SMALL_STATE(3378)] = 102902, - [SMALL_STATE(3379)] = 102930, - [SMALL_STATE(3380)] = 102952, - [SMALL_STATE(3381)] = 102978, - [SMALL_STATE(3382)] = 103010, - [SMALL_STATE(3383)] = 103032, - [SMALL_STATE(3384)] = 103054, - [SMALL_STATE(3385)] = 103080, - [SMALL_STATE(3386)] = 103114, - [SMALL_STATE(3387)] = 103144, - [SMALL_STATE(3388)] = 103180, - [SMALL_STATE(3389)] = 103204, - [SMALL_STATE(3390)] = 103240, - [SMALL_STATE(3391)] = 103266, - [SMALL_STATE(3392)] = 103292, - [SMALL_STATE(3393)] = 103318, - [SMALL_STATE(3394)] = 103350, - [SMALL_STATE(3395)] = 103376, - [SMALL_STATE(3396)] = 103398, - [SMALL_STATE(3397)] = 103430, - [SMALL_STATE(3398)] = 103456, - [SMALL_STATE(3399)] = 103480, - [SMALL_STATE(3400)] = 103504, - [SMALL_STATE(3401)] = 103530, - [SMALL_STATE(3402)] = 103563, - [SMALL_STATE(3403)] = 103594, - [SMALL_STATE(3404)] = 103625, - [SMALL_STATE(3405)] = 103656, - [SMALL_STATE(3406)] = 103689, - [SMALL_STATE(3407)] = 103722, - [SMALL_STATE(3408)] = 103743, - [SMALL_STATE(3409)] = 103774, - [SMALL_STATE(3410)] = 103807, - [SMALL_STATE(3411)] = 103840, - [SMALL_STATE(3412)] = 103873, - [SMALL_STATE(3413)] = 103896, - [SMALL_STATE(3414)] = 103921, - [SMALL_STATE(3415)] = 103942, - [SMALL_STATE(3416)] = 103973, - [SMALL_STATE(3417)] = 103998, - [SMALL_STATE(3418)] = 104019, - [SMALL_STATE(3419)] = 104054, - [SMALL_STATE(3420)] = 104077, - [SMALL_STATE(3421)] = 104110, - [SMALL_STATE(3422)] = 104143, - [SMALL_STATE(3423)] = 104174, - [SMALL_STATE(3424)] = 104199, - [SMALL_STATE(3425)] = 104220, - [SMALL_STATE(3426)] = 104241, - [SMALL_STATE(3427)] = 104266, - [SMALL_STATE(3428)] = 104297, - [SMALL_STATE(3429)] = 104328, - [SMALL_STATE(3430)] = 104349, - [SMALL_STATE(3431)] = 104382, - [SMALL_STATE(3432)] = 104415, - [SMALL_STATE(3433)] = 104446, - [SMALL_STATE(3434)] = 104477, - [SMALL_STATE(3435)] = 104508, - [SMALL_STATE(3436)] = 104531, - [SMALL_STATE(3437)] = 104564, - [SMALL_STATE(3438)] = 104597, - [SMALL_STATE(3439)] = 104628, - [SMALL_STATE(3440)] = 104653, - [SMALL_STATE(3441)] = 104676, - [SMALL_STATE(3442)] = 104707, - [SMALL_STATE(3443)] = 104740, - [SMALL_STATE(3444)] = 104773, - [SMALL_STATE(3445)] = 104804, - [SMALL_STATE(3446)] = 104827, - [SMALL_STATE(3447)] = 104860, - [SMALL_STATE(3448)] = 104893, - [SMALL_STATE(3449)] = 104914, - [SMALL_STATE(3450)] = 104947, - [SMALL_STATE(3451)] = 104970, - [SMALL_STATE(3452)] = 105003, - [SMALL_STATE(3453)] = 105024, - [SMALL_STATE(3454)] = 105057, - [SMALL_STATE(3455)] = 105088, - [SMALL_STATE(3456)] = 105121, - [SMALL_STATE(3457)] = 105156, - [SMALL_STATE(3458)] = 105189, - [SMALL_STATE(3459)] = 105222, - [SMALL_STATE(3460)] = 105253, - [SMALL_STATE(3461)] = 105276, - [SMALL_STATE(3462)] = 105309, - [SMALL_STATE(3463)] = 105342, - [SMALL_STATE(3464)] = 105375, - [SMALL_STATE(3465)] = 105408, - [SMALL_STATE(3466)] = 105441, - [SMALL_STATE(3467)] = 105474, - [SMALL_STATE(3468)] = 105505, - [SMALL_STATE(3469)] = 105538, - [SMALL_STATE(3470)] = 105571, - [SMALL_STATE(3471)] = 105596, - [SMALL_STATE(3472)] = 105629, - [SMALL_STATE(3473)] = 105662, - [SMALL_STATE(3474)] = 105695, - [SMALL_STATE(3475)] = 105728, - [SMALL_STATE(3476)] = 105761, - [SMALL_STATE(3477)] = 105792, - [SMALL_STATE(3478)] = 105823, - [SMALL_STATE(3479)] = 105856, - [SMALL_STATE(3480)] = 105887, - [SMALL_STATE(3481)] = 105912, - [SMALL_STATE(3482)] = 105933, - [SMALL_STATE(3483)] = 105958, - [SMALL_STATE(3484)] = 105989, - [SMALL_STATE(3485)] = 106010, - [SMALL_STATE(3486)] = 106031, - [SMALL_STATE(3487)] = 106062, - [SMALL_STATE(3488)] = 106091, - [SMALL_STATE(3489)] = 106112, - [SMALL_STATE(3490)] = 106133, - [SMALL_STATE(3491)] = 106164, - [SMALL_STATE(3492)] = 106184, - [SMALL_STATE(3493)] = 106204, - [SMALL_STATE(3494)] = 106230, - [SMALL_STATE(3495)] = 106258, - [SMALL_STATE(3496)] = 106286, - [SMALL_STATE(3497)] = 106312, - [SMALL_STATE(3498)] = 106332, - [SMALL_STATE(3499)] = 106360, - [SMALL_STATE(3500)] = 106388, - [SMALL_STATE(3501)] = 106410, - [SMALL_STATE(3502)] = 106438, - [SMALL_STATE(3503)] = 106466, - [SMALL_STATE(3504)] = 106494, - [SMALL_STATE(3505)] = 106522, - [SMALL_STATE(3506)] = 106542, - [SMALL_STATE(3507)] = 106570, - [SMALL_STATE(3508)] = 106598, - [SMALL_STATE(3509)] = 106618, - [SMALL_STATE(3510)] = 106646, - [SMALL_STATE(3511)] = 106674, - [SMALL_STATE(3512)] = 106694, - [SMALL_STATE(3513)] = 106722, - [SMALL_STATE(3514)] = 106750, - [SMALL_STATE(3515)] = 106774, - [SMALL_STATE(3516)] = 106802, - [SMALL_STATE(3517)] = 106830, - [SMALL_STATE(3518)] = 106858, - [SMALL_STATE(3519)] = 106882, - [SMALL_STATE(3520)] = 106910, - [SMALL_STATE(3521)] = 106938, - [SMALL_STATE(3522)] = 106966, - [SMALL_STATE(3523)] = 106994, - [SMALL_STATE(3524)] = 107022, - [SMALL_STATE(3525)] = 107050, - [SMALL_STATE(3526)] = 107078, - [SMALL_STATE(3527)] = 107108, - [SMALL_STATE(3528)] = 107136, - [SMALL_STATE(3529)] = 107156, - [SMALL_STATE(3530)] = 107184, - [SMALL_STATE(3531)] = 107212, - [SMALL_STATE(3532)] = 107240, - [SMALL_STATE(3533)] = 107258, - [SMALL_STATE(3534)] = 107286, - [SMALL_STATE(3535)] = 107308, - [SMALL_STATE(3536)] = 107336, - [SMALL_STATE(3537)] = 107358, - [SMALL_STATE(3538)] = 107386, - [SMALL_STATE(3539)] = 107406, - [SMALL_STATE(3540)] = 107434, - [SMALL_STATE(3541)] = 107462, - [SMALL_STATE(3542)] = 107482, - [SMALL_STATE(3543)] = 107502, - [SMALL_STATE(3544)] = 107530, - [SMALL_STATE(3545)] = 107558, - [SMALL_STATE(3546)] = 107586, - [SMALL_STATE(3547)] = 107606, - [SMALL_STATE(3548)] = 107634, - [SMALL_STATE(3549)] = 107656, - [SMALL_STATE(3550)] = 107676, - [SMALL_STATE(3551)] = 107704, - [SMALL_STATE(3552)] = 107732, - [SMALL_STATE(3553)] = 107760, - [SMALL_STATE(3554)] = 107782, - [SMALL_STATE(3555)] = 107806, - [SMALL_STATE(3556)] = 107836, - [SMALL_STATE(3557)] = 107864, - [SMALL_STATE(3558)] = 107892, - [SMALL_STATE(3559)] = 107920, - [SMALL_STATE(3560)] = 107944, - [SMALL_STATE(3561)] = 107964, - [SMALL_STATE(3562)] = 107984, - [SMALL_STATE(3563)] = 108010, - [SMALL_STATE(3564)] = 108032, - [SMALL_STATE(3565)] = 108056, - [SMALL_STATE(3566)] = 108078, - [SMALL_STATE(3567)] = 108106, - [SMALL_STATE(3568)] = 108134, - [SMALL_STATE(3569)] = 108154, - [SMALL_STATE(3570)] = 108176, - [SMALL_STATE(3571)] = 108194, - [SMALL_STATE(3572)] = 108218, - [SMALL_STATE(3573)] = 108244, - [SMALL_STATE(3574)] = 108269, - [SMALL_STATE(3575)] = 108294, - [SMALL_STATE(3576)] = 108315, - [SMALL_STATE(3577)] = 108340, - [SMALL_STATE(3578)] = 108363, - [SMALL_STATE(3579)] = 108382, - [SMALL_STATE(3580)] = 108401, - [SMALL_STATE(3581)] = 108426, - [SMALL_STATE(3582)] = 108455, - [SMALL_STATE(3583)] = 108474, - [SMALL_STATE(3584)] = 108493, - [SMALL_STATE(3585)] = 108512, - [SMALL_STATE(3586)] = 108531, - [SMALL_STATE(3587)] = 108556, - [SMALL_STATE(3588)] = 108581, - [SMALL_STATE(3589)] = 108600, - [SMALL_STATE(3590)] = 108621, - [SMALL_STATE(3591)] = 108642, - [SMALL_STATE(3592)] = 108667, - [SMALL_STATE(3593)] = 108690, - [SMALL_STATE(3594)] = 108711, - [SMALL_STATE(3595)] = 108736, - [SMALL_STATE(3596)] = 108757, - [SMALL_STATE(3597)] = 108776, - [SMALL_STATE(3598)] = 108795, - [SMALL_STATE(3599)] = 108822, - [SMALL_STATE(3600)] = 108853, - [SMALL_STATE(3601)] = 108876, - [SMALL_STATE(3602)] = 108897, - [SMALL_STATE(3603)] = 108922, - [SMALL_STATE(3604)] = 108949, - [SMALL_STATE(3605)] = 108970, - [SMALL_STATE(3606)] = 108995, - [SMALL_STATE(3607)] = 109022, - [SMALL_STATE(3608)] = 109047, - [SMALL_STATE(3609)] = 109074, - [SMALL_STATE(3610)] = 109097, - [SMALL_STATE(3611)] = 109122, - [SMALL_STATE(3612)] = 109145, - [SMALL_STATE(3613)] = 109170, - [SMALL_STATE(3614)] = 109195, - [SMALL_STATE(3615)] = 109214, - [SMALL_STATE(3616)] = 109239, - [SMALL_STATE(3617)] = 109258, - [SMALL_STATE(3618)] = 109277, - [SMALL_STATE(3619)] = 109296, - [SMALL_STATE(3620)] = 109321, - [SMALL_STATE(3621)] = 109348, - [SMALL_STATE(3622)] = 109375, - [SMALL_STATE(3623)] = 109397, - [SMALL_STATE(3624)] = 109425, - [SMALL_STATE(3625)] = 109447, - [SMALL_STATE(3626)] = 109467, - [SMALL_STATE(3627)] = 109485, - [SMALL_STATE(3628)] = 109513, - [SMALL_STATE(3629)] = 109541, - [SMALL_STATE(3630)] = 109569, - [SMALL_STATE(3631)] = 109591, - [SMALL_STATE(3632)] = 109613, - [SMALL_STATE(3633)] = 109639, - [SMALL_STATE(3634)] = 109667, - [SMALL_STATE(3635)] = 109687, - [SMALL_STATE(3636)] = 109707, - [SMALL_STATE(3637)] = 109727, - [SMALL_STATE(3638)] = 109749, - [SMALL_STATE(3639)] = 109767, - [SMALL_STATE(3640)] = 109793, - [SMALL_STATE(3641)] = 109817, - [SMALL_STATE(3642)] = 109845, - [SMALL_STATE(3643)] = 109873, - [SMALL_STATE(3644)] = 109897, - [SMALL_STATE(3645)] = 109917, - [SMALL_STATE(3646)] = 109935, - [SMALL_STATE(3647)] = 109963, - [SMALL_STATE(3648)] = 109989, - [SMALL_STATE(3649)] = 110017, - [SMALL_STATE(3650)] = 110035, - [SMALL_STATE(3651)] = 110063, - [SMALL_STATE(3652)] = 110091, - [SMALL_STATE(3653)] = 110109, - [SMALL_STATE(3654)] = 110133, - [SMALL_STATE(3655)] = 110161, - [SMALL_STATE(3656)] = 110187, - [SMALL_STATE(3657)] = 110215, - [SMALL_STATE(3658)] = 110243, - [SMALL_STATE(3659)] = 110271, - [SMALL_STATE(3660)] = 110299, - [SMALL_STATE(3661)] = 110323, - [SMALL_STATE(3662)] = 110341, - [SMALL_STATE(3663)] = 110369, - [SMALL_STATE(3664)] = 110387, - [SMALL_STATE(3665)] = 110413, - [SMALL_STATE(3666)] = 110441, - [SMALL_STATE(3667)] = 110469, - [SMALL_STATE(3668)] = 110495, - [SMALL_STATE(3669)] = 110521, - [SMALL_STATE(3670)] = 110547, - [SMALL_STATE(3671)] = 110575, - [SMALL_STATE(3672)] = 110603, - [SMALL_STATE(3673)] = 110629, - [SMALL_STATE(3674)] = 110655, - [SMALL_STATE(3675)] = 110683, - [SMALL_STATE(3676)] = 110711, - [SMALL_STATE(3677)] = 110737, - [SMALL_STATE(3678)] = 110759, - [SMALL_STATE(3679)] = 110781, - [SMALL_STATE(3680)] = 110803, - [SMALL_STATE(3681)] = 110825, - [SMALL_STATE(3682)] = 110847, - [SMALL_STATE(3683)] = 110873, - [SMALL_STATE(3684)] = 110891, - [SMALL_STATE(3685)] = 110917, - [SMALL_STATE(3686)] = 110945, - [SMALL_STATE(3687)] = 110973, - [SMALL_STATE(3688)] = 110995, - [SMALL_STATE(3689)] = 111023, - [SMALL_STATE(3690)] = 111051, - [SMALL_STATE(3691)] = 111075, - [SMALL_STATE(3692)] = 111103, - [SMALL_STATE(3693)] = 111129, - [SMALL_STATE(3694)] = 111155, - [SMALL_STATE(3695)] = 111173, - [SMALL_STATE(3696)] = 111201, - [SMALL_STATE(3697)] = 111227, - [SMALL_STATE(3698)] = 111255, - [SMALL_STATE(3699)] = 111279, - [SMALL_STATE(3700)] = 111303, - [SMALL_STATE(3701)] = 111325, - [SMALL_STATE(3702)] = 111353, - [SMALL_STATE(3703)] = 111381, - [SMALL_STATE(3704)] = 111405, - [SMALL_STATE(3705)] = 111429, - [SMALL_STATE(3706)] = 111447, - [SMALL_STATE(3707)] = 111475, - [SMALL_STATE(3708)] = 111503, - [SMALL_STATE(3709)] = 111531, - [SMALL_STATE(3710)] = 111559, - [SMALL_STATE(3711)] = 111585, - [SMALL_STATE(3712)] = 111611, - [SMALL_STATE(3713)] = 111637, - [SMALL_STATE(3714)] = 111665, - [SMALL_STATE(3715)] = 111685, - [SMALL_STATE(3716)] = 111705, - [SMALL_STATE(3717)] = 111733, - [SMALL_STATE(3718)] = 111751, - [SMALL_STATE(3719)] = 111777, - [SMALL_STATE(3720)] = 111803, - [SMALL_STATE(3721)] = 111831, - [SMALL_STATE(3722)] = 111859, - [SMALL_STATE(3723)] = 111887, - [SMALL_STATE(3724)] = 111907, - [SMALL_STATE(3725)] = 111935, - [SMALL_STATE(3726)] = 111963, - [SMALL_STATE(3727)] = 111981, - [SMALL_STATE(3728)] = 112009, - [SMALL_STATE(3729)] = 112037, - [SMALL_STATE(3730)] = 112065, - [SMALL_STATE(3731)] = 112083, - [SMALL_STATE(3732)] = 112108, - [SMALL_STATE(3733)] = 112131, - [SMALL_STATE(3734)] = 112152, - [SMALL_STATE(3735)] = 112175, - [SMALL_STATE(3736)] = 112198, - [SMALL_STATE(3737)] = 112221, - [SMALL_STATE(3738)] = 112244, - [SMALL_STATE(3739)] = 112265, - [SMALL_STATE(3740)] = 112282, - [SMALL_STATE(3741)] = 112299, - [SMALL_STATE(3742)] = 112320, - [SMALL_STATE(3743)] = 112341, - [SMALL_STATE(3744)] = 112366, - [SMALL_STATE(3745)] = 112391, - [SMALL_STATE(3746)] = 112416, - [SMALL_STATE(3747)] = 112437, - [SMALL_STATE(3748)] = 112460, - [SMALL_STATE(3749)] = 112483, - [SMALL_STATE(3750)] = 112506, - [SMALL_STATE(3751)] = 112527, - [SMALL_STATE(3752)] = 112548, - [SMALL_STATE(3753)] = 112571, - [SMALL_STATE(3754)] = 112590, - [SMALL_STATE(3755)] = 112609, - [SMALL_STATE(3756)] = 112630, - [SMALL_STATE(3757)] = 112651, - [SMALL_STATE(3758)] = 112672, - [SMALL_STATE(3759)] = 112691, - [SMALL_STATE(3760)] = 112710, - [SMALL_STATE(3761)] = 112733, - [SMALL_STATE(3762)] = 112756, - [SMALL_STATE(3763)] = 112781, - [SMALL_STATE(3764)] = 112804, - [SMALL_STATE(3765)] = 112827, - [SMALL_STATE(3766)] = 112848, - [SMALL_STATE(3767)] = 112869, - [SMALL_STATE(3768)] = 112894, - [SMALL_STATE(3769)] = 112913, - [SMALL_STATE(3770)] = 112932, - [SMALL_STATE(3771)] = 112957, - [SMALL_STATE(3772)] = 112980, - [SMALL_STATE(3773)] = 113005, - [SMALL_STATE(3774)] = 113030, - [SMALL_STATE(3775)] = 113053, - [SMALL_STATE(3776)] = 113078, - [SMALL_STATE(3777)] = 113103, - [SMALL_STATE(3778)] = 113128, - [SMALL_STATE(3779)] = 113151, - [SMALL_STATE(3780)] = 113176, - [SMALL_STATE(3781)] = 113197, - [SMALL_STATE(3782)] = 113220, - [SMALL_STATE(3783)] = 113243, - [SMALL_STATE(3784)] = 113266, - [SMALL_STATE(3785)] = 113291, - [SMALL_STATE(3786)] = 113314, - [SMALL_STATE(3787)] = 113339, - [SMALL_STATE(3788)] = 113362, - [SMALL_STATE(3789)] = 113385, - [SMALL_STATE(3790)] = 113408, - [SMALL_STATE(3791)] = 113431, - [SMALL_STATE(3792)] = 113446, - [SMALL_STATE(3793)] = 113471, - [SMALL_STATE(3794)] = 113490, - [SMALL_STATE(3795)] = 113515, - [SMALL_STATE(3796)] = 113530, - [SMALL_STATE(3797)] = 113545, - [SMALL_STATE(3798)] = 113566, - [SMALL_STATE(3799)] = 113581, - [SMALL_STATE(3800)] = 113596, - [SMALL_STATE(3801)] = 113611, - [SMALL_STATE(3802)] = 113630, - [SMALL_STATE(3803)] = 113655, - [SMALL_STATE(3804)] = 113674, - [SMALL_STATE(3805)] = 113699, - [SMALL_STATE(3806)] = 113722, - [SMALL_STATE(3807)] = 113745, - [SMALL_STATE(3808)] = 113766, - [SMALL_STATE(3809)] = 113787, - [SMALL_STATE(3810)] = 113808, - [SMALL_STATE(3811)] = 113827, - [SMALL_STATE(3812)] = 113848, - [SMALL_STATE(3813)] = 113867, - [SMALL_STATE(3814)] = 113886, - [SMALL_STATE(3815)] = 113907, - [SMALL_STATE(3816)] = 113932, - [SMALL_STATE(3817)] = 113957, - [SMALL_STATE(3818)] = 113980, - [SMALL_STATE(3819)] = 114001, - [SMALL_STATE(3820)] = 114024, - [SMALL_STATE(3821)] = 114049, - [SMALL_STATE(3822)] = 114072, - [SMALL_STATE(3823)] = 114095, - [SMALL_STATE(3824)] = 114118, - [SMALL_STATE(3825)] = 114141, - [SMALL_STATE(3826)] = 114164, - [SMALL_STATE(3827)] = 114187, - [SMALL_STATE(3828)] = 114210, - [SMALL_STATE(3829)] = 114233, - [SMALL_STATE(3830)] = 114256, - [SMALL_STATE(3831)] = 114279, - [SMALL_STATE(3832)] = 114302, - [SMALL_STATE(3833)] = 114325, - [SMALL_STATE(3834)] = 114348, - [SMALL_STATE(3835)] = 114371, - [SMALL_STATE(3836)] = 114394, - [SMALL_STATE(3837)] = 114419, - [SMALL_STATE(3838)] = 114442, - [SMALL_STATE(3839)] = 114463, - [SMALL_STATE(3840)] = 114486, - [SMALL_STATE(3841)] = 114509, - [SMALL_STATE(3842)] = 114532, - [SMALL_STATE(3843)] = 114555, - [SMALL_STATE(3844)] = 114576, - [SMALL_STATE(3845)] = 114597, - [SMALL_STATE(3846)] = 114616, - [SMALL_STATE(3847)] = 114637, - [SMALL_STATE(3848)] = 114662, - [SMALL_STATE(3849)] = 114683, - [SMALL_STATE(3850)] = 114702, - [SMALL_STATE(3851)] = 114721, - [SMALL_STATE(3852)] = 114742, - [SMALL_STATE(3853)] = 114761, - [SMALL_STATE(3854)] = 114782, - [SMALL_STATE(3855)] = 114799, - [SMALL_STATE(3856)] = 114816, - [SMALL_STATE(3857)] = 114833, - [SMALL_STATE(3858)] = 114856, - [SMALL_STATE(3859)] = 114879, - [SMALL_STATE(3860)] = 114902, - [SMALL_STATE(3861)] = 114923, - [SMALL_STATE(3862)] = 114944, - [SMALL_STATE(3863)] = 114965, - [SMALL_STATE(3864)] = 114986, - [SMALL_STATE(3865)] = 115009, - [SMALL_STATE(3866)] = 115034, - [SMALL_STATE(3867)] = 115059, - [SMALL_STATE(3868)] = 115084, - [SMALL_STATE(3869)] = 115105, - [SMALL_STATE(3870)] = 115126, - [SMALL_STATE(3871)] = 115147, - [SMALL_STATE(3872)] = 115166, - [SMALL_STATE(3873)] = 115187, - [SMALL_STATE(3874)] = 115206, - [SMALL_STATE(3875)] = 115227, - [SMALL_STATE(3876)] = 115246, - [SMALL_STATE(3877)] = 115271, - [SMALL_STATE(3878)] = 115296, - [SMALL_STATE(3879)] = 115321, - [SMALL_STATE(3880)] = 115340, - [SMALL_STATE(3881)] = 115361, - [SMALL_STATE(3882)] = 115386, - [SMALL_STATE(3883)] = 115411, - [SMALL_STATE(3884)] = 115430, - [SMALL_STATE(3885)] = 115446, - [SMALL_STATE(3886)] = 115466, - [SMALL_STATE(3887)] = 115486, - [SMALL_STATE(3888)] = 115508, - [SMALL_STATE(3889)] = 115522, - [SMALL_STATE(3890)] = 115538, - [SMALL_STATE(3891)] = 115554, - [SMALL_STATE(3892)] = 115568, - [SMALL_STATE(3893)] = 115588, - [SMALL_STATE(3894)] = 115610, - [SMALL_STATE(3895)] = 115624, - [SMALL_STATE(3896)] = 115638, - [SMALL_STATE(3897)] = 115660, - [SMALL_STATE(3898)] = 115682, - [SMALL_STATE(3899)] = 115696, - [SMALL_STATE(3900)] = 115718, - [SMALL_STATE(3901)] = 115734, - [SMALL_STATE(3902)] = 115754, - [SMALL_STATE(3903)] = 115772, - [SMALL_STATE(3904)] = 115790, - [SMALL_STATE(3905)] = 115806, - [SMALL_STATE(3906)] = 115828, - [SMALL_STATE(3907)] = 115850, - [SMALL_STATE(3908)] = 115872, - [SMALL_STATE(3909)] = 115888, - [SMALL_STATE(3910)] = 115904, - [SMALL_STATE(3911)] = 115926, - [SMALL_STATE(3912)] = 115946, - [SMALL_STATE(3913)] = 115966, - [SMALL_STATE(3914)] = 115988, - [SMALL_STATE(3915)] = 116004, - [SMALL_STATE(3916)] = 116026, - [SMALL_STATE(3917)] = 116044, - [SMALL_STATE(3918)] = 116066, - [SMALL_STATE(3919)] = 116084, - [SMALL_STATE(3920)] = 116100, - [SMALL_STATE(3921)] = 116122, - [SMALL_STATE(3922)] = 116138, - [SMALL_STATE(3923)] = 116158, - [SMALL_STATE(3924)] = 116174, - [SMALL_STATE(3925)] = 116192, - [SMALL_STATE(3926)] = 116210, - [SMALL_STATE(3927)] = 116226, - [SMALL_STATE(3928)] = 116246, - [SMALL_STATE(3929)] = 116266, - [SMALL_STATE(3930)] = 116282, - [SMALL_STATE(3931)] = 116302, - [SMALL_STATE(3932)] = 116318, - [SMALL_STATE(3933)] = 116338, - [SMALL_STATE(3934)] = 116360, - [SMALL_STATE(3935)] = 116380, - [SMALL_STATE(3936)] = 116396, - [SMALL_STATE(3937)] = 116412, - [SMALL_STATE(3938)] = 116432, - [SMALL_STATE(3939)] = 116452, - [SMALL_STATE(3940)] = 116474, - [SMALL_STATE(3941)] = 116496, - [SMALL_STATE(3942)] = 116516, - [SMALL_STATE(3943)] = 116534, - [SMALL_STATE(3944)] = 116554, - [SMALL_STATE(3945)] = 116574, - [SMALL_STATE(3946)] = 116594, - [SMALL_STATE(3947)] = 116610, - [SMALL_STATE(3948)] = 116626, - [SMALL_STATE(3949)] = 116642, - [SMALL_STATE(3950)] = 116658, - [SMALL_STATE(3951)] = 116674, - [SMALL_STATE(3952)] = 116692, - [SMALL_STATE(3953)] = 116706, - [SMALL_STATE(3954)] = 116724, - [SMALL_STATE(3955)] = 116744, - [SMALL_STATE(3956)] = 116764, - [SMALL_STATE(3957)] = 116786, - [SMALL_STATE(3958)] = 116808, - [SMALL_STATE(3959)] = 116826, - [SMALL_STATE(3960)] = 116844, - [SMALL_STATE(3961)] = 116866, - [SMALL_STATE(3962)] = 116886, - [SMALL_STATE(3963)] = 116902, - [SMALL_STATE(3964)] = 116920, - [SMALL_STATE(3965)] = 116936, - [SMALL_STATE(3966)] = 116956, - [SMALL_STATE(3967)] = 116976, - [SMALL_STATE(3968)] = 116998, - [SMALL_STATE(3969)] = 117018, - [SMALL_STATE(3970)] = 117038, - [SMALL_STATE(3971)] = 117056, - [SMALL_STATE(3972)] = 117072, - [SMALL_STATE(3973)] = 117088, - [SMALL_STATE(3974)] = 117104, - [SMALL_STATE(3975)] = 117124, - [SMALL_STATE(3976)] = 117146, - [SMALL_STATE(3977)] = 117166, - [SMALL_STATE(3978)] = 117186, - [SMALL_STATE(3979)] = 117208, - [SMALL_STATE(3980)] = 117228, - [SMALL_STATE(3981)] = 117250, - [SMALL_STATE(3982)] = 117272, - [SMALL_STATE(3983)] = 117294, - [SMALL_STATE(3984)] = 117312, - [SMALL_STATE(3985)] = 117330, - [SMALL_STATE(3986)] = 117348, - [SMALL_STATE(3987)] = 117368, - [SMALL_STATE(3988)] = 117390, - [SMALL_STATE(3989)] = 117412, - [SMALL_STATE(3990)] = 117430, - [SMALL_STATE(3991)] = 117446, - [SMALL_STATE(3992)] = 117466, - [SMALL_STATE(3993)] = 117488, - [SMALL_STATE(3994)] = 117504, - [SMALL_STATE(3995)] = 117526, - [SMALL_STATE(3996)] = 117544, - [SMALL_STATE(3997)] = 117564, - [SMALL_STATE(3998)] = 117582, - [SMALL_STATE(3999)] = 117602, - [SMALL_STATE(4000)] = 117622, - [SMALL_STATE(4001)] = 117642, - [SMALL_STATE(4002)] = 117656, - [SMALL_STATE(4003)] = 117674, - [SMALL_STATE(4004)] = 117694, - [SMALL_STATE(4005)] = 117714, - [SMALL_STATE(4006)] = 117734, - [SMALL_STATE(4007)] = 117754, - [SMALL_STATE(4008)] = 117768, - [SMALL_STATE(4009)] = 117788, - [SMALL_STATE(4010)] = 117808, - [SMALL_STATE(4011)] = 117828, - [SMALL_STATE(4012)] = 117848, - [SMALL_STATE(4013)] = 117868, - [SMALL_STATE(4014)] = 117888, - [SMALL_STATE(4015)] = 117910, - [SMALL_STATE(4016)] = 117926, - [SMALL_STATE(4017)] = 117942, - [SMALL_STATE(4018)] = 117958, - [SMALL_STATE(4019)] = 117974, - [SMALL_STATE(4020)] = 117996, - [SMALL_STATE(4021)] = 118016, - [SMALL_STATE(4022)] = 118038, - [SMALL_STATE(4023)] = 118060, - [SMALL_STATE(4024)] = 118082, - [SMALL_STATE(4025)] = 118098, - [SMALL_STATE(4026)] = 118118, - [SMALL_STATE(4027)] = 118138, - [SMALL_STATE(4028)] = 118158, - [SMALL_STATE(4029)] = 118180, - [SMALL_STATE(4030)] = 118198, - [SMALL_STATE(4031)] = 118214, - [SMALL_STATE(4032)] = 118234, - [SMALL_STATE(4033)] = 118252, - [SMALL_STATE(4034)] = 118272, - [SMALL_STATE(4035)] = 118294, - [SMALL_STATE(4036)] = 118312, - [SMALL_STATE(4037)] = 118332, - [SMALL_STATE(4038)] = 118352, - [SMALL_STATE(4039)] = 118370, - [SMALL_STATE(4040)] = 118388, - [SMALL_STATE(4041)] = 118410, - [SMALL_STATE(4042)] = 118432, - [SMALL_STATE(4043)] = 118452, - [SMALL_STATE(4044)] = 118470, - [SMALL_STATE(4045)] = 118488, - [SMALL_STATE(4046)] = 118510, - [SMALL_STATE(4047)] = 118532, - [SMALL_STATE(4048)] = 118554, - [SMALL_STATE(4049)] = 118573, - [SMALL_STATE(4050)] = 118586, - [SMALL_STATE(4051)] = 118599, - [SMALL_STATE(4052)] = 118618, - [SMALL_STATE(4053)] = 118631, - [SMALL_STATE(4054)] = 118644, - [SMALL_STATE(4055)] = 118657, - [SMALL_STATE(4056)] = 118672, - [SMALL_STATE(4057)] = 118687, - [SMALL_STATE(4058)] = 118702, - [SMALL_STATE(4059)] = 118717, - [SMALL_STATE(4060)] = 118736, - [SMALL_STATE(4061)] = 118749, - [SMALL_STATE(4062)] = 118764, - [SMALL_STATE(4063)] = 118779, - [SMALL_STATE(4064)] = 118792, - [SMALL_STATE(4065)] = 118807, - [SMALL_STATE(4066)] = 118824, - [SMALL_STATE(4067)] = 118841, - [SMALL_STATE(4068)] = 118854, - [SMALL_STATE(4069)] = 118867, - [SMALL_STATE(4070)] = 118880, - [SMALL_STATE(4071)] = 118893, - [SMALL_STATE(4072)] = 118908, - [SMALL_STATE(4073)] = 118923, - [SMALL_STATE(4074)] = 118938, - [SMALL_STATE(4075)] = 118953, - [SMALL_STATE(4076)] = 118968, - [SMALL_STATE(4077)] = 118981, - [SMALL_STATE(4078)] = 118998, - [SMALL_STATE(4079)] = 119011, - [SMALL_STATE(4080)] = 119026, - [SMALL_STATE(4081)] = 119039, - [SMALL_STATE(4082)] = 119052, - [SMALL_STATE(4083)] = 119065, - [SMALL_STATE(4084)] = 119078, - [SMALL_STATE(4085)] = 119097, - [SMALL_STATE(4086)] = 119110, - [SMALL_STATE(4087)] = 119123, - [SMALL_STATE(4088)] = 119138, - [SMALL_STATE(4089)] = 119155, - [SMALL_STATE(4090)] = 119170, - [SMALL_STATE(4091)] = 119183, - [SMALL_STATE(4092)] = 119196, - [SMALL_STATE(4093)] = 119215, - [SMALL_STATE(4094)] = 119228, - [SMALL_STATE(4095)] = 119241, - [SMALL_STATE(4096)] = 119254, - [SMALL_STATE(4097)] = 119269, - [SMALL_STATE(4098)] = 119288, - [SMALL_STATE(4099)] = 119301, - [SMALL_STATE(4100)] = 119314, - [SMALL_STATE(4101)] = 119329, - [SMALL_STATE(4102)] = 119342, - [SMALL_STATE(4103)] = 119357, - [SMALL_STATE(4104)] = 119376, - [SMALL_STATE(4105)] = 119391, - [SMALL_STATE(4106)] = 119406, - [SMALL_STATE(4107)] = 119421, - [SMALL_STATE(4108)] = 119436, - [SMALL_STATE(4109)] = 119449, - [SMALL_STATE(4110)] = 119464, - [SMALL_STATE(4111)] = 119477, - [SMALL_STATE(4112)] = 119490, - [SMALL_STATE(4113)] = 119505, - [SMALL_STATE(4114)] = 119520, - [SMALL_STATE(4115)] = 119539, - [SMALL_STATE(4116)] = 119554, - [SMALL_STATE(4117)] = 119569, - [SMALL_STATE(4118)] = 119584, - [SMALL_STATE(4119)] = 119599, - [SMALL_STATE(4120)] = 119614, - [SMALL_STATE(4121)] = 119629, - [SMALL_STATE(4122)] = 119644, - [SMALL_STATE(4123)] = 119659, - [SMALL_STATE(4124)] = 119674, - [SMALL_STATE(4125)] = 119689, - [SMALL_STATE(4126)] = 119704, - [SMALL_STATE(4127)] = 119723, - [SMALL_STATE(4128)] = 119738, - [SMALL_STATE(4129)] = 119757, - [SMALL_STATE(4130)] = 119770, - [SMALL_STATE(4131)] = 119789, - [SMALL_STATE(4132)] = 119808, - [SMALL_STATE(4133)] = 119827, - [SMALL_STATE(4134)] = 119844, - [SMALL_STATE(4135)] = 119861, - [SMALL_STATE(4136)] = 119878, - [SMALL_STATE(4137)] = 119891, - [SMALL_STATE(4138)] = 119904, - [SMALL_STATE(4139)] = 119923, - [SMALL_STATE(4140)] = 119940, - [SMALL_STATE(4141)] = 119953, - [SMALL_STATE(4142)] = 119966, - [SMALL_STATE(4143)] = 119979, - [SMALL_STATE(4144)] = 119998, - [SMALL_STATE(4145)] = 120011, - [SMALL_STATE(4146)] = 120030, - [SMALL_STATE(4147)] = 120045, - [SMALL_STATE(4148)] = 120064, - [SMALL_STATE(4149)] = 120083, - [SMALL_STATE(4150)] = 120096, - [SMALL_STATE(4151)] = 120109, - [SMALL_STATE(4152)] = 120122, - [SMALL_STATE(4153)] = 120139, - [SMALL_STATE(4154)] = 120152, - [SMALL_STATE(4155)] = 120169, - [SMALL_STATE(4156)] = 120182, - [SMALL_STATE(4157)] = 120195, - [SMALL_STATE(4158)] = 120210, - [SMALL_STATE(4159)] = 120225, - [SMALL_STATE(4160)] = 120244, - [SMALL_STATE(4161)] = 120257, - [SMALL_STATE(4162)] = 120270, - [SMALL_STATE(4163)] = 120283, - [SMALL_STATE(4164)] = 120298, - [SMALL_STATE(4165)] = 120311, - [SMALL_STATE(4166)] = 120326, - [SMALL_STATE(4167)] = 120345, - [SMALL_STATE(4168)] = 120362, - [SMALL_STATE(4169)] = 120375, - [SMALL_STATE(4170)] = 120388, - [SMALL_STATE(4171)] = 120401, - [SMALL_STATE(4172)] = 120420, - [SMALL_STATE(4173)] = 120433, - [SMALL_STATE(4174)] = 120452, - [SMALL_STATE(4175)] = 120471, - [SMALL_STATE(4176)] = 120484, - [SMALL_STATE(4177)] = 120499, - [SMALL_STATE(4178)] = 120518, - [SMALL_STATE(4179)] = 120535, - [SMALL_STATE(4180)] = 120552, - [SMALL_STATE(4181)] = 120565, - [SMALL_STATE(4182)] = 120580, - [SMALL_STATE(4183)] = 120599, - [SMALL_STATE(4184)] = 120616, - [SMALL_STATE(4185)] = 120635, - [SMALL_STATE(4186)] = 120652, - [SMALL_STATE(4187)] = 120669, - [SMALL_STATE(4188)] = 120682, - [SMALL_STATE(4189)] = 120699, - [SMALL_STATE(4190)] = 120718, - [SMALL_STATE(4191)] = 120735, - [SMALL_STATE(4192)] = 120752, - [SMALL_STATE(4193)] = 120769, - [SMALL_STATE(4194)] = 120782, - [SMALL_STATE(4195)] = 120799, - [SMALL_STATE(4196)] = 120814, - [SMALL_STATE(4197)] = 120833, - [SMALL_STATE(4198)] = 120848, - [SMALL_STATE(4199)] = 120865, - [SMALL_STATE(4200)] = 120880, - [SMALL_STATE(4201)] = 120899, - [SMALL_STATE(4202)] = 120912, - [SMALL_STATE(4203)] = 120925, - [SMALL_STATE(4204)] = 120944, - [SMALL_STATE(4205)] = 120957, - [SMALL_STATE(4206)] = 120972, - [SMALL_STATE(4207)] = 120987, - [SMALL_STATE(4208)] = 121004, - [SMALL_STATE(4209)] = 121023, - [SMALL_STATE(4210)] = 121038, - [SMALL_STATE(4211)] = 121053, - [SMALL_STATE(4212)] = 121066, - [SMALL_STATE(4213)] = 121079, - [SMALL_STATE(4214)] = 121092, - [SMALL_STATE(4215)] = 121107, - [SMALL_STATE(4216)] = 121122, - [SMALL_STATE(4217)] = 121141, - [SMALL_STATE(4218)] = 121154, - [SMALL_STATE(4219)] = 121169, - [SMALL_STATE(4220)] = 121184, - [SMALL_STATE(4221)] = 121197, - [SMALL_STATE(4222)] = 121212, - [SMALL_STATE(4223)] = 121231, - [SMALL_STATE(4224)] = 121246, - [SMALL_STATE(4225)] = 121259, - [SMALL_STATE(4226)] = 121272, - [SMALL_STATE(4227)] = 121285, - [SMALL_STATE(4228)] = 121298, - [SMALL_STATE(4229)] = 121311, - [SMALL_STATE(4230)] = 121330, - [SMALL_STATE(4231)] = 121343, - [SMALL_STATE(4232)] = 121356, - [SMALL_STATE(4233)] = 121373, - [SMALL_STATE(4234)] = 121386, - [SMALL_STATE(4235)] = 121401, - [SMALL_STATE(4236)] = 121420, - [SMALL_STATE(4237)] = 121439, - [SMALL_STATE(4238)] = 121452, - [SMALL_STATE(4239)] = 121471, - [SMALL_STATE(4240)] = 121490, - [SMALL_STATE(4241)] = 121503, - [SMALL_STATE(4242)] = 121516, - [SMALL_STATE(4243)] = 121529, - [SMALL_STATE(4244)] = 121542, - [SMALL_STATE(4245)] = 121555, - [SMALL_STATE(4246)] = 121570, - [SMALL_STATE(4247)] = 121583, - [SMALL_STATE(4248)] = 121602, - [SMALL_STATE(4249)] = 121615, - [SMALL_STATE(4250)] = 121634, - [SMALL_STATE(4251)] = 121647, - [SMALL_STATE(4252)] = 121660, - [SMALL_STATE(4253)] = 121673, - [SMALL_STATE(4254)] = 121692, - [SMALL_STATE(4255)] = 121705, - [SMALL_STATE(4256)] = 121722, - [SMALL_STATE(4257)] = 121741, - [SMALL_STATE(4258)] = 121754, - [SMALL_STATE(4259)] = 121771, - [SMALL_STATE(4260)] = 121784, - [SMALL_STATE(4261)] = 121803, - [SMALL_STATE(4262)] = 121820, - [SMALL_STATE(4263)] = 121839, - [SMALL_STATE(4264)] = 121858, - [SMALL_STATE(4265)] = 121875, - [SMALL_STATE(4266)] = 121888, - [SMALL_STATE(4267)] = 121901, - [SMALL_STATE(4268)] = 121920, - [SMALL_STATE(4269)] = 121933, - [SMALL_STATE(4270)] = 121946, - [SMALL_STATE(4271)] = 121959, - [SMALL_STATE(4272)] = 121978, - [SMALL_STATE(4273)] = 121997, - [SMALL_STATE(4274)] = 122016, - [SMALL_STATE(4275)] = 122029, - [SMALL_STATE(4276)] = 122048, - [SMALL_STATE(4277)] = 122061, - [SMALL_STATE(4278)] = 122080, - [SMALL_STATE(4279)] = 122097, - [SMALL_STATE(4280)] = 122116, - [SMALL_STATE(4281)] = 122135, - [SMALL_STATE(4282)] = 122148, - [SMALL_STATE(4283)] = 122163, - [SMALL_STATE(4284)] = 122176, - [SMALL_STATE(4285)] = 122191, - [SMALL_STATE(4286)] = 122204, - [SMALL_STATE(4287)] = 122223, - [SMALL_STATE(4288)] = 122236, - [SMALL_STATE(4289)] = 122249, - [SMALL_STATE(4290)] = 122262, - [SMALL_STATE(4291)] = 122279, - [SMALL_STATE(4292)] = 122294, - [SMALL_STATE(4293)] = 122309, - [SMALL_STATE(4294)] = 122322, - [SMALL_STATE(4295)] = 122335, - [SMALL_STATE(4296)] = 122352, - [SMALL_STATE(4297)] = 122369, - [SMALL_STATE(4298)] = 122382, - [SMALL_STATE(4299)] = 122401, - [SMALL_STATE(4300)] = 122414, - [SMALL_STATE(4301)] = 122433, - [SMALL_STATE(4302)] = 122448, - [SMALL_STATE(4303)] = 122461, - [SMALL_STATE(4304)] = 122476, - [SMALL_STATE(4305)] = 122489, - [SMALL_STATE(4306)] = 122506, - [SMALL_STATE(4307)] = 122521, - [SMALL_STATE(4308)] = 122534, - [SMALL_STATE(4309)] = 122551, - [SMALL_STATE(4310)] = 122564, - [SMALL_STATE(4311)] = 122579, - [SMALL_STATE(4312)] = 122592, - [SMALL_STATE(4313)] = 122611, - [SMALL_STATE(4314)] = 122624, - [SMALL_STATE(4315)] = 122639, - [SMALL_STATE(4316)] = 122652, - [SMALL_STATE(4317)] = 122665, - [SMALL_STATE(4318)] = 122680, - [SMALL_STATE(4319)] = 122695, - [SMALL_STATE(4320)] = 122712, - [SMALL_STATE(4321)] = 122725, - [SMALL_STATE(4322)] = 122738, - [SMALL_STATE(4323)] = 122751, - [SMALL_STATE(4324)] = 122768, - [SMALL_STATE(4325)] = 122781, - [SMALL_STATE(4326)] = 122794, - [SMALL_STATE(4327)] = 122807, - [SMALL_STATE(4328)] = 122820, - [SMALL_STATE(4329)] = 122833, - [SMALL_STATE(4330)] = 122846, - [SMALL_STATE(4331)] = 122859, - [SMALL_STATE(4332)] = 122872, - [SMALL_STATE(4333)] = 122885, - [SMALL_STATE(4334)] = 122898, - [SMALL_STATE(4335)] = 122911, - [SMALL_STATE(4336)] = 122926, - [SMALL_STATE(4337)] = 122939, - [SMALL_STATE(4338)] = 122952, - [SMALL_STATE(4339)] = 122965, - [SMALL_STATE(4340)] = 122978, - [SMALL_STATE(4341)] = 122991, - [SMALL_STATE(4342)] = 123004, - [SMALL_STATE(4343)] = 123019, - [SMALL_STATE(4344)] = 123032, - [SMALL_STATE(4345)] = 123049, - [SMALL_STATE(4346)] = 123062, - [SMALL_STATE(4347)] = 123075, - [SMALL_STATE(4348)] = 123088, - [SMALL_STATE(4349)] = 123101, - [SMALL_STATE(4350)] = 123116, - [SMALL_STATE(4351)] = 123135, - [SMALL_STATE(4352)] = 123148, - [SMALL_STATE(4353)] = 123167, - [SMALL_STATE(4354)] = 123182, - [SMALL_STATE(4355)] = 123201, - [SMALL_STATE(4356)] = 123220, - [SMALL_STATE(4357)] = 123239, - [SMALL_STATE(4358)] = 123258, - [SMALL_STATE(4359)] = 123277, - [SMALL_STATE(4360)] = 123296, - [SMALL_STATE(4361)] = 123315, - [SMALL_STATE(4362)] = 123334, - [SMALL_STATE(4363)] = 123353, - [SMALL_STATE(4364)] = 123372, - [SMALL_STATE(4365)] = 123385, - [SMALL_STATE(4366)] = 123402, - [SMALL_STATE(4367)] = 123415, - [SMALL_STATE(4368)] = 123431, - [SMALL_STATE(4369)] = 123443, - [SMALL_STATE(4370)] = 123455, - [SMALL_STATE(4371)] = 123467, - [SMALL_STATE(4372)] = 123479, - [SMALL_STATE(4373)] = 123491, - [SMALL_STATE(4374)] = 123507, - [SMALL_STATE(4375)] = 123523, - [SMALL_STATE(4376)] = 123537, - [SMALL_STATE(4377)] = 123549, - [SMALL_STATE(4378)] = 123563, - [SMALL_STATE(4379)] = 123579, - [SMALL_STATE(4380)] = 123591, - [SMALL_STATE(4381)] = 123605, - [SMALL_STATE(4382)] = 123621, - [SMALL_STATE(4383)] = 123633, - [SMALL_STATE(4384)] = 123645, - [SMALL_STATE(4385)] = 123657, - [SMALL_STATE(4386)] = 123669, - [SMALL_STATE(4387)] = 123685, - [SMALL_STATE(4388)] = 123697, - [SMALL_STATE(4389)] = 123713, - [SMALL_STATE(4390)] = 123725, - [SMALL_STATE(4391)] = 123737, - [SMALL_STATE(4392)] = 123753, - [SMALL_STATE(4393)] = 123765, - [SMALL_STATE(4394)] = 123781, - [SMALL_STATE(4395)] = 123793, - [SMALL_STATE(4396)] = 123805, - [SMALL_STATE(4397)] = 123819, - [SMALL_STATE(4398)] = 123831, - [SMALL_STATE(4399)] = 123845, - [SMALL_STATE(4400)] = 123857, - [SMALL_STATE(4401)] = 123869, - [SMALL_STATE(4402)] = 123885, - [SMALL_STATE(4403)] = 123901, - [SMALL_STATE(4404)] = 123913, - [SMALL_STATE(4405)] = 123929, - [SMALL_STATE(4406)] = 123941, - [SMALL_STATE(4407)] = 123953, - [SMALL_STATE(4408)] = 123969, - [SMALL_STATE(4409)] = 123985, - [SMALL_STATE(4410)] = 123997, - [SMALL_STATE(4411)] = 124009, - [SMALL_STATE(4412)] = 124023, - [SMALL_STATE(4413)] = 124035, - [SMALL_STATE(4414)] = 124051, - [SMALL_STATE(4415)] = 124065, - [SMALL_STATE(4416)] = 124077, - [SMALL_STATE(4417)] = 124089, - [SMALL_STATE(4418)] = 124101, - [SMALL_STATE(4419)] = 124113, - [SMALL_STATE(4420)] = 124125, - [SMALL_STATE(4421)] = 124137, - [SMALL_STATE(4422)] = 124149, - [SMALL_STATE(4423)] = 124161, - [SMALL_STATE(4424)] = 124177, - [SMALL_STATE(4425)] = 124191, - [SMALL_STATE(4426)] = 124205, - [SMALL_STATE(4427)] = 124219, - [SMALL_STATE(4428)] = 124231, - [SMALL_STATE(4429)] = 124247, - [SMALL_STATE(4430)] = 124259, - [SMALL_STATE(4431)] = 124271, - [SMALL_STATE(4432)] = 124287, - [SMALL_STATE(4433)] = 124299, - [SMALL_STATE(4434)] = 124311, - [SMALL_STATE(4435)] = 124323, - [SMALL_STATE(4436)] = 124335, - [SMALL_STATE(4437)] = 124349, - [SMALL_STATE(4438)] = 124361, - [SMALL_STATE(4439)] = 124377, - [SMALL_STATE(4440)] = 124393, - [SMALL_STATE(4441)] = 124405, - [SMALL_STATE(4442)] = 124421, - [SMALL_STATE(4443)] = 124433, - [SMALL_STATE(4444)] = 124445, - [SMALL_STATE(4445)] = 124457, - [SMALL_STATE(4446)] = 124473, - [SMALL_STATE(4447)] = 124489, - [SMALL_STATE(4448)] = 124505, - [SMALL_STATE(4449)] = 124521, - [SMALL_STATE(4450)] = 124537, - [SMALL_STATE(4451)] = 124553, - [SMALL_STATE(4452)] = 124569, - [SMALL_STATE(4453)] = 124583, - [SMALL_STATE(4454)] = 124597, - [SMALL_STATE(4455)] = 124611, - [SMALL_STATE(4456)] = 124623, - [SMALL_STATE(4457)] = 124635, - [SMALL_STATE(4458)] = 124647, - [SMALL_STATE(4459)] = 124659, - [SMALL_STATE(4460)] = 124671, - [SMALL_STATE(4461)] = 124683, - [SMALL_STATE(4462)] = 124697, - [SMALL_STATE(4463)] = 124709, - [SMALL_STATE(4464)] = 124721, - [SMALL_STATE(4465)] = 124735, - [SMALL_STATE(4466)] = 124751, - [SMALL_STATE(4467)] = 124763, - [SMALL_STATE(4468)] = 124777, - [SMALL_STATE(4469)] = 124793, - [SMALL_STATE(4470)] = 124809, - [SMALL_STATE(4471)] = 124823, - [SMALL_STATE(4472)] = 124839, - [SMALL_STATE(4473)] = 124855, - [SMALL_STATE(4474)] = 124871, - [SMALL_STATE(4475)] = 124887, - [SMALL_STATE(4476)] = 124903, - [SMALL_STATE(4477)] = 124917, - [SMALL_STATE(4478)] = 124931, - [SMALL_STATE(4479)] = 124945, - [SMALL_STATE(4480)] = 124959, - [SMALL_STATE(4481)] = 124973, - [SMALL_STATE(4482)] = 124985, - [SMALL_STATE(4483)] = 125001, - [SMALL_STATE(4484)] = 125015, - [SMALL_STATE(4485)] = 125031, - [SMALL_STATE(4486)] = 125047, - [SMALL_STATE(4487)] = 125059, - [SMALL_STATE(4488)] = 125071, - [SMALL_STATE(4489)] = 125083, - [SMALL_STATE(4490)] = 125095, - [SMALL_STATE(4491)] = 125111, - [SMALL_STATE(4492)] = 125125, - [SMALL_STATE(4493)] = 125137, - [SMALL_STATE(4494)] = 125153, - [SMALL_STATE(4495)] = 125165, - [SMALL_STATE(4496)] = 125177, - [SMALL_STATE(4497)] = 125193, - [SMALL_STATE(4498)] = 125209, - [SMALL_STATE(4499)] = 125225, - [SMALL_STATE(4500)] = 125241, - [SMALL_STATE(4501)] = 125253, - [SMALL_STATE(4502)] = 125269, - [SMALL_STATE(4503)] = 125283, - [SMALL_STATE(4504)] = 125295, - [SMALL_STATE(4505)] = 125307, - [SMALL_STATE(4506)] = 125321, - [SMALL_STATE(4507)] = 125335, - [SMALL_STATE(4508)] = 125347, - [SMALL_STATE(4509)] = 125359, - [SMALL_STATE(4510)] = 125375, - [SMALL_STATE(4511)] = 125389, - [SMALL_STATE(4512)] = 125403, - [SMALL_STATE(4513)] = 125419, - [SMALL_STATE(4514)] = 125433, - [SMALL_STATE(4515)] = 125447, - [SMALL_STATE(4516)] = 125461, - [SMALL_STATE(4517)] = 125475, - [SMALL_STATE(4518)] = 125489, - [SMALL_STATE(4519)] = 125501, - [SMALL_STATE(4520)] = 125513, - [SMALL_STATE(4521)] = 125527, - [SMALL_STATE(4522)] = 125539, - [SMALL_STATE(4523)] = 125553, - [SMALL_STATE(4524)] = 125565, - [SMALL_STATE(4525)] = 125581, - [SMALL_STATE(4526)] = 125593, - [SMALL_STATE(4527)] = 125609, - [SMALL_STATE(4528)] = 125621, - [SMALL_STATE(4529)] = 125633, - [SMALL_STATE(4530)] = 125645, - [SMALL_STATE(4531)] = 125659, - [SMALL_STATE(4532)] = 125675, - [SMALL_STATE(4533)] = 125687, - [SMALL_STATE(4534)] = 125699, - [SMALL_STATE(4535)] = 125711, - [SMALL_STATE(4536)] = 125723, - [SMALL_STATE(4537)] = 125737, - [SMALL_STATE(4538)] = 125749, - [SMALL_STATE(4539)] = 125761, - [SMALL_STATE(4540)] = 125777, - [SMALL_STATE(4541)] = 125791, - [SMALL_STATE(4542)] = 125807, - [SMALL_STATE(4543)] = 125823, - [SMALL_STATE(4544)] = 125839, - [SMALL_STATE(4545)] = 125853, - [SMALL_STATE(4546)] = 125865, - [SMALL_STATE(4547)] = 125877, - [SMALL_STATE(4548)] = 125889, - [SMALL_STATE(4549)] = 125901, - [SMALL_STATE(4550)] = 125917, - [SMALL_STATE(4551)] = 125929, - [SMALL_STATE(4552)] = 125945, - [SMALL_STATE(4553)] = 125961, - [SMALL_STATE(4554)] = 125973, - [SMALL_STATE(4555)] = 125987, - [SMALL_STATE(4556)] = 125999, - [SMALL_STATE(4557)] = 126013, - [SMALL_STATE(4558)] = 126029, - [SMALL_STATE(4559)] = 126045, - [SMALL_STATE(4560)] = 126061, - [SMALL_STATE(4561)] = 126073, - [SMALL_STATE(4562)] = 126085, - [SMALL_STATE(4563)] = 126097, - [SMALL_STATE(4564)] = 126109, - [SMALL_STATE(4565)] = 126121, - [SMALL_STATE(4566)] = 126133, - [SMALL_STATE(4567)] = 126149, - [SMALL_STATE(4568)] = 126161, - [SMALL_STATE(4569)] = 126177, - [SMALL_STATE(4570)] = 126193, - [SMALL_STATE(4571)] = 126209, - [SMALL_STATE(4572)] = 126225, - [SMALL_STATE(4573)] = 126239, - [SMALL_STATE(4574)] = 126255, - [SMALL_STATE(4575)] = 126269, - [SMALL_STATE(4576)] = 126285, - [SMALL_STATE(4577)] = 126301, - [SMALL_STATE(4578)] = 126317, - [SMALL_STATE(4579)] = 126333, - [SMALL_STATE(4580)] = 126349, - [SMALL_STATE(4581)] = 126365, - [SMALL_STATE(4582)] = 126381, - [SMALL_STATE(4583)] = 126393, - [SMALL_STATE(4584)] = 126409, - [SMALL_STATE(4585)] = 126425, - [SMALL_STATE(4586)] = 126437, - [SMALL_STATE(4587)] = 126453, - [SMALL_STATE(4588)] = 126465, - [SMALL_STATE(4589)] = 126481, - [SMALL_STATE(4590)] = 126493, - [SMALL_STATE(4591)] = 126509, - [SMALL_STATE(4592)] = 126523, - [SMALL_STATE(4593)] = 126535, - [SMALL_STATE(4594)] = 126551, - [SMALL_STATE(4595)] = 126567, - [SMALL_STATE(4596)] = 126583, - [SMALL_STATE(4597)] = 126597, - [SMALL_STATE(4598)] = 126609, - [SMALL_STATE(4599)] = 126625, - [SMALL_STATE(4600)] = 126637, - [SMALL_STATE(4601)] = 126653, - [SMALL_STATE(4602)] = 126669, - [SMALL_STATE(4603)] = 126681, - [SMALL_STATE(4604)] = 126697, - [SMALL_STATE(4605)] = 126709, - [SMALL_STATE(4606)] = 126725, - [SMALL_STATE(4607)] = 126739, - [SMALL_STATE(4608)] = 126755, - [SMALL_STATE(4609)] = 126771, - [SMALL_STATE(4610)] = 126787, - [SMALL_STATE(4611)] = 126803, - [SMALL_STATE(4612)] = 126815, - [SMALL_STATE(4613)] = 126827, - [SMALL_STATE(4614)] = 126843, - [SMALL_STATE(4615)] = 126859, - [SMALL_STATE(4616)] = 126875, - [SMALL_STATE(4617)] = 126887, - [SMALL_STATE(4618)] = 126899, - [SMALL_STATE(4619)] = 126915, - [SMALL_STATE(4620)] = 126927, - [SMALL_STATE(4621)] = 126941, - [SMALL_STATE(4622)] = 126957, - [SMALL_STATE(4623)] = 126970, - [SMALL_STATE(4624)] = 126981, - [SMALL_STATE(4625)] = 126992, - [SMALL_STATE(4626)] = 127005, - [SMALL_STATE(4627)] = 127018, - [SMALL_STATE(4628)] = 127031, - [SMALL_STATE(4629)] = 127044, - [SMALL_STATE(4630)] = 127057, - [SMALL_STATE(4631)] = 127070, - [SMALL_STATE(4632)] = 127083, - [SMALL_STATE(4633)] = 127096, - [SMALL_STATE(4634)] = 127109, - [SMALL_STATE(4635)] = 127122, - [SMALL_STATE(4636)] = 127135, - [SMALL_STATE(4637)] = 127148, - [SMALL_STATE(4638)] = 127161, - [SMALL_STATE(4639)] = 127174, - [SMALL_STATE(4640)] = 127187, - [SMALL_STATE(4641)] = 127198, - [SMALL_STATE(4642)] = 127209, - [SMALL_STATE(4643)] = 127222, - [SMALL_STATE(4644)] = 127235, - [SMALL_STATE(4645)] = 127248, - [SMALL_STATE(4646)] = 127261, - [SMALL_STATE(4647)] = 127274, - [SMALL_STATE(4648)] = 127287, - [SMALL_STATE(4649)] = 127300, - [SMALL_STATE(4650)] = 127313, - [SMALL_STATE(4651)] = 127324, - [SMALL_STATE(4652)] = 127337, - [SMALL_STATE(4653)] = 127350, - [SMALL_STATE(4654)] = 127363, - [SMALL_STATE(4655)] = 127376, - [SMALL_STATE(4656)] = 127389, - [SMALL_STATE(4657)] = 127402, - [SMALL_STATE(4658)] = 127415, - [SMALL_STATE(4659)] = 127428, - [SMALL_STATE(4660)] = 127441, - [SMALL_STATE(4661)] = 127454, - [SMALL_STATE(4662)] = 127467, - [SMALL_STATE(4663)] = 127480, - [SMALL_STATE(4664)] = 127493, - [SMALL_STATE(4665)] = 127506, - [SMALL_STATE(4666)] = 127519, - [SMALL_STATE(4667)] = 127532, - [SMALL_STATE(4668)] = 127545, - [SMALL_STATE(4669)] = 127558, - [SMALL_STATE(4670)] = 127571, - [SMALL_STATE(4671)] = 127584, - [SMALL_STATE(4672)] = 127597, - [SMALL_STATE(4673)] = 127610, - [SMALL_STATE(4674)] = 127623, - [SMALL_STATE(4675)] = 127636, - [SMALL_STATE(4676)] = 127649, - [SMALL_STATE(4677)] = 127662, - [SMALL_STATE(4678)] = 127675, - [SMALL_STATE(4679)] = 127688, - [SMALL_STATE(4680)] = 127701, - [SMALL_STATE(4681)] = 127714, - [SMALL_STATE(4682)] = 127727, - [SMALL_STATE(4683)] = 127740, - [SMALL_STATE(4684)] = 127753, - [SMALL_STATE(4685)] = 127766, - [SMALL_STATE(4686)] = 127779, - [SMALL_STATE(4687)] = 127792, - [SMALL_STATE(4688)] = 127805, - [SMALL_STATE(4689)] = 127818, - [SMALL_STATE(4690)] = 127831, - [SMALL_STATE(4691)] = 127844, - [SMALL_STATE(4692)] = 127857, - [SMALL_STATE(4693)] = 127870, - [SMALL_STATE(4694)] = 127883, - [SMALL_STATE(4695)] = 127896, - [SMALL_STATE(4696)] = 127909, - [SMALL_STATE(4697)] = 127922, - [SMALL_STATE(4698)] = 127935, - [SMALL_STATE(4699)] = 127948, - [SMALL_STATE(4700)] = 127961, - [SMALL_STATE(4701)] = 127974, - [SMALL_STATE(4702)] = 127987, - [SMALL_STATE(4703)] = 128000, - [SMALL_STATE(4704)] = 128013, - [SMALL_STATE(4705)] = 128026, - [SMALL_STATE(4706)] = 128039, - [SMALL_STATE(4707)] = 128052, - [SMALL_STATE(4708)] = 128065, - [SMALL_STATE(4709)] = 128078, - [SMALL_STATE(4710)] = 128091, - [SMALL_STATE(4711)] = 128104, - [SMALL_STATE(4712)] = 128117, - [SMALL_STATE(4713)] = 128128, - [SMALL_STATE(4714)] = 128141, - [SMALL_STATE(4715)] = 128154, - [SMALL_STATE(4716)] = 128167, - [SMALL_STATE(4717)] = 128180, - [SMALL_STATE(4718)] = 128193, - [SMALL_STATE(4719)] = 128206, - [SMALL_STATE(4720)] = 128219, - [SMALL_STATE(4721)] = 128232, - [SMALL_STATE(4722)] = 128245, - [SMALL_STATE(4723)] = 128258, - [SMALL_STATE(4724)] = 128271, - [SMALL_STATE(4725)] = 128284, - [SMALL_STATE(4726)] = 128297, - [SMALL_STATE(4727)] = 128310, - [SMALL_STATE(4728)] = 128323, - [SMALL_STATE(4729)] = 128336, - [SMALL_STATE(4730)] = 128349, - [SMALL_STATE(4731)] = 128362, - [SMALL_STATE(4732)] = 128375, - [SMALL_STATE(4733)] = 128388, - [SMALL_STATE(4734)] = 128399, - [SMALL_STATE(4735)] = 128412, - [SMALL_STATE(4736)] = 128423, - [SMALL_STATE(4737)] = 128436, - [SMALL_STATE(4738)] = 128449, - [SMALL_STATE(4739)] = 128462, - [SMALL_STATE(4740)] = 128475, - [SMALL_STATE(4741)] = 128488, - [SMALL_STATE(4742)] = 128501, - [SMALL_STATE(4743)] = 128514, - [SMALL_STATE(4744)] = 128525, - [SMALL_STATE(4745)] = 128538, - [SMALL_STATE(4746)] = 128551, - [SMALL_STATE(4747)] = 128564, - [SMALL_STATE(4748)] = 128577, - [SMALL_STATE(4749)] = 128590, - [SMALL_STATE(4750)] = 128603, - [SMALL_STATE(4751)] = 128616, - [SMALL_STATE(4752)] = 128629, - [SMALL_STATE(4753)] = 128642, - [SMALL_STATE(4754)] = 128655, - [SMALL_STATE(4755)] = 128668, - [SMALL_STATE(4756)] = 128681, - [SMALL_STATE(4757)] = 128694, - [SMALL_STATE(4758)] = 128707, - [SMALL_STATE(4759)] = 128720, - [SMALL_STATE(4760)] = 128733, - [SMALL_STATE(4761)] = 128746, - [SMALL_STATE(4762)] = 128759, - [SMALL_STATE(4763)] = 128772, - [SMALL_STATE(4764)] = 128785, - [SMALL_STATE(4765)] = 128798, - [SMALL_STATE(4766)] = 128811, - [SMALL_STATE(4767)] = 128822, - [SMALL_STATE(4768)] = 128835, - [SMALL_STATE(4769)] = 128848, - [SMALL_STATE(4770)] = 128861, - [SMALL_STATE(4771)] = 128874, - [SMALL_STATE(4772)] = 128887, - [SMALL_STATE(4773)] = 128900, - [SMALL_STATE(4774)] = 128913, - [SMALL_STATE(4775)] = 128926, - [SMALL_STATE(4776)] = 128939, - [SMALL_STATE(4777)] = 128952, - [SMALL_STATE(4778)] = 128965, - [SMALL_STATE(4779)] = 128978, - [SMALL_STATE(4780)] = 128991, - [SMALL_STATE(4781)] = 129004, - [SMALL_STATE(4782)] = 129017, - [SMALL_STATE(4783)] = 129030, - [SMALL_STATE(4784)] = 129043, - [SMALL_STATE(4785)] = 129056, - [SMALL_STATE(4786)] = 129069, - [SMALL_STATE(4787)] = 129082, - [SMALL_STATE(4788)] = 129095, - [SMALL_STATE(4789)] = 129108, - [SMALL_STATE(4790)] = 129121, - [SMALL_STATE(4791)] = 129134, - [SMALL_STATE(4792)] = 129144, - [SMALL_STATE(4793)] = 129154, - [SMALL_STATE(4794)] = 129164, - [SMALL_STATE(4795)] = 129174, - [SMALL_STATE(4796)] = 129184, - [SMALL_STATE(4797)] = 129194, - [SMALL_STATE(4798)] = 129204, - [SMALL_STATE(4799)] = 129214, - [SMALL_STATE(4800)] = 129224, - [SMALL_STATE(4801)] = 129234, - [SMALL_STATE(4802)] = 129244, - [SMALL_STATE(4803)] = 129254, - [SMALL_STATE(4804)] = 129264, - [SMALL_STATE(4805)] = 129274, - [SMALL_STATE(4806)] = 129284, - [SMALL_STATE(4807)] = 129294, - [SMALL_STATE(4808)] = 129304, - [SMALL_STATE(4809)] = 129314, - [SMALL_STATE(4810)] = 129324, - [SMALL_STATE(4811)] = 129334, - [SMALL_STATE(4812)] = 129344, - [SMALL_STATE(4813)] = 129354, - [SMALL_STATE(4814)] = 129364, - [SMALL_STATE(4815)] = 129374, - [SMALL_STATE(4816)] = 129384, - [SMALL_STATE(4817)] = 129394, - [SMALL_STATE(4818)] = 129404, - [SMALL_STATE(4819)] = 129414, - [SMALL_STATE(4820)] = 129424, - [SMALL_STATE(4821)] = 129434, - [SMALL_STATE(4822)] = 129444, - [SMALL_STATE(4823)] = 129454, - [SMALL_STATE(4824)] = 129464, - [SMALL_STATE(4825)] = 129474, - [SMALL_STATE(4826)] = 129484, - [SMALL_STATE(4827)] = 129494, - [SMALL_STATE(4828)] = 129504, - [SMALL_STATE(4829)] = 129514, - [SMALL_STATE(4830)] = 129524, - [SMALL_STATE(4831)] = 129534, - [SMALL_STATE(4832)] = 129544, - [SMALL_STATE(4833)] = 129554, - [SMALL_STATE(4834)] = 129564, - [SMALL_STATE(4835)] = 129574, - [SMALL_STATE(4836)] = 129584, - [SMALL_STATE(4837)] = 129594, - [SMALL_STATE(4838)] = 129604, - [SMALL_STATE(4839)] = 129614, - [SMALL_STATE(4840)] = 129624, - [SMALL_STATE(4841)] = 129634, - [SMALL_STATE(4842)] = 129644, - [SMALL_STATE(4843)] = 129654, - [SMALL_STATE(4844)] = 129664, - [SMALL_STATE(4845)] = 129674, - [SMALL_STATE(4846)] = 129684, - [SMALL_STATE(4847)] = 129694, - [SMALL_STATE(4848)] = 129704, - [SMALL_STATE(4849)] = 129714, - [SMALL_STATE(4850)] = 129724, - [SMALL_STATE(4851)] = 129734, - [SMALL_STATE(4852)] = 129744, - [SMALL_STATE(4853)] = 129754, - [SMALL_STATE(4854)] = 129764, - [SMALL_STATE(4855)] = 129774, - [SMALL_STATE(4856)] = 129784, - [SMALL_STATE(4857)] = 129794, - [SMALL_STATE(4858)] = 129804, - [SMALL_STATE(4859)] = 129814, - [SMALL_STATE(4860)] = 129824, - [SMALL_STATE(4861)] = 129834, - [SMALL_STATE(4862)] = 129844, - [SMALL_STATE(4863)] = 129854, - [SMALL_STATE(4864)] = 129864, - [SMALL_STATE(4865)] = 129874, - [SMALL_STATE(4866)] = 129884, - [SMALL_STATE(4867)] = 129894, - [SMALL_STATE(4868)] = 129904, - [SMALL_STATE(4869)] = 129914, - [SMALL_STATE(4870)] = 129924, - [SMALL_STATE(4871)] = 129934, - [SMALL_STATE(4872)] = 129944, - [SMALL_STATE(4873)] = 129954, - [SMALL_STATE(4874)] = 129964, - [SMALL_STATE(4875)] = 129974, - [SMALL_STATE(4876)] = 129984, - [SMALL_STATE(4877)] = 129994, - [SMALL_STATE(4878)] = 130004, - [SMALL_STATE(4879)] = 130014, - [SMALL_STATE(4880)] = 130024, - [SMALL_STATE(4881)] = 130034, - [SMALL_STATE(4882)] = 130044, - [SMALL_STATE(4883)] = 130054, - [SMALL_STATE(4884)] = 130064, - [SMALL_STATE(4885)] = 130074, - [SMALL_STATE(4886)] = 130084, - [SMALL_STATE(4887)] = 130094, - [SMALL_STATE(4888)] = 130104, - [SMALL_STATE(4889)] = 130114, - [SMALL_STATE(4890)] = 130124, - [SMALL_STATE(4891)] = 130134, - [SMALL_STATE(4892)] = 130144, - [SMALL_STATE(4893)] = 130154, - [SMALL_STATE(4894)] = 130164, - [SMALL_STATE(4895)] = 130174, - [SMALL_STATE(4896)] = 130184, - [SMALL_STATE(4897)] = 130194, - [SMALL_STATE(4898)] = 130204, - [SMALL_STATE(4899)] = 130214, - [SMALL_STATE(4900)] = 130224, - [SMALL_STATE(4901)] = 130234, - [SMALL_STATE(4902)] = 130244, - [SMALL_STATE(4903)] = 130254, - [SMALL_STATE(4904)] = 130264, - [SMALL_STATE(4905)] = 130274, - [SMALL_STATE(4906)] = 130284, - [SMALL_STATE(4907)] = 130294, - [SMALL_STATE(4908)] = 130304, - [SMALL_STATE(4909)] = 130314, - [SMALL_STATE(4910)] = 130324, - [SMALL_STATE(4911)] = 130334, - [SMALL_STATE(4912)] = 130344, - [SMALL_STATE(4913)] = 130354, - [SMALL_STATE(4914)] = 130364, - [SMALL_STATE(4915)] = 130374, - [SMALL_STATE(4916)] = 130384, - [SMALL_STATE(4917)] = 130394, - [SMALL_STATE(4918)] = 130404, - [SMALL_STATE(4919)] = 130414, - [SMALL_STATE(4920)] = 130424, - [SMALL_STATE(4921)] = 130434, - [SMALL_STATE(4922)] = 130444, - [SMALL_STATE(4923)] = 130454, - [SMALL_STATE(4924)] = 130464, - [SMALL_STATE(4925)] = 130474, - [SMALL_STATE(4926)] = 130484, - [SMALL_STATE(4927)] = 130494, - [SMALL_STATE(4928)] = 130504, - [SMALL_STATE(4929)] = 130514, - [SMALL_STATE(4930)] = 130524, - [SMALL_STATE(4931)] = 130534, - [SMALL_STATE(4932)] = 130544, - [SMALL_STATE(4933)] = 130554, - [SMALL_STATE(4934)] = 130564, - [SMALL_STATE(4935)] = 130574, - [SMALL_STATE(4936)] = 130584, - [SMALL_STATE(4937)] = 130594, - [SMALL_STATE(4938)] = 130604, - [SMALL_STATE(4939)] = 130614, - [SMALL_STATE(4940)] = 130624, - [SMALL_STATE(4941)] = 130634, - [SMALL_STATE(4942)] = 130644, - [SMALL_STATE(4943)] = 130654, - [SMALL_STATE(4944)] = 130664, - [SMALL_STATE(4945)] = 130674, - [SMALL_STATE(4946)] = 130684, - [SMALL_STATE(4947)] = 130694, - [SMALL_STATE(4948)] = 130704, - [SMALL_STATE(4949)] = 130714, - [SMALL_STATE(4950)] = 130724, - [SMALL_STATE(4951)] = 130734, - [SMALL_STATE(4952)] = 130744, - [SMALL_STATE(4953)] = 130754, - [SMALL_STATE(4954)] = 130764, - [SMALL_STATE(4955)] = 130774, - [SMALL_STATE(4956)] = 130784, - [SMALL_STATE(4957)] = 130794, - [SMALL_STATE(4958)] = 130804, - [SMALL_STATE(4959)] = 130814, - [SMALL_STATE(4960)] = 130824, - [SMALL_STATE(4961)] = 130834, - [SMALL_STATE(4962)] = 130844, - [SMALL_STATE(4963)] = 130854, - [SMALL_STATE(4964)] = 130864, - [SMALL_STATE(4965)] = 130874, - [SMALL_STATE(4966)] = 130884, - [SMALL_STATE(4967)] = 130894, - [SMALL_STATE(4968)] = 130904, - [SMALL_STATE(4969)] = 130914, - [SMALL_STATE(4970)] = 130924, - [SMALL_STATE(4971)] = 130934, - [SMALL_STATE(4972)] = 130944, - [SMALL_STATE(4973)] = 130954, - [SMALL_STATE(4974)] = 130964, - [SMALL_STATE(4975)] = 130974, - [SMALL_STATE(4976)] = 130984, - [SMALL_STATE(4977)] = 130994, - [SMALL_STATE(4978)] = 131004, - [SMALL_STATE(4979)] = 131014, - [SMALL_STATE(4980)] = 131024, - [SMALL_STATE(4981)] = 131034, - [SMALL_STATE(4982)] = 131044, - [SMALL_STATE(4983)] = 131054, - [SMALL_STATE(4984)] = 131064, - [SMALL_STATE(4985)] = 131074, - [SMALL_STATE(4986)] = 131084, - [SMALL_STATE(4987)] = 131094, - [SMALL_STATE(4988)] = 131104, - [SMALL_STATE(4989)] = 131114, - [SMALL_STATE(4990)] = 131124, - [SMALL_STATE(4991)] = 131134, - [SMALL_STATE(4992)] = 131144, - [SMALL_STATE(4993)] = 131154, - [SMALL_STATE(4994)] = 131164, - [SMALL_STATE(4995)] = 131174, - [SMALL_STATE(4996)] = 131184, - [SMALL_STATE(4997)] = 131194, - [SMALL_STATE(4998)] = 131204, - [SMALL_STATE(4999)] = 131214, - [SMALL_STATE(5000)] = 131224, - [SMALL_STATE(5001)] = 131234, - [SMALL_STATE(5002)] = 131244, - [SMALL_STATE(5003)] = 131254, - [SMALL_STATE(5004)] = 131264, - [SMALL_STATE(5005)] = 131274, - [SMALL_STATE(5006)] = 131284, - [SMALL_STATE(5007)] = 131294, - [SMALL_STATE(5008)] = 131304, - [SMALL_STATE(5009)] = 131314, - [SMALL_STATE(5010)] = 131324, - [SMALL_STATE(5011)] = 131334, - [SMALL_STATE(5012)] = 131344, - [SMALL_STATE(5013)] = 131354, - [SMALL_STATE(5014)] = 131364, - [SMALL_STATE(5015)] = 131374, - [SMALL_STATE(5016)] = 131384, - [SMALL_STATE(5017)] = 131394, - [SMALL_STATE(5018)] = 131404, - [SMALL_STATE(5019)] = 131414, - [SMALL_STATE(5020)] = 131424, - [SMALL_STATE(5021)] = 131434, - [SMALL_STATE(5022)] = 131444, - [SMALL_STATE(5023)] = 131454, - [SMALL_STATE(5024)] = 131464, - [SMALL_STATE(5025)] = 131474, - [SMALL_STATE(5026)] = 131484, - [SMALL_STATE(5027)] = 131494, - [SMALL_STATE(5028)] = 131504, - [SMALL_STATE(5029)] = 131514, - [SMALL_STATE(5030)] = 131524, - [SMALL_STATE(5031)] = 131534, - [SMALL_STATE(5032)] = 131544, - [SMALL_STATE(5033)] = 131554, - [SMALL_STATE(5034)] = 131564, - [SMALL_STATE(5035)] = 131574, - [SMALL_STATE(5036)] = 131584, - [SMALL_STATE(5037)] = 131594, - [SMALL_STATE(5038)] = 131604, - [SMALL_STATE(5039)] = 131614, - [SMALL_STATE(5040)] = 131624, - [SMALL_STATE(5041)] = 131634, - [SMALL_STATE(5042)] = 131644, - [SMALL_STATE(5043)] = 131654, - [SMALL_STATE(5044)] = 131664, - [SMALL_STATE(5045)] = 131674, - [SMALL_STATE(5046)] = 131684, - [SMALL_STATE(5047)] = 131694, - [SMALL_STATE(5048)] = 131704, - [SMALL_STATE(5049)] = 131714, - [SMALL_STATE(5050)] = 131724, - [SMALL_STATE(5051)] = 131734, - [SMALL_STATE(5052)] = 131744, - [SMALL_STATE(5053)] = 131754, - [SMALL_STATE(5054)] = 131764, - [SMALL_STATE(5055)] = 131774, - [SMALL_STATE(5056)] = 131784, - [SMALL_STATE(5057)] = 131794, - [SMALL_STATE(5058)] = 131804, - [SMALL_STATE(5059)] = 131814, - [SMALL_STATE(5060)] = 131824, - [SMALL_STATE(5061)] = 131834, - [SMALL_STATE(5062)] = 131844, - [SMALL_STATE(5063)] = 131854, - [SMALL_STATE(5064)] = 131864, - [SMALL_STATE(5065)] = 131874, - [SMALL_STATE(5066)] = 131884, - [SMALL_STATE(5067)] = 131894, - [SMALL_STATE(5068)] = 131904, - [SMALL_STATE(5069)] = 131914, - [SMALL_STATE(5070)] = 131924, - [SMALL_STATE(5071)] = 131934, - [SMALL_STATE(5072)] = 131944, - [SMALL_STATE(5073)] = 131954, - [SMALL_STATE(5074)] = 131964, - [SMALL_STATE(5075)] = 131974, - [SMALL_STATE(5076)] = 131984, - [SMALL_STATE(5077)] = 131994, - [SMALL_STATE(5078)] = 132004, - [SMALL_STATE(5079)] = 132014, - [SMALL_STATE(5080)] = 132024, - [SMALL_STATE(5081)] = 132034, - [SMALL_STATE(5082)] = 132044, - [SMALL_STATE(5083)] = 132054, - [SMALL_STATE(5084)] = 132064, - [SMALL_STATE(5085)] = 132074, - [SMALL_STATE(5086)] = 132084, - [SMALL_STATE(5087)] = 132094, - [SMALL_STATE(5088)] = 132104, - [SMALL_STATE(5089)] = 132114, - [SMALL_STATE(5090)] = 132124, - [SMALL_STATE(5091)] = 132134, - [SMALL_STATE(5092)] = 132144, - [SMALL_STATE(5093)] = 132154, - [SMALL_STATE(5094)] = 132164, - [SMALL_STATE(5095)] = 132174, - [SMALL_STATE(5096)] = 132184, - [SMALL_STATE(5097)] = 132194, - [SMALL_STATE(5098)] = 132204, - [SMALL_STATE(5099)] = 132214, - [SMALL_STATE(5100)] = 132224, - [SMALL_STATE(5101)] = 132234, - [SMALL_STATE(5102)] = 132244, - [SMALL_STATE(5103)] = 132254, - [SMALL_STATE(5104)] = 132264, - [SMALL_STATE(5105)] = 132274, - [SMALL_STATE(5106)] = 132284, - [SMALL_STATE(5107)] = 132294, - [SMALL_STATE(5108)] = 132304, - [SMALL_STATE(5109)] = 132314, - [SMALL_STATE(5110)] = 132324, - [SMALL_STATE(5111)] = 132334, - [SMALL_STATE(5112)] = 132344, - [SMALL_STATE(5113)] = 132354, - [SMALL_STATE(5114)] = 132364, - [SMALL_STATE(5115)] = 132374, - [SMALL_STATE(5116)] = 132384, - [SMALL_STATE(5117)] = 132394, - [SMALL_STATE(5118)] = 132404, - [SMALL_STATE(5119)] = 132414, - [SMALL_STATE(5120)] = 132424, - [SMALL_STATE(5121)] = 132434, - [SMALL_STATE(5122)] = 132444, - [SMALL_STATE(5123)] = 132454, - [SMALL_STATE(5124)] = 132464, - [SMALL_STATE(5125)] = 132474, - [SMALL_STATE(5126)] = 132484, - [SMALL_STATE(5127)] = 132494, - [SMALL_STATE(5128)] = 132504, - [SMALL_STATE(5129)] = 132514, - [SMALL_STATE(5130)] = 132524, - [SMALL_STATE(5131)] = 132534, - [SMALL_STATE(5132)] = 132544, - [SMALL_STATE(5133)] = 132554, - [SMALL_STATE(5134)] = 132564, - [SMALL_STATE(5135)] = 132574, - [SMALL_STATE(5136)] = 132584, - [SMALL_STATE(5137)] = 132594, - [SMALL_STATE(5138)] = 132604, - [SMALL_STATE(5139)] = 132614, - [SMALL_STATE(5140)] = 132624, - [SMALL_STATE(5141)] = 132634, - [SMALL_STATE(5142)] = 132644, - [SMALL_STATE(5143)] = 132654, - [SMALL_STATE(5144)] = 132664, - [SMALL_STATE(5145)] = 132674, - [SMALL_STATE(5146)] = 132684, - [SMALL_STATE(5147)] = 132694, - [SMALL_STATE(5148)] = 132704, - [SMALL_STATE(5149)] = 132714, - [SMALL_STATE(5150)] = 132724, - [SMALL_STATE(5151)] = 132734, - [SMALL_STATE(5152)] = 132744, - [SMALL_STATE(5153)] = 132754, - [SMALL_STATE(5154)] = 132764, - [SMALL_STATE(5155)] = 132774, - [SMALL_STATE(5156)] = 132784, - [SMALL_STATE(5157)] = 132794, - [SMALL_STATE(5158)] = 132804, - [SMALL_STATE(5159)] = 132814, - [SMALL_STATE(5160)] = 132824, - [SMALL_STATE(5161)] = 132834, - [SMALL_STATE(5162)] = 132844, - [SMALL_STATE(5163)] = 132854, - [SMALL_STATE(5164)] = 132864, - [SMALL_STATE(5165)] = 132874, - [SMALL_STATE(5166)] = 132884, - [SMALL_STATE(5167)] = 132894, - [SMALL_STATE(5168)] = 132904, - [SMALL_STATE(5169)] = 132914, - [SMALL_STATE(5170)] = 132924, - [SMALL_STATE(5171)] = 132934, - [SMALL_STATE(5172)] = 132944, - [SMALL_STATE(5173)] = 132954, - [SMALL_STATE(5174)] = 132964, - [SMALL_STATE(5175)] = 132974, - [SMALL_STATE(5176)] = 132984, - [SMALL_STATE(5177)] = 132994, - [SMALL_STATE(5178)] = 133004, - [SMALL_STATE(5179)] = 133014, - [SMALL_STATE(5180)] = 133024, - [SMALL_STATE(5181)] = 133034, - [SMALL_STATE(5182)] = 133044, - [SMALL_STATE(5183)] = 133054, - [SMALL_STATE(5184)] = 133064, - [SMALL_STATE(5185)] = 133074, - [SMALL_STATE(5186)] = 133084, - [SMALL_STATE(5187)] = 133094, - [SMALL_STATE(5188)] = 133104, - [SMALL_STATE(5189)] = 133114, - [SMALL_STATE(5190)] = 133124, - [SMALL_STATE(5191)] = 133134, - [SMALL_STATE(5192)] = 133144, - [SMALL_STATE(5193)] = 133154, - [SMALL_STATE(5194)] = 133164, - [SMALL_STATE(5195)] = 133174, - [SMALL_STATE(5196)] = 133184, - [SMALL_STATE(5197)] = 133194, - [SMALL_STATE(5198)] = 133204, - [SMALL_STATE(5199)] = 133214, - [SMALL_STATE(5200)] = 133224, - [SMALL_STATE(5201)] = 133234, - [SMALL_STATE(5202)] = 133244, - [SMALL_STATE(5203)] = 133254, + [SMALL_STATE(2325)] = 71316, + [SMALL_STATE(2326)] = 71362, + [SMALL_STATE(2327)] = 71410, + [SMALL_STATE(2328)] = 71446, + [SMALL_STATE(2329)] = 71492, + [SMALL_STATE(2330)] = 71538, + [SMALL_STATE(2331)] = 71584, + [SMALL_STATE(2332)] = 71632, + [SMALL_STATE(2333)] = 71680, + [SMALL_STATE(2334)] = 71734, + [SMALL_STATE(2335)] = 71774, + [SMALL_STATE(2336)] = 71844, + [SMALL_STATE(2337)] = 71914, + [SMALL_STATE(2338)] = 71956, + [SMALL_STATE(2339)] = 72026, + [SMALL_STATE(2340)] = 72096, + [SMALL_STATE(2341)] = 72147, + [SMALL_STATE(2342)] = 72186, + [SMALL_STATE(2343)] = 72225, + [SMALL_STATE(2344)] = 72262, + [SMALL_STATE(2345)] = 72299, + [SMALL_STATE(2346)] = 72336, + [SMALL_STATE(2347)] = 72387, + [SMALL_STATE(2348)] = 72440, + [SMALL_STATE(2349)] = 72479, + [SMALL_STATE(2350)] = 72526, + [SMALL_STATE(2351)] = 72563, + [SMALL_STATE(2352)] = 72602, + [SMALL_STATE(2353)] = 72641, + [SMALL_STATE(2354)] = 72692, + [SMALL_STATE(2355)] = 72737, + [SMALL_STATE(2356)] = 72782, + [SMALL_STATE(2357)] = 72827, + [SMALL_STATE(2358)] = 72872, + [SMALL_STATE(2359)] = 72909, + [SMALL_STATE(2360)] = 72946, + [SMALL_STATE(2361)] = 72984, + [SMALL_STATE(2362)] = 73018, + [SMALL_STATE(2363)] = 73066, + [SMALL_STATE(2364)] = 73100, + [SMALL_STATE(2365)] = 73134, + [SMALL_STATE(2366)] = 73182, + [SMALL_STATE(2367)] = 73230, + [SMALL_STATE(2368)] = 73280, + [SMALL_STATE(2369)] = 73314, + [SMALL_STATE(2370)] = 73352, + [SMALL_STATE(2371)] = 73400, + [SMALL_STATE(2372)] = 73446, + [SMALL_STATE(2373)] = 73480, + [SMALL_STATE(2374)] = 73514, + [SMALL_STATE(2375)] = 73548, + [SMALL_STATE(2376)] = 73582, + [SMALL_STATE(2377)] = 73616, + [SMALL_STATE(2378)] = 73650, + [SMALL_STATE(2379)] = 73684, + [SMALL_STATE(2380)] = 73718, + [SMALL_STATE(2381)] = 73752, + [SMALL_STATE(2382)] = 73802, + [SMALL_STATE(2383)] = 73852, + [SMALL_STATE(2384)] = 73886, + [SMALL_STATE(2385)] = 73920, + [SMALL_STATE(2386)] = 73954, + [SMALL_STATE(2387)] = 73988, + [SMALL_STATE(2388)] = 74024, + [SMALL_STATE(2389)] = 74058, + [SMALL_STATE(2390)] = 74092, + [SMALL_STATE(2391)] = 74130, + [SMALL_STATE(2392)] = 74170, + [SMALL_STATE(2393)] = 74204, + [SMALL_STATE(2394)] = 74244, + [SMALL_STATE(2395)] = 74282, + [SMALL_STATE(2396)] = 74316, + [SMALL_STATE(2397)] = 74350, + [SMALL_STATE(2398)] = 74384, + [SMALL_STATE(2399)] = 74420, + [SMALL_STATE(2400)] = 74459, + [SMALL_STATE(2401)] = 74492, + [SMALL_STATE(2402)] = 74539, + [SMALL_STATE(2403)] = 74586, + [SMALL_STATE(2404)] = 74633, + [SMALL_STATE(2405)] = 74670, + [SMALL_STATE(2406)] = 74711, + [SMALL_STATE(2407)] = 74762, + [SMALL_STATE(2408)] = 74795, + [SMALL_STATE(2409)] = 74828, + [SMALL_STATE(2410)] = 74861, + [SMALL_STATE(2411)] = 74894, + [SMALL_STATE(2412)] = 74927, + [SMALL_STATE(2413)] = 74968, + [SMALL_STATE(2414)] = 75009, + [SMALL_STATE(2415)] = 75042, + [SMALL_STATE(2416)] = 75075, + [SMALL_STATE(2417)] = 75110, + [SMALL_STATE(2418)] = 75157, + [SMALL_STATE(2419)] = 75194, + [SMALL_STATE(2420)] = 75233, + [SMALL_STATE(2421)] = 75268, + [SMALL_STATE(2422)] = 75301, + [SMALL_STATE(2423)] = 75336, + [SMALL_STATE(2424)] = 75369, + [SMALL_STATE(2425)] = 75402, + [SMALL_STATE(2426)] = 75439, + [SMALL_STATE(2427)] = 75472, + [SMALL_STATE(2428)] = 75505, + [SMALL_STATE(2429)] = 75538, + [SMALL_STATE(2430)] = 75573, + [SMALL_STATE(2431)] = 75606, + [SMALL_STATE(2432)] = 75639, + [SMALL_STATE(2433)] = 75672, + [SMALL_STATE(2434)] = 75711, + [SMALL_STATE(2435)] = 75744, + [SMALL_STATE(2436)] = 75777, + [SMALL_STATE(2437)] = 75814, + [SMALL_STATE(2438)] = 75847, + [SMALL_STATE(2439)] = 75880, + [SMALL_STATE(2440)] = 75927, + [SMALL_STATE(2441)] = 75959, + [SMALL_STATE(2442)] = 75997, + [SMALL_STATE(2443)] = 76029, + [SMALL_STATE(2444)] = 76065, + [SMALL_STATE(2445)] = 76103, + [SMALL_STATE(2446)] = 76137, + [SMALL_STATE(2447)] = 76169, + [SMALL_STATE(2448)] = 76209, + [SMALL_STATE(2449)] = 76241, + [SMALL_STATE(2450)] = 76273, + [SMALL_STATE(2451)] = 76321, + [SMALL_STATE(2452)] = 76355, + [SMALL_STATE(2453)] = 76403, + [SMALL_STATE(2454)] = 76443, + [SMALL_STATE(2455)] = 76475, + [SMALL_STATE(2456)] = 76507, + [SMALL_STATE(2457)] = 76543, + [SMALL_STATE(2458)] = 76579, + [SMALL_STATE(2459)] = 76627, + [SMALL_STATE(2460)] = 76659, + [SMALL_STATE(2461)] = 76691, + [SMALL_STATE(2462)] = 76723, + [SMALL_STATE(2463)] = 76769, + [SMALL_STATE(2464)] = 76805, + [SMALL_STATE(2465)] = 76845, + [SMALL_STATE(2466)] = 76879, + [SMALL_STATE(2467)] = 76911, + [SMALL_STATE(2468)] = 76949, + [SMALL_STATE(2469)] = 76987, + [SMALL_STATE(2470)] = 77025, + [SMALL_STATE(2471)] = 77063, + [SMALL_STATE(2472)] = 77101, + [SMALL_STATE(2473)] = 77139, + [SMALL_STATE(2474)] = 77177, + [SMALL_STATE(2475)] = 77211, + [SMALL_STATE(2476)] = 77247, + [SMALL_STATE(2477)] = 77285, + [SMALL_STATE(2478)] = 77317, + [SMALL_STATE(2479)] = 77352, + [SMALL_STATE(2480)] = 77385, + [SMALL_STATE(2481)] = 77418, + [SMALL_STATE(2482)] = 77449, + [SMALL_STATE(2483)] = 77494, + [SMALL_STATE(2484)] = 77531, + [SMALL_STATE(2485)] = 77576, + [SMALL_STATE(2486)] = 77607, + [SMALL_STATE(2487)] = 77642, + [SMALL_STATE(2488)] = 77675, + [SMALL_STATE(2489)] = 77706, + [SMALL_STATE(2490)] = 77743, + [SMALL_STATE(2491)] = 77784, + [SMALL_STATE(2492)] = 77829, + [SMALL_STATE(2493)] = 77860, + [SMALL_STATE(2494)] = 77891, + [SMALL_STATE(2495)] = 77936, + [SMALL_STATE(2496)] = 77981, + [SMALL_STATE(2497)] = 78016, + [SMALL_STATE(2498)] = 78047, + [SMALL_STATE(2499)] = 78078, + [SMALL_STATE(2500)] = 78109, + [SMALL_STATE(2501)] = 78142, + [SMALL_STATE(2502)] = 78179, + [SMALL_STATE(2503)] = 78214, + [SMALL_STATE(2504)] = 78247, + [SMALL_STATE(2505)] = 78286, + [SMALL_STATE(2506)] = 78317, + [SMALL_STATE(2507)] = 78354, + [SMALL_STATE(2508)] = 78385, + [SMALL_STATE(2509)] = 78416, + [SMALL_STATE(2510)] = 78455, + [SMALL_STATE(2511)] = 78490, + [SMALL_STATE(2512)] = 78529, + [SMALL_STATE(2513)] = 78562, + [SMALL_STATE(2514)] = 78595, + [SMALL_STATE(2515)] = 78626, + [SMALL_STATE(2516)] = 78658, + [SMALL_STATE(2517)] = 78688, + [SMALL_STATE(2518)] = 78722, + [SMALL_STATE(2519)] = 78754, + [SMALL_STATE(2520)] = 78784, + [SMALL_STATE(2521)] = 78836, + [SMALL_STATE(2522)] = 78870, + [SMALL_STATE(2523)] = 78906, + [SMALL_STATE(2524)] = 78936, + [SMALL_STATE(2525)] = 78968, + [SMALL_STATE(2526)] = 79000, + [SMALL_STATE(2527)] = 79032, + [SMALL_STATE(2528)] = 79062, + [SMALL_STATE(2529)] = 79102, + [SMALL_STATE(2530)] = 79138, + [SMALL_STATE(2531)] = 79170, + [SMALL_STATE(2532)] = 79206, + [SMALL_STATE(2533)] = 79240, + [SMALL_STATE(2534)] = 79270, + [SMALL_STATE(2535)] = 79322, + [SMALL_STATE(2536)] = 79356, + [SMALL_STATE(2537)] = 79386, + [SMALL_STATE(2538)] = 79422, + [SMALL_STATE(2539)] = 79452, + [SMALL_STATE(2540)] = 79482, + [SMALL_STATE(2541)] = 79512, + [SMALL_STATE(2542)] = 79542, + [SMALL_STATE(2543)] = 79580, + [SMALL_STATE(2544)] = 79612, + [SMALL_STATE(2545)] = 79648, + [SMALL_STATE(2546)] = 79678, + [SMALL_STATE(2547)] = 79708, + [SMALL_STATE(2548)] = 79744, + [SMALL_STATE(2549)] = 79796, + [SMALL_STATE(2550)] = 79834, + [SMALL_STATE(2551)] = 79866, + [SMALL_STATE(2552)] = 79898, + [SMALL_STATE(2553)] = 79930, + [SMALL_STATE(2554)] = 79962, + [SMALL_STATE(2555)] = 79992, + [SMALL_STATE(2556)] = 80026, + [SMALL_STATE(2557)] = 80058, + [SMALL_STATE(2558)] = 80088, + [SMALL_STATE(2559)] = 80120, + [SMALL_STATE(2560)] = 80170, + [SMALL_STATE(2561)] = 80222, + [SMALL_STATE(2562)] = 80254, + [SMALL_STATE(2563)] = 80284, + [SMALL_STATE(2564)] = 80322, + [SMALL_STATE(2565)] = 80352, + [SMALL_STATE(2566)] = 80390, + [SMALL_STATE(2567)] = 80426, + [SMALL_STATE(2568)] = 80464, + [SMALL_STATE(2569)] = 80495, + [SMALL_STATE(2570)] = 80524, + [SMALL_STATE(2571)] = 80559, + [SMALL_STATE(2572)] = 80590, + [SMALL_STATE(2573)] = 80619, + [SMALL_STATE(2574)] = 80648, + [SMALL_STATE(2575)] = 80677, + [SMALL_STATE(2576)] = 80714, + [SMALL_STATE(2577)] = 80745, + [SMALL_STATE(2578)] = 80776, + [SMALL_STATE(2579)] = 80807, + [SMALL_STATE(2580)] = 80836, + [SMALL_STATE(2581)] = 80873, + [SMALL_STATE(2582)] = 80904, + [SMALL_STATE(2583)] = 80941, + [SMALL_STATE(2584)] = 80978, + [SMALL_STATE(2585)] = 81015, + [SMALL_STATE(2586)] = 81046, + [SMALL_STATE(2587)] = 81077, + [SMALL_STATE(2588)] = 81108, + [SMALL_STATE(2589)] = 81139, + [SMALL_STATE(2590)] = 81176, + [SMALL_STATE(2591)] = 81205, + [SMALL_STATE(2592)] = 81242, + [SMALL_STATE(2593)] = 81279, + [SMALL_STATE(2594)] = 81308, + [SMALL_STATE(2595)] = 81339, + [SMALL_STATE(2596)] = 81376, + [SMALL_STATE(2597)] = 81405, + [SMALL_STATE(2598)] = 81436, + [SMALL_STATE(2599)] = 81473, + [SMALL_STATE(2600)] = 81506, + [SMALL_STATE(2601)] = 81543, + [SMALL_STATE(2602)] = 81574, + [SMALL_STATE(2603)] = 81603, + [SMALL_STATE(2604)] = 81632, + [SMALL_STATE(2605)] = 81663, + [SMALL_STATE(2606)] = 81692, + [SMALL_STATE(2607)] = 81723, + [SMALL_STATE(2608)] = 81752, + [SMALL_STATE(2609)] = 81789, + [SMALL_STATE(2610)] = 81818, + [SMALL_STATE(2611)] = 81849, + [SMALL_STATE(2612)] = 81878, + [SMALL_STATE(2613)] = 81907, + [SMALL_STATE(2614)] = 81936, + [SMALL_STATE(2615)] = 81967, + [SMALL_STATE(2616)] = 81996, + [SMALL_STATE(2617)] = 82027, + [SMALL_STATE(2618)] = 82056, + [SMALL_STATE(2619)] = 82085, + [SMALL_STATE(2620)] = 82114, + [SMALL_STATE(2621)] = 82151, + [SMALL_STATE(2622)] = 82182, + [SMALL_STATE(2623)] = 82215, + [SMALL_STATE(2624)] = 82244, + [SMALL_STATE(2625)] = 82275, + [SMALL_STATE(2626)] = 82306, + [SMALL_STATE(2627)] = 82337, + [SMALL_STATE(2628)] = 82366, + [SMALL_STATE(2629)] = 82397, + [SMALL_STATE(2630)] = 82428, + [SMALL_STATE(2631)] = 82459, + [SMALL_STATE(2632)] = 82492, + [SMALL_STATE(2633)] = 82525, + [SMALL_STATE(2634)] = 82556, + [SMALL_STATE(2635)] = 82589, + [SMALL_STATE(2636)] = 82617, + [SMALL_STATE(2637)] = 82653, + [SMALL_STATE(2638)] = 82683, + [SMALL_STATE(2639)] = 82711, + [SMALL_STATE(2640)] = 82743, + [SMALL_STATE(2641)] = 82771, + [SMALL_STATE(2642)] = 82805, + [SMALL_STATE(2643)] = 82837, + [SMALL_STATE(2644)] = 82867, + [SMALL_STATE(2645)] = 82911, + [SMALL_STATE(2646)] = 82947, + [SMALL_STATE(2647)] = 82983, + [SMALL_STATE(2648)] = 83013, + [SMALL_STATE(2649)] = 83045, + [SMALL_STATE(2650)] = 83077, + [SMALL_STATE(2651)] = 83109, + [SMALL_STATE(2652)] = 83141, + [SMALL_STATE(2653)] = 83173, + [SMALL_STATE(2654)] = 83201, + [SMALL_STATE(2655)] = 83239, + [SMALL_STATE(2656)] = 83275, + [SMALL_STATE(2657)] = 83311, + [SMALL_STATE(2658)] = 83341, + [SMALL_STATE(2659)] = 83377, + [SMALL_STATE(2660)] = 83407, + [SMALL_STATE(2661)] = 83435, + [SMALL_STATE(2662)] = 83463, + [SMALL_STATE(2663)] = 83491, + [SMALL_STATE(2664)] = 83519, + [SMALL_STATE(2665)] = 83547, + [SMALL_STATE(2666)] = 83581, + [SMALL_STATE(2667)] = 83613, + [SMALL_STATE(2668)] = 83641, + [SMALL_STATE(2669)] = 83669, + [SMALL_STATE(2670)] = 83713, + [SMALL_STATE(2671)] = 83743, + [SMALL_STATE(2672)] = 83779, + [SMALL_STATE(2673)] = 83823, + [SMALL_STATE(2674)] = 83853, + [SMALL_STATE(2675)] = 83889, + [SMALL_STATE(2676)] = 83919, + [SMALL_STATE(2677)] = 83947, + [SMALL_STATE(2678)] = 83977, + [SMALL_STATE(2679)] = 84013, + [SMALL_STATE(2680)] = 84043, + [SMALL_STATE(2681)] = 84071, + [SMALL_STATE(2682)] = 84101, + [SMALL_STATE(2683)] = 84137, + [SMALL_STATE(2684)] = 84165, + [SMALL_STATE(2685)] = 84193, + [SMALL_STATE(2686)] = 84229, + [SMALL_STATE(2687)] = 84259, + [SMALL_STATE(2688)] = 84287, + [SMALL_STATE(2689)] = 84315, + [SMALL_STATE(2690)] = 84343, + [SMALL_STATE(2691)] = 84387, + [SMALL_STATE(2692)] = 84423, + [SMALL_STATE(2693)] = 84453, + [SMALL_STATE(2694)] = 84489, + [SMALL_STATE(2695)] = 84533, + [SMALL_STATE(2696)] = 84563, + [SMALL_STATE(2697)] = 84594, + [SMALL_STATE(2698)] = 84625, + [SMALL_STATE(2699)] = 84656, + [SMALL_STATE(2700)] = 84683, + [SMALL_STATE(2701)] = 84714, + [SMALL_STATE(2702)] = 84745, + [SMALL_STATE(2703)] = 84776, + [SMALL_STATE(2704)] = 84807, + [SMALL_STATE(2705)] = 84834, + [SMALL_STATE(2706)] = 84867, + [SMALL_STATE(2707)] = 84900, + [SMALL_STATE(2708)] = 84927, + [SMALL_STATE(2709)] = 84954, + [SMALL_STATE(2710)] = 84981, + [SMALL_STATE(2711)] = 85012, + [SMALL_STATE(2712)] = 85041, + [SMALL_STATE(2713)] = 85070, + [SMALL_STATE(2714)] = 85097, + [SMALL_STATE(2715)] = 85124, + [SMALL_STATE(2716)] = 85159, + [SMALL_STATE(2717)] = 85190, + [SMALL_STATE(2718)] = 85221, + [SMALL_STATE(2719)] = 85256, + [SMALL_STATE(2720)] = 85287, + [SMALL_STATE(2721)] = 85318, + [SMALL_STATE(2722)] = 85347, + [SMALL_STATE(2723)] = 85376, + [SMALL_STATE(2724)] = 85409, + [SMALL_STATE(2725)] = 85436, + [SMALL_STATE(2726)] = 85463, + [SMALL_STATE(2727)] = 85490, + [SMALL_STATE(2728)] = 85519, + [SMALL_STATE(2729)] = 85550, + [SMALL_STATE(2730)] = 85577, + [SMALL_STATE(2731)] = 85606, + [SMALL_STATE(2732)] = 85637, + [SMALL_STATE(2733)] = 85664, + [SMALL_STATE(2734)] = 85695, + [SMALL_STATE(2735)] = 85726, + [SMALL_STATE(2736)] = 85753, + [SMALL_STATE(2737)] = 85780, + [SMALL_STATE(2738)] = 85809, + [SMALL_STATE(2739)] = 85838, + [SMALL_STATE(2740)] = 85871, + [SMALL_STATE(2741)] = 85904, + [SMALL_STATE(2742)] = 85935, + [SMALL_STATE(2743)] = 85966, + [SMALL_STATE(2744)] = 85999, + [SMALL_STATE(2745)] = 86030, + [SMALL_STATE(2746)] = 86061, + [SMALL_STATE(2747)] = 86092, + [SMALL_STATE(2748)] = 86123, + [SMALL_STATE(2749)] = 86152, + [SMALL_STATE(2750)] = 86183, + [SMALL_STATE(2751)] = 86210, + [SMALL_STATE(2752)] = 86243, + [SMALL_STATE(2753)] = 86276, + [SMALL_STATE(2754)] = 86303, + [SMALL_STATE(2755)] = 86330, + [SMALL_STATE(2756)] = 86361, + [SMALL_STATE(2757)] = 86392, + [SMALL_STATE(2758)] = 86425, + [SMALL_STATE(2759)] = 86458, + [SMALL_STATE(2760)] = 86489, + [SMALL_STATE(2761)] = 86516, + [SMALL_STATE(2762)] = 86547, + [SMALL_STATE(2763)] = 86574, + [SMALL_STATE(2764)] = 86605, + [SMALL_STATE(2765)] = 86632, + [SMALL_STATE(2766)] = 86663, + [SMALL_STATE(2767)] = 86692, + [SMALL_STATE(2768)] = 86717, + [SMALL_STATE(2769)] = 86748, + [SMALL_STATE(2770)] = 86773, + [SMALL_STATE(2771)] = 86804, + [SMALL_STATE(2772)] = 86829, + [SMALL_STATE(2773)] = 86856, + [SMALL_STATE(2774)] = 86885, + [SMALL_STATE(2775)] = 86912, + [SMALL_STATE(2776)] = 86937, + [SMALL_STATE(2777)] = 86962, + [SMALL_STATE(2778)] = 86989, + [SMALL_STATE(2779)] = 87020, + [SMALL_STATE(2780)] = 87051, + [SMALL_STATE(2781)] = 87076, + [SMALL_STATE(2782)] = 87101, + [SMALL_STATE(2783)] = 87134, + [SMALL_STATE(2784)] = 87165, + [SMALL_STATE(2785)] = 87196, + [SMALL_STATE(2786)] = 87225, + [SMALL_STATE(2787)] = 87256, + [SMALL_STATE(2788)] = 87291, + [SMALL_STATE(2789)] = 87322, + [SMALL_STATE(2790)] = 87357, + [SMALL_STATE(2791)] = 87388, + [SMALL_STATE(2792)] = 87421, + [SMALL_STATE(2793)] = 87454, + [SMALL_STATE(2794)] = 87479, + [SMALL_STATE(2795)] = 87506, + [SMALL_STATE(2796)] = 87533, + [SMALL_STATE(2797)] = 87562, + [SMALL_STATE(2798)] = 87591, + [SMALL_STATE(2799)] = 87616, + [SMALL_STATE(2800)] = 87641, + [SMALL_STATE(2801)] = 87668, + [SMALL_STATE(2802)] = 87695, + [SMALL_STATE(2803)] = 87724, + [SMALL_STATE(2804)] = 87753, + [SMALL_STATE(2805)] = 87782, + [SMALL_STATE(2806)] = 87809, + [SMALL_STATE(2807)] = 87840, + [SMALL_STATE(2808)] = 87867, + [SMALL_STATE(2809)] = 87898, + [SMALL_STATE(2810)] = 87935, + [SMALL_STATE(2811)] = 87962, + [SMALL_STATE(2812)] = 87993, + [SMALL_STATE(2813)] = 88024, + [SMALL_STATE(2814)] = 88051, + [SMALL_STATE(2815)] = 88078, + [SMALL_STATE(2816)] = 88105, + [SMALL_STATE(2817)] = 88132, + [SMALL_STATE(2818)] = 88159, + [SMALL_STATE(2819)] = 88190, + [SMALL_STATE(2820)] = 88215, + [SMALL_STATE(2821)] = 88246, + [SMALL_STATE(2822)] = 88277, + [SMALL_STATE(2823)] = 88310, + [SMALL_STATE(2824)] = 88343, + [SMALL_STATE(2825)] = 88370, + [SMALL_STATE(2826)] = 88401, + [SMALL_STATE(2827)] = 88432, + [SMALL_STATE(2828)] = 88459, + [SMALL_STATE(2829)] = 88492, + [SMALL_STATE(2830)] = 88521, + [SMALL_STATE(2831)] = 88550, + [SMALL_STATE(2832)] = 88583, + [SMALL_STATE(2833)] = 88616, + [SMALL_STATE(2834)] = 88651, + [SMALL_STATE(2835)] = 88678, + [SMALL_STATE(2836)] = 88709, + [SMALL_STATE(2837)] = 88740, + [SMALL_STATE(2838)] = 88767, + [SMALL_STATE(2839)] = 88794, + [SMALL_STATE(2840)] = 88823, + [SMALL_STATE(2841)] = 88854, + [SMALL_STATE(2842)] = 88885, + [SMALL_STATE(2843)] = 88916, + [SMALL_STATE(2844)] = 88947, + [SMALL_STATE(2845)] = 88980, + [SMALL_STATE(2846)] = 89013, + [SMALL_STATE(2847)] = 89040, + [SMALL_STATE(2848)] = 89075, + [SMALL_STATE(2849)] = 89110, + [SMALL_STATE(2850)] = 89145, + [SMALL_STATE(2851)] = 89180, + [SMALL_STATE(2852)] = 89215, + [SMALL_STATE(2853)] = 89250, + [SMALL_STATE(2854)] = 89277, + [SMALL_STATE(2855)] = 89304, + [SMALL_STATE(2856)] = 89331, + [SMALL_STATE(2857)] = 89362, + [SMALL_STATE(2858)] = 89393, + [SMALL_STATE(2859)] = 89422, + [SMALL_STATE(2860)] = 89451, + [SMALL_STATE(2861)] = 89484, + [SMALL_STATE(2862)] = 89517, + [SMALL_STATE(2863)] = 89548, + [SMALL_STATE(2864)] = 89579, + [SMALL_STATE(2865)] = 89610, + [SMALL_STATE(2866)] = 89641, + [SMALL_STATE(2867)] = 89668, + [SMALL_STATE(2868)] = 89695, + [SMALL_STATE(2869)] = 89726, + [SMALL_STATE(2870)] = 89754, + [SMALL_STATE(2871)] = 89778, + [SMALL_STATE(2872)] = 89804, + [SMALL_STATE(2873)] = 89828, + [SMALL_STATE(2874)] = 89854, + [SMALL_STATE(2875)] = 89878, + [SMALL_STATE(2876)] = 89930, + [SMALL_STATE(2877)] = 89960, + [SMALL_STATE(2878)] = 89986, + [SMALL_STATE(2879)] = 90012, + [SMALL_STATE(2880)] = 90040, + [SMALL_STATE(2881)] = 90064, + [SMALL_STATE(2882)] = 90092, + [SMALL_STATE(2883)] = 90144, + [SMALL_STATE(2884)] = 90170, + [SMALL_STATE(2885)] = 90222, + [SMALL_STATE(2886)] = 90252, + [SMALL_STATE(2887)] = 90282, + [SMALL_STATE(2888)] = 90308, + [SMALL_STATE(2889)] = 90336, + [SMALL_STATE(2890)] = 90362, + [SMALL_STATE(2891)] = 90388, + [SMALL_STATE(2892)] = 90414, + [SMALL_STATE(2893)] = 90444, + [SMALL_STATE(2894)] = 90474, + [SMALL_STATE(2895)] = 90498, + [SMALL_STATE(2896)] = 90522, + [SMALL_STATE(2897)] = 90546, + [SMALL_STATE(2898)] = 90572, + [SMALL_STATE(2899)] = 90602, + [SMALL_STATE(2900)] = 90626, + [SMALL_STATE(2901)] = 90652, + [SMALL_STATE(2902)] = 90680, + [SMALL_STATE(2903)] = 90708, + [SMALL_STATE(2904)] = 90734, + [SMALL_STATE(2905)] = 90758, + [SMALL_STATE(2906)] = 90784, + [SMALL_STATE(2907)] = 90812, + [SMALL_STATE(2908)] = 90842, + [SMALL_STATE(2909)] = 90872, + [SMALL_STATE(2910)] = 90912, + [SMALL_STATE(2911)] = 90942, + [SMALL_STATE(2912)] = 90968, + [SMALL_STATE(2913)] = 90998, + [SMALL_STATE(2914)] = 91026, + [SMALL_STATE(2915)] = 91058, + [SMALL_STATE(2916)] = 91088, + [SMALL_STATE(2917)] = 91118, + [SMALL_STATE(2918)] = 91148, + [SMALL_STATE(2919)] = 91172, + [SMALL_STATE(2920)] = 91202, + [SMALL_STATE(2921)] = 91248, + [SMALL_STATE(2922)] = 91276, + [SMALL_STATE(2923)] = 91304, + [SMALL_STATE(2924)] = 91336, + [SMALL_STATE(2925)] = 91362, + [SMALL_STATE(2926)] = 91414, + [SMALL_STATE(2927)] = 91442, + [SMALL_STATE(2928)] = 91472, + [SMALL_STATE(2929)] = 91496, + [SMALL_STATE(2930)] = 91522, + [SMALL_STATE(2931)] = 91550, + [SMALL_STATE(2932)] = 91582, + [SMALL_STATE(2933)] = 91608, + [SMALL_STATE(2934)] = 91634, + [SMALL_STATE(2935)] = 91660, + [SMALL_STATE(2936)] = 91690, + [SMALL_STATE(2937)] = 91716, + [SMALL_STATE(2938)] = 91746, + [SMALL_STATE(2939)] = 91772, + [SMALL_STATE(2940)] = 91802, + [SMALL_STATE(2941)] = 91832, + [SMALL_STATE(2942)] = 91862, + [SMALL_STATE(2943)] = 91892, + [SMALL_STATE(2944)] = 91922, + [SMALL_STATE(2945)] = 91974, + [SMALL_STATE(2946)] = 92000, + [SMALL_STATE(2947)] = 92026, + [SMALL_STATE(2948)] = 92052, + [SMALL_STATE(2949)] = 92082, + [SMALL_STATE(2950)] = 92114, + [SMALL_STATE(2951)] = 92140, + [SMALL_STATE(2952)] = 92192, + [SMALL_STATE(2953)] = 92222, + [SMALL_STATE(2954)] = 92274, + [SMALL_STATE(2955)] = 92326, + [SMALL_STATE(2956)] = 92356, + [SMALL_STATE(2957)] = 92380, + [SMALL_STATE(2958)] = 92406, + [SMALL_STATE(2959)] = 92432, + [SMALL_STATE(2960)] = 92458, + [SMALL_STATE(2961)] = 92510, + [SMALL_STATE(2962)] = 92536, + [SMALL_STATE(2963)] = 92560, + [SMALL_STATE(2964)] = 92588, + [SMALL_STATE(2965)] = 92618, + [SMALL_STATE(2966)] = 92662, + [SMALL_STATE(2967)] = 92714, + [SMALL_STATE(2968)] = 92740, + [SMALL_STATE(2969)] = 92770, + [SMALL_STATE(2970)] = 92795, + [SMALL_STATE(2971)] = 92824, + [SMALL_STATE(2972)] = 92847, + [SMALL_STATE(2973)] = 92872, + [SMALL_STATE(2974)] = 92901, + [SMALL_STATE(2975)] = 92926, + [SMALL_STATE(2976)] = 92955, + [SMALL_STATE(2977)] = 92984, + [SMALL_STATE(2978)] = 93011, + [SMALL_STATE(2979)] = 93040, + [SMALL_STATE(2980)] = 93065, + [SMALL_STATE(2981)] = 93094, + [SMALL_STATE(2982)] = 93123, + [SMALL_STATE(2983)] = 93148, + [SMALL_STATE(2984)] = 93173, + [SMALL_STATE(2985)] = 93198, + [SMALL_STATE(2986)] = 93227, + [SMALL_STATE(2987)] = 93252, + [SMALL_STATE(2988)] = 93277, + [SMALL_STATE(2989)] = 93302, + [SMALL_STATE(2990)] = 93327, + [SMALL_STATE(2991)] = 93352, + [SMALL_STATE(2992)] = 93381, + [SMALL_STATE(2993)] = 93406, + [SMALL_STATE(2994)] = 93431, + [SMALL_STATE(2995)] = 93460, + [SMALL_STATE(2996)] = 93497, + [SMALL_STATE(2997)] = 93522, + [SMALL_STATE(2998)] = 93547, + [SMALL_STATE(2999)] = 93572, + [SMALL_STATE(3000)] = 93601, + [SMALL_STATE(3001)] = 93626, + [SMALL_STATE(3002)] = 93655, + [SMALL_STATE(3003)] = 93680, + [SMALL_STATE(3004)] = 93705, + [SMALL_STATE(3005)] = 93730, + [SMALL_STATE(3006)] = 93755, + [SMALL_STATE(3007)] = 93780, + [SMALL_STATE(3008)] = 93805, + [SMALL_STATE(3009)] = 93830, + [SMALL_STATE(3010)] = 93855, + [SMALL_STATE(3011)] = 93884, + [SMALL_STATE(3012)] = 93909, + [SMALL_STATE(3013)] = 93934, + [SMALL_STATE(3014)] = 93963, + [SMALL_STATE(3015)] = 93992, + [SMALL_STATE(3016)] = 94017, + [SMALL_STATE(3017)] = 94046, + [SMALL_STATE(3018)] = 94075, + [SMALL_STATE(3019)] = 94100, + [SMALL_STATE(3020)] = 94125, + [SMALL_STATE(3021)] = 94152, + [SMALL_STATE(3022)] = 94177, + [SMALL_STATE(3023)] = 94202, + [SMALL_STATE(3024)] = 94227, + [SMALL_STATE(3025)] = 94254, + [SMALL_STATE(3026)] = 94283, + [SMALL_STATE(3027)] = 94314, + [SMALL_STATE(3028)] = 94339, + [SMALL_STATE(3029)] = 94368, + [SMALL_STATE(3030)] = 94397, + [SMALL_STATE(3031)] = 94426, + [SMALL_STATE(3032)] = 94451, + [SMALL_STATE(3033)] = 94480, + [SMALL_STATE(3034)] = 94505, + [SMALL_STATE(3035)] = 94534, + [SMALL_STATE(3036)] = 94559, + [SMALL_STATE(3037)] = 94584, + [SMALL_STATE(3038)] = 94613, + [SMALL_STATE(3039)] = 94638, + [SMALL_STATE(3040)] = 94677, + [SMALL_STATE(3041)] = 94702, + [SMALL_STATE(3042)] = 94727, + [SMALL_STATE(3043)] = 94756, + [SMALL_STATE(3044)] = 94785, + [SMALL_STATE(3045)] = 94822, + [SMALL_STATE(3046)] = 94847, + [SMALL_STATE(3047)] = 94890, + [SMALL_STATE(3048)] = 94921, + [SMALL_STATE(3049)] = 94946, + [SMALL_STATE(3050)] = 94971, + [SMALL_STATE(3051)] = 95000, + [SMALL_STATE(3052)] = 95025, + [SMALL_STATE(3053)] = 95050, + [SMALL_STATE(3054)] = 95075, + [SMALL_STATE(3055)] = 95100, + [SMALL_STATE(3056)] = 95129, + [SMALL_STATE(3057)] = 95154, + [SMALL_STATE(3058)] = 95181, + [SMALL_STATE(3059)] = 95208, + [SMALL_STATE(3060)] = 95233, + [SMALL_STATE(3061)] = 95262, + [SMALL_STATE(3062)] = 95287, + [SMALL_STATE(3063)] = 95316, + [SMALL_STATE(3064)] = 95345, + [SMALL_STATE(3065)] = 95370, + [SMALL_STATE(3066)] = 95395, + [SMALL_STATE(3067)] = 95420, + [SMALL_STATE(3068)] = 95445, + [SMALL_STATE(3069)] = 95470, + [SMALL_STATE(3070)] = 95495, + [SMALL_STATE(3071)] = 95520, + [SMALL_STATE(3072)] = 95545, + [SMALL_STATE(3073)] = 95570, + [SMALL_STATE(3074)] = 95599, + [SMALL_STATE(3075)] = 95626, + [SMALL_STATE(3076)] = 95657, + [SMALL_STATE(3077)] = 95700, + [SMALL_STATE(3078)] = 95729, + [SMALL_STATE(3079)] = 95756, + [SMALL_STATE(3080)] = 95779, + [SMALL_STATE(3081)] = 95808, + [SMALL_STATE(3082)] = 95837, + [SMALL_STATE(3083)] = 95862, + [SMALL_STATE(3084)] = 95891, + [SMALL_STATE(3085)] = 95920, + [SMALL_STATE(3086)] = 95949, + [SMALL_STATE(3087)] = 95974, + [SMALL_STATE(3088)] = 95999, + [SMALL_STATE(3089)] = 96028, + [SMALL_STATE(3090)] = 96053, + [SMALL_STATE(3091)] = 96078, + [SMALL_STATE(3092)] = 96103, + [SMALL_STATE(3093)] = 96128, + [SMALL_STATE(3094)] = 96153, + [SMALL_STATE(3095)] = 96178, + [SMALL_STATE(3096)] = 96203, + [SMALL_STATE(3097)] = 96228, + [SMALL_STATE(3098)] = 96257, + [SMALL_STATE(3099)] = 96286, + [SMALL_STATE(3100)] = 96311, + [SMALL_STATE(3101)] = 96336, + [SMALL_STATE(3102)] = 96361, + [SMALL_STATE(3103)] = 96386, + [SMALL_STATE(3104)] = 96411, + [SMALL_STATE(3105)] = 96436, + [SMALL_STATE(3106)] = 96461, + [SMALL_STATE(3107)] = 96486, + [SMALL_STATE(3108)] = 96517, + [SMALL_STATE(3109)] = 96542, + [SMALL_STATE(3110)] = 96567, + [SMALL_STATE(3111)] = 96592, + [SMALL_STATE(3112)] = 96617, + [SMALL_STATE(3113)] = 96642, + [SMALL_STATE(3114)] = 96667, + [SMALL_STATE(3115)] = 96692, + [SMALL_STATE(3116)] = 96721, + [SMALL_STATE(3117)] = 96758, + [SMALL_STATE(3118)] = 96783, + [SMALL_STATE(3119)] = 96808, + [SMALL_STATE(3120)] = 96833, + [SMALL_STATE(3121)] = 96862, + [SMALL_STATE(3122)] = 96887, + [SMALL_STATE(3123)] = 96912, + [SMALL_STATE(3124)] = 96941, + [SMALL_STATE(3125)] = 96966, + [SMALL_STATE(3126)] = 96995, + [SMALL_STATE(3127)] = 97024, + [SMALL_STATE(3128)] = 97049, + [SMALL_STATE(3129)] = 97095, + [SMALL_STATE(3130)] = 97117, + [SMALL_STATE(3131)] = 97141, + [SMALL_STATE(3132)] = 97165, + [SMALL_STATE(3133)] = 97189, + [SMALL_STATE(3134)] = 97235, + [SMALL_STATE(3135)] = 97281, + [SMALL_STATE(3136)] = 97321, + [SMALL_STATE(3137)] = 97345, + [SMALL_STATE(3138)] = 97369, + [SMALL_STATE(3139)] = 97393, + [SMALL_STATE(3140)] = 97417, + [SMALL_STATE(3141)] = 97441, + [SMALL_STATE(3142)] = 97465, + [SMALL_STATE(3143)] = 97511, + [SMALL_STATE(3144)] = 97533, + [SMALL_STATE(3145)] = 97555, + [SMALL_STATE(3146)] = 97579, + [SMALL_STATE(3147)] = 97603, + [SMALL_STATE(3148)] = 97627, + [SMALL_STATE(3149)] = 97651, + [SMALL_STATE(3150)] = 97675, + [SMALL_STATE(3151)] = 97699, + [SMALL_STATE(3152)] = 97723, + [SMALL_STATE(3153)] = 97759, + [SMALL_STATE(3154)] = 97785, + [SMALL_STATE(3155)] = 97809, + [SMALL_STATE(3156)] = 97833, + [SMALL_STATE(3157)] = 97857, + [SMALL_STATE(3158)] = 97881, + [SMALL_STATE(3159)] = 97921, + [SMALL_STATE(3160)] = 97945, + [SMALL_STATE(3161)] = 97969, + [SMALL_STATE(3162)] = 98005, + [SMALL_STATE(3163)] = 98045, + [SMALL_STATE(3164)] = 98069, + [SMALL_STATE(3165)] = 98091, + [SMALL_STATE(3166)] = 98115, + [SMALL_STATE(3167)] = 98139, + [SMALL_STATE(3168)] = 98163, + [SMALL_STATE(3169)] = 98187, + [SMALL_STATE(3170)] = 98211, + [SMALL_STATE(3171)] = 98235, + [SMALL_STATE(3172)] = 98259, + [SMALL_STATE(3173)] = 98281, + [SMALL_STATE(3174)] = 98303, + [SMALL_STATE(3175)] = 98325, + [SMALL_STATE(3176)] = 98347, + [SMALL_STATE(3177)] = 98369, + [SMALL_STATE(3178)] = 98393, + [SMALL_STATE(3179)] = 98417, + [SMALL_STATE(3180)] = 98441, + [SMALL_STATE(3181)] = 98465, + [SMALL_STATE(3182)] = 98489, + [SMALL_STATE(3183)] = 98511, + [SMALL_STATE(3184)] = 98535, + [SMALL_STATE(3185)] = 98559, + [SMALL_STATE(3186)] = 98599, + [SMALL_STATE(3187)] = 98623, + [SMALL_STATE(3188)] = 98647, + [SMALL_STATE(3189)] = 98671, + [SMALL_STATE(3190)] = 98695, + [SMALL_STATE(3191)] = 98719, + [SMALL_STATE(3192)] = 98743, + [SMALL_STATE(3193)] = 98767, + [SMALL_STATE(3194)] = 98789, + [SMALL_STATE(3195)] = 98813, + [SMALL_STATE(3196)] = 98837, + [SMALL_STATE(3197)] = 98883, + [SMALL_STATE(3198)] = 98907, + [SMALL_STATE(3199)] = 98931, + [SMALL_STATE(3200)] = 98955, + [SMALL_STATE(3201)] = 98979, + [SMALL_STATE(3202)] = 99003, + [SMALL_STATE(3203)] = 99027, + [SMALL_STATE(3204)] = 99051, + [SMALL_STATE(3205)] = 99075, + [SMALL_STATE(3206)] = 99099, + [SMALL_STATE(3207)] = 99123, + [SMALL_STATE(3208)] = 99147, + [SMALL_STATE(3209)] = 99171, + [SMALL_STATE(3210)] = 99195, + [SMALL_STATE(3211)] = 99217, + [SMALL_STATE(3212)] = 99239, + [SMALL_STATE(3213)] = 99281, + [SMALL_STATE(3214)] = 99305, + [SMALL_STATE(3215)] = 99329, + [SMALL_STATE(3216)] = 99353, + [SMALL_STATE(3217)] = 99377, + [SMALL_STATE(3218)] = 99401, + [SMALL_STATE(3219)] = 99441, + [SMALL_STATE(3220)] = 99465, + [SMALL_STATE(3221)] = 99489, + [SMALL_STATE(3222)] = 99513, + [SMALL_STATE(3223)] = 99559, + [SMALL_STATE(3224)] = 99583, + [SMALL_STATE(3225)] = 99605, + [SMALL_STATE(3226)] = 99629, + [SMALL_STATE(3227)] = 99663, + [SMALL_STATE(3228)] = 99687, + [SMALL_STATE(3229)] = 99711, + [SMALL_STATE(3230)] = 99757, + [SMALL_STATE(3231)] = 99785, + [SMALL_STATE(3232)] = 99809, + [SMALL_STATE(3233)] = 99837, + [SMALL_STATE(3234)] = 99865, + [SMALL_STATE(3235)] = 99893, + [SMALL_STATE(3236)] = 99921, + [SMALL_STATE(3237)] = 99949, + [SMALL_STATE(3238)] = 99977, + [SMALL_STATE(3239)] = 100005, + [SMALL_STATE(3240)] = 100033, + [SMALL_STATE(3241)] = 100061, + [SMALL_STATE(3242)] = 100089, + [SMALL_STATE(3243)] = 100117, + [SMALL_STATE(3244)] = 100141, + [SMALL_STATE(3245)] = 100181, + [SMALL_STATE(3246)] = 100203, + [SMALL_STATE(3247)] = 100227, + [SMALL_STATE(3248)] = 100251, + [SMALL_STATE(3249)] = 100291, + [SMALL_STATE(3250)] = 100313, + [SMALL_STATE(3251)] = 100337, + [SMALL_STATE(3252)] = 100383, + [SMALL_STATE(3253)] = 100407, + [SMALL_STATE(3254)] = 100431, + [SMALL_STATE(3255)] = 100455, + [SMALL_STATE(3256)] = 100501, + [SMALL_STATE(3257)] = 100525, + [SMALL_STATE(3258)] = 100567, + [SMALL_STATE(3259)] = 100591, + [SMALL_STATE(3260)] = 100625, + [SMALL_STATE(3261)] = 100651, + [SMALL_STATE(3262)] = 100685, + [SMALL_STATE(3263)] = 100709, + [SMALL_STATE(3264)] = 100743, + [SMALL_STATE(3265)] = 100767, + [SMALL_STATE(3266)] = 100791, + [SMALL_STATE(3267)] = 100837, + [SMALL_STATE(3268)] = 100876, + [SMALL_STATE(3269)] = 100899, + [SMALL_STATE(3270)] = 100922, + [SMALL_STATE(3271)] = 100947, + [SMALL_STATE(3272)] = 100970, + [SMALL_STATE(3273)] = 100991, + [SMALL_STATE(3274)] = 101012, + [SMALL_STATE(3275)] = 101033, + [SMALL_STATE(3276)] = 101054, + [SMALL_STATE(3277)] = 101081, + [SMALL_STATE(3278)] = 101104, + [SMALL_STATE(3279)] = 101127, + [SMALL_STATE(3280)] = 101150, + [SMALL_STATE(3281)] = 101173, + [SMALL_STATE(3282)] = 101196, + [SMALL_STATE(3283)] = 101217, + [SMALL_STATE(3284)] = 101238, + [SMALL_STATE(3285)] = 101265, + [SMALL_STATE(3286)] = 101286, + [SMALL_STATE(3287)] = 101307, + [SMALL_STATE(3288)] = 101328, + [SMALL_STATE(3289)] = 101349, + [SMALL_STATE(3290)] = 101376, + [SMALL_STATE(3291)] = 101397, + [SMALL_STATE(3292)] = 101418, + [SMALL_STATE(3293)] = 101441, + [SMALL_STATE(3294)] = 101468, + [SMALL_STATE(3295)] = 101495, + [SMALL_STATE(3296)] = 101516, + [SMALL_STATE(3297)] = 101537, + [SMALL_STATE(3298)] = 101558, + [SMALL_STATE(3299)] = 101579, + [SMALL_STATE(3300)] = 101606, + [SMALL_STATE(3301)] = 101633, + [SMALL_STATE(3302)] = 101660, + [SMALL_STATE(3303)] = 101687, + [SMALL_STATE(3304)] = 101714, + [SMALL_STATE(3305)] = 101741, + [SMALL_STATE(3306)] = 101768, + [SMALL_STATE(3307)] = 101789, + [SMALL_STATE(3308)] = 101816, + [SMALL_STATE(3309)] = 101843, + [SMALL_STATE(3310)] = 101870, + [SMALL_STATE(3311)] = 101897, + [SMALL_STATE(3312)] = 101918, + [SMALL_STATE(3313)] = 101957, + [SMALL_STATE(3314)] = 101978, + [SMALL_STATE(3315)] = 102017, + [SMALL_STATE(3316)] = 102038, + [SMALL_STATE(3317)] = 102075, + [SMALL_STATE(3318)] = 102096, + [SMALL_STATE(3319)] = 102117, + [SMALL_STATE(3320)] = 102140, + [SMALL_STATE(3321)] = 102177, + [SMALL_STATE(3322)] = 102200, + [SMALL_STATE(3323)] = 102221, + [SMALL_STATE(3324)] = 102242, + [SMALL_STATE(3325)] = 102279, + [SMALL_STATE(3326)] = 102300, + [SMALL_STATE(3327)] = 102321, + [SMALL_STATE(3328)] = 102342, + [SMALL_STATE(3329)] = 102363, + [SMALL_STATE(3330)] = 102384, + [SMALL_STATE(3331)] = 102405, + [SMALL_STATE(3332)] = 102426, + [SMALL_STATE(3333)] = 102447, + [SMALL_STATE(3334)] = 102474, + [SMALL_STATE(3335)] = 102495, + [SMALL_STATE(3336)] = 102522, + [SMALL_STATE(3337)] = 102545, + [SMALL_STATE(3338)] = 102566, + [SMALL_STATE(3339)] = 102587, + [SMALL_STATE(3340)] = 102608, + [SMALL_STATE(3341)] = 102631, + [SMALL_STATE(3342)] = 102668, + [SMALL_STATE(3343)] = 102689, + [SMALL_STATE(3344)] = 102710, + [SMALL_STATE(3345)] = 102733, + [SMALL_STATE(3346)] = 102770, + [SMALL_STATE(3347)] = 102791, + [SMALL_STATE(3348)] = 102830, + [SMALL_STATE(3349)] = 102853, + [SMALL_STATE(3350)] = 102876, + [SMALL_STATE(3351)] = 102899, + [SMALL_STATE(3352)] = 102922, + [SMALL_STATE(3353)] = 102943, + [SMALL_STATE(3354)] = 102964, + [SMALL_STATE(3355)] = 103003, + [SMALL_STATE(3356)] = 103026, + [SMALL_STATE(3357)] = 103063, + [SMALL_STATE(3358)] = 103100, + [SMALL_STATE(3359)] = 103137, + [SMALL_STATE(3360)] = 103164, + [SMALL_STATE(3361)] = 103185, + [SMALL_STATE(3362)] = 103206, + [SMALL_STATE(3363)] = 103233, + [SMALL_STATE(3364)] = 103270, + [SMALL_STATE(3365)] = 103291, + [SMALL_STATE(3366)] = 103312, + [SMALL_STATE(3367)] = 103333, + [SMALL_STATE(3368)] = 103360, + [SMALL_STATE(3369)] = 103381, + [SMALL_STATE(3370)] = 103402, + [SMALL_STATE(3371)] = 103441, + [SMALL_STATE(3372)] = 103478, + [SMALL_STATE(3373)] = 103499, + [SMALL_STATE(3374)] = 103520, + [SMALL_STATE(3375)] = 103541, + [SMALL_STATE(3376)] = 103578, + [SMALL_STATE(3377)] = 103615, + [SMALL_STATE(3378)] = 103636, + [SMALL_STATE(3379)] = 103659, + [SMALL_STATE(3380)] = 103696, + [SMALL_STATE(3381)] = 103717, + [SMALL_STATE(3382)] = 103740, + [SMALL_STATE(3383)] = 103763, + [SMALL_STATE(3384)] = 103790, + [SMALL_STATE(3385)] = 103813, + [SMALL_STATE(3386)] = 103834, + [SMALL_STATE(3387)] = 103855, + [SMALL_STATE(3388)] = 103876, + [SMALL_STATE(3389)] = 103899, + [SMALL_STATE(3390)] = 103920, + [SMALL_STATE(3391)] = 103943, + [SMALL_STATE(3392)] = 103964, + [SMALL_STATE(3393)] = 103993, + [SMALL_STATE(3394)] = 104014, + [SMALL_STATE(3395)] = 104035, + [SMALL_STATE(3396)] = 104074, + [SMALL_STATE(3397)] = 104101, + [SMALL_STATE(3398)] = 104124, + [SMALL_STATE(3399)] = 104147, + [SMALL_STATE(3400)] = 104170, + [SMALL_STATE(3401)] = 104193, + [SMALL_STATE(3402)] = 104216, + [SMALL_STATE(3403)] = 104237, + [SMALL_STATE(3404)] = 104260, + [SMALL_STATE(3405)] = 104281, + [SMALL_STATE(3406)] = 104304, + [SMALL_STATE(3407)] = 104327, + [SMALL_STATE(3408)] = 104361, + [SMALL_STATE(3409)] = 104385, + [SMALL_STATE(3410)] = 104409, + [SMALL_STATE(3411)] = 104435, + [SMALL_STATE(3412)] = 104461, + [SMALL_STATE(3413)] = 104495, + [SMALL_STATE(3414)] = 104521, + [SMALL_STATE(3415)] = 104547, + [SMALL_STATE(3416)] = 104583, + [SMALL_STATE(3417)] = 104607, + [SMALL_STATE(3418)] = 104631, + [SMALL_STATE(3419)] = 104657, + [SMALL_STATE(3420)] = 104687, + [SMALL_STATE(3421)] = 104713, + [SMALL_STATE(3422)] = 104737, + [SMALL_STATE(3423)] = 104767, + [SMALL_STATE(3424)] = 104801, + [SMALL_STATE(3425)] = 104825, + [SMALL_STATE(3426)] = 104857, + [SMALL_STATE(3427)] = 104887, + [SMALL_STATE(3428)] = 104909, + [SMALL_STATE(3429)] = 104933, + [SMALL_STATE(3430)] = 104959, + [SMALL_STATE(3431)] = 104985, + [SMALL_STATE(3432)] = 105011, + [SMALL_STATE(3433)] = 105047, + [SMALL_STATE(3434)] = 105071, + [SMALL_STATE(3435)] = 105103, + [SMALL_STATE(3436)] = 105129, + [SMALL_STATE(3437)] = 105155, + [SMALL_STATE(3438)] = 105187, + [SMALL_STATE(3439)] = 105219, + [SMALL_STATE(3440)] = 105251, + [SMALL_STATE(3441)] = 105275, + [SMALL_STATE(3442)] = 105311, + [SMALL_STATE(3443)] = 105333, + [SMALL_STATE(3444)] = 105357, + [SMALL_STATE(3445)] = 105383, + [SMALL_STATE(3446)] = 105419, + [SMALL_STATE(3447)] = 105444, + [SMALL_STATE(3448)] = 105467, + [SMALL_STATE(3449)] = 105488, + [SMALL_STATE(3450)] = 105511, + [SMALL_STATE(3451)] = 105542, + [SMALL_STATE(3452)] = 105573, + [SMALL_STATE(3453)] = 105596, + [SMALL_STATE(3454)] = 105629, + [SMALL_STATE(3455)] = 105662, + [SMALL_STATE(3456)] = 105695, + [SMALL_STATE(3457)] = 105728, + [SMALL_STATE(3458)] = 105759, + [SMALL_STATE(3459)] = 105790, + [SMALL_STATE(3460)] = 105811, + [SMALL_STATE(3461)] = 105834, + [SMALL_STATE(3462)] = 105867, + [SMALL_STATE(3463)] = 105900, + [SMALL_STATE(3464)] = 105925, + [SMALL_STATE(3465)] = 105950, + [SMALL_STATE(3466)] = 105971, + [SMALL_STATE(3467)] = 105992, + [SMALL_STATE(3468)] = 106013, + [SMALL_STATE(3469)] = 106034, + [SMALL_STATE(3470)] = 106063, + [SMALL_STATE(3471)] = 106084, + [SMALL_STATE(3472)] = 106105, + [SMALL_STATE(3473)] = 106138, + [SMALL_STATE(3474)] = 106171, + [SMALL_STATE(3475)] = 106192, + [SMALL_STATE(3476)] = 106225, + [SMALL_STATE(3477)] = 106250, + [SMALL_STATE(3478)] = 106283, + [SMALL_STATE(3479)] = 106308, + [SMALL_STATE(3480)] = 106341, + [SMALL_STATE(3481)] = 106374, + [SMALL_STATE(3482)] = 106409, + [SMALL_STATE(3483)] = 106434, + [SMALL_STATE(3484)] = 106467, + [SMALL_STATE(3485)] = 106500, + [SMALL_STATE(3486)] = 106531, + [SMALL_STATE(3487)] = 106566, + [SMALL_STATE(3488)] = 106587, + [SMALL_STATE(3489)] = 106608, + [SMALL_STATE(3490)] = 106629, + [SMALL_STATE(3491)] = 106660, + [SMALL_STATE(3492)] = 106681, + [SMALL_STATE(3493)] = 106706, + [SMALL_STATE(3494)] = 106739, + [SMALL_STATE(3495)] = 106772, + [SMALL_STATE(3496)] = 106803, + [SMALL_STATE(3497)] = 106836, + [SMALL_STATE(3498)] = 106869, + [SMALL_STATE(3499)] = 106890, + [SMALL_STATE(3500)] = 106923, + [SMALL_STATE(3501)] = 106956, + [SMALL_STATE(3502)] = 106987, + [SMALL_STATE(3503)] = 107020, + [SMALL_STATE(3504)] = 107053, + [SMALL_STATE(3505)] = 107084, + [SMALL_STATE(3506)] = 107117, + [SMALL_STATE(3507)] = 107150, + [SMALL_STATE(3508)] = 107181, + [SMALL_STATE(3509)] = 107214, + [SMALL_STATE(3510)] = 107247, + [SMALL_STATE(3511)] = 107278, + [SMALL_STATE(3512)] = 107311, + [SMALL_STATE(3513)] = 107344, + [SMALL_STATE(3514)] = 107375, + [SMALL_STATE(3515)] = 107408, + [SMALL_STATE(3516)] = 107441, + [SMALL_STATE(3517)] = 107472, + [SMALL_STATE(3518)] = 107505, + [SMALL_STATE(3519)] = 107538, + [SMALL_STATE(3520)] = 107569, + [SMALL_STATE(3521)] = 107602, + [SMALL_STATE(3522)] = 107635, + [SMALL_STATE(3523)] = 107666, + [SMALL_STATE(3524)] = 107699, + [SMALL_STATE(3525)] = 107732, + [SMALL_STATE(3526)] = 107763, + [SMALL_STATE(3527)] = 107794, + [SMALL_STATE(3528)] = 107825, + [SMALL_STATE(3529)] = 107856, + [SMALL_STATE(3530)] = 107887, + [SMALL_STATE(3531)] = 107918, + [SMALL_STATE(3532)] = 107949, + [SMALL_STATE(3533)] = 107970, + [SMALL_STATE(3534)] = 107993, + [SMALL_STATE(3535)] = 108024, + [SMALL_STATE(3536)] = 108051, + [SMALL_STATE(3537)] = 108076, + [SMALL_STATE(3538)] = 108099, + [SMALL_STATE(3539)] = 108120, + [SMALL_STATE(3540)] = 108141, + [SMALL_STATE(3541)] = 108164, + [SMALL_STATE(3542)] = 108185, + [SMALL_STATE(3543)] = 108206, + [SMALL_STATE(3544)] = 108231, + [SMALL_STATE(3545)] = 108262, + [SMALL_STATE(3546)] = 108286, + [SMALL_STATE(3547)] = 108314, + [SMALL_STATE(3548)] = 108336, + [SMALL_STATE(3549)] = 108358, + [SMALL_STATE(3550)] = 108386, + [SMALL_STATE(3551)] = 108414, + [SMALL_STATE(3552)] = 108434, + [SMALL_STATE(3553)] = 108458, + [SMALL_STATE(3554)] = 108480, + [SMALL_STATE(3555)] = 108508, + [SMALL_STATE(3556)] = 108536, + [SMALL_STATE(3557)] = 108562, + [SMALL_STATE(3558)] = 108590, + [SMALL_STATE(3559)] = 108618, + [SMALL_STATE(3560)] = 108642, + [SMALL_STATE(3561)] = 108670, + [SMALL_STATE(3562)] = 108698, + [SMALL_STATE(3563)] = 108716, + [SMALL_STATE(3564)] = 108742, + [SMALL_STATE(3565)] = 108770, + [SMALL_STATE(3566)] = 108798, + [SMALL_STATE(3567)] = 108824, + [SMALL_STATE(3568)] = 108852, + [SMALL_STATE(3569)] = 108880, + [SMALL_STATE(3570)] = 108908, + [SMALL_STATE(3571)] = 108936, + [SMALL_STATE(3572)] = 108958, + [SMALL_STATE(3573)] = 108986, + [SMALL_STATE(3574)] = 109014, + [SMALL_STATE(3575)] = 109044, + [SMALL_STATE(3576)] = 109064, + [SMALL_STATE(3577)] = 109092, + [SMALL_STATE(3578)] = 109114, + [SMALL_STATE(3579)] = 109142, + [SMALL_STATE(3580)] = 109162, + [SMALL_STATE(3581)] = 109182, + [SMALL_STATE(3582)] = 109210, + [SMALL_STATE(3583)] = 109238, + [SMALL_STATE(3584)] = 109258, + [SMALL_STATE(3585)] = 109278, + [SMALL_STATE(3586)] = 109298, + [SMALL_STATE(3587)] = 109326, + [SMALL_STATE(3588)] = 109354, + [SMALL_STATE(3589)] = 109382, + [SMALL_STATE(3590)] = 109406, + [SMALL_STATE(3591)] = 109434, + [SMALL_STATE(3592)] = 109462, + [SMALL_STATE(3593)] = 109490, + [SMALL_STATE(3594)] = 109518, + [SMALL_STATE(3595)] = 109546, + [SMALL_STATE(3596)] = 109574, + [SMALL_STATE(3597)] = 109602, + [SMALL_STATE(3598)] = 109630, + [SMALL_STATE(3599)] = 109660, + [SMALL_STATE(3600)] = 109688, + [SMALL_STATE(3601)] = 109712, + [SMALL_STATE(3602)] = 109740, + [SMALL_STATE(3603)] = 109768, + [SMALL_STATE(3604)] = 109796, + [SMALL_STATE(3605)] = 109824, + [SMALL_STATE(3606)] = 109852, + [SMALL_STATE(3607)] = 109880, + [SMALL_STATE(3608)] = 109908, + [SMALL_STATE(3609)] = 109936, + [SMALL_STATE(3610)] = 109956, + [SMALL_STATE(3611)] = 109984, + [SMALL_STATE(3612)] = 110006, + [SMALL_STATE(3613)] = 110034, + [SMALL_STATE(3614)] = 110060, + [SMALL_STATE(3615)] = 110084, + [SMALL_STATE(3616)] = 110106, + [SMALL_STATE(3617)] = 110124, + [SMALL_STATE(3618)] = 110152, + [SMALL_STATE(3619)] = 110174, + [SMALL_STATE(3620)] = 110194, + [SMALL_STATE(3621)] = 110222, + [SMALL_STATE(3622)] = 110241, + [SMALL_STATE(3623)] = 110262, + [SMALL_STATE(3624)] = 110289, + [SMALL_STATE(3625)] = 110308, + [SMALL_STATE(3626)] = 110335, + [SMALL_STATE(3627)] = 110360, + [SMALL_STATE(3628)] = 110379, + [SMALL_STATE(3629)] = 110404, + [SMALL_STATE(3630)] = 110429, + [SMALL_STATE(3631)] = 110454, + [SMALL_STATE(3632)] = 110475, + [SMALL_STATE(3633)] = 110500, + [SMALL_STATE(3634)] = 110521, + [SMALL_STATE(3635)] = 110546, + [SMALL_STATE(3636)] = 110565, + [SMALL_STATE(3637)] = 110590, + [SMALL_STATE(3638)] = 110615, + [SMALL_STATE(3639)] = 110636, + [SMALL_STATE(3640)] = 110665, + [SMALL_STATE(3641)] = 110688, + [SMALL_STATE(3642)] = 110713, + [SMALL_STATE(3643)] = 110740, + [SMALL_STATE(3644)] = 110759, + [SMALL_STATE(3645)] = 110784, + [SMALL_STATE(3646)] = 110803, + [SMALL_STATE(3647)] = 110828, + [SMALL_STATE(3648)] = 110847, + [SMALL_STATE(3649)] = 110866, + [SMALL_STATE(3650)] = 110885, + [SMALL_STATE(3651)] = 110910, + [SMALL_STATE(3652)] = 110929, + [SMALL_STATE(3653)] = 110956, + [SMALL_STATE(3654)] = 110979, + [SMALL_STATE(3655)] = 111004, + [SMALL_STATE(3656)] = 111023, + [SMALL_STATE(3657)] = 111042, + [SMALL_STATE(3658)] = 111065, + [SMALL_STATE(3659)] = 111092, + [SMALL_STATE(3660)] = 111113, + [SMALL_STATE(3661)] = 111136, + [SMALL_STATE(3662)] = 111155, + [SMALL_STATE(3663)] = 111176, + [SMALL_STATE(3664)] = 111195, + [SMALL_STATE(3665)] = 111222, + [SMALL_STATE(3666)] = 111245, + [SMALL_STATE(3667)] = 111266, + [SMALL_STATE(3668)] = 111285, + [SMALL_STATE(3669)] = 111310, + [SMALL_STATE(3670)] = 111329, + [SMALL_STATE(3671)] = 111348, + [SMALL_STATE(3672)] = 111373, + [SMALL_STATE(3673)] = 111392, + [SMALL_STATE(3674)] = 111423, + [SMALL_STATE(3675)] = 111442, + [SMALL_STATE(3676)] = 111470, + [SMALL_STATE(3677)] = 111492, + [SMALL_STATE(3678)] = 111520, + [SMALL_STATE(3679)] = 111548, + [SMALL_STATE(3680)] = 111572, + [SMALL_STATE(3681)] = 111598, + [SMALL_STATE(3682)] = 111626, + [SMALL_STATE(3683)] = 111648, + [SMALL_STATE(3684)] = 111676, + [SMALL_STATE(3685)] = 111704, + [SMALL_STATE(3686)] = 111732, + [SMALL_STATE(3687)] = 111760, + [SMALL_STATE(3688)] = 111778, + [SMALL_STATE(3689)] = 111802, + [SMALL_STATE(3690)] = 111820, + [SMALL_STATE(3691)] = 111848, + [SMALL_STATE(3692)] = 111874, + [SMALL_STATE(3693)] = 111900, + [SMALL_STATE(3694)] = 111926, + [SMALL_STATE(3695)] = 111944, + [SMALL_STATE(3696)] = 111966, + [SMALL_STATE(3697)] = 111992, + [SMALL_STATE(3698)] = 112020, + [SMALL_STATE(3699)] = 112044, + [SMALL_STATE(3700)] = 112062, + [SMALL_STATE(3701)] = 112084, + [SMALL_STATE(3702)] = 112102, + [SMALL_STATE(3703)] = 112128, + [SMALL_STATE(3704)] = 112148, + [SMALL_STATE(3705)] = 112168, + [SMALL_STATE(3706)] = 112188, + [SMALL_STATE(3707)] = 112214, + [SMALL_STATE(3708)] = 112238, + [SMALL_STATE(3709)] = 112256, + [SMALL_STATE(3710)] = 112282, + [SMALL_STATE(3711)] = 112310, + [SMALL_STATE(3712)] = 112334, + [SMALL_STATE(3713)] = 112362, + [SMALL_STATE(3714)] = 112390, + [SMALL_STATE(3715)] = 112414, + [SMALL_STATE(3716)] = 112440, + [SMALL_STATE(3717)] = 112466, + [SMALL_STATE(3718)] = 112492, + [SMALL_STATE(3719)] = 112518, + [SMALL_STATE(3720)] = 112546, + [SMALL_STATE(3721)] = 112570, + [SMALL_STATE(3722)] = 112596, + [SMALL_STATE(3723)] = 112622, + [SMALL_STATE(3724)] = 112644, + [SMALL_STATE(3725)] = 112670, + [SMALL_STATE(3726)] = 112688, + [SMALL_STATE(3727)] = 112710, + [SMALL_STATE(3728)] = 112736, + [SMALL_STATE(3729)] = 112764, + [SMALL_STATE(3730)] = 112792, + [SMALL_STATE(3731)] = 112820, + [SMALL_STATE(3732)] = 112848, + [SMALL_STATE(3733)] = 112876, + [SMALL_STATE(3734)] = 112904, + [SMALL_STATE(3735)] = 112932, + [SMALL_STATE(3736)] = 112960, + [SMALL_STATE(3737)] = 112988, + [SMALL_STATE(3738)] = 113016, + [SMALL_STATE(3739)] = 113044, + [SMALL_STATE(3740)] = 113072, + [SMALL_STATE(3741)] = 113100, + [SMALL_STATE(3742)] = 113128, + [SMALL_STATE(3743)] = 113156, + [SMALL_STATE(3744)] = 113184, + [SMALL_STATE(3745)] = 113202, + [SMALL_STATE(3746)] = 113220, + [SMALL_STATE(3747)] = 113248, + [SMALL_STATE(3748)] = 113276, + [SMALL_STATE(3749)] = 113296, + [SMALL_STATE(3750)] = 113324, + [SMALL_STATE(3751)] = 113350, + [SMALL_STATE(3752)] = 113370, + [SMALL_STATE(3753)] = 113390, + [SMALL_STATE(3754)] = 113410, + [SMALL_STATE(3755)] = 113430, + [SMALL_STATE(3756)] = 113454, + [SMALL_STATE(3757)] = 113482, + [SMALL_STATE(3758)] = 113508, + [SMALL_STATE(3759)] = 113536, + [SMALL_STATE(3760)] = 113554, + [SMALL_STATE(3761)] = 113582, + [SMALL_STATE(3762)] = 113610, + [SMALL_STATE(3763)] = 113638, + [SMALL_STATE(3764)] = 113660, + [SMALL_STATE(3765)] = 113688, + [SMALL_STATE(3766)] = 113712, + [SMALL_STATE(3767)] = 113740, + [SMALL_STATE(3768)] = 113764, + [SMALL_STATE(3769)] = 113790, + [SMALL_STATE(3770)] = 113812, + [SMALL_STATE(3771)] = 113834, + [SMALL_STATE(3772)] = 113852, + [SMALL_STATE(3773)] = 113870, + [SMALL_STATE(3774)] = 113898, + [SMALL_STATE(3775)] = 113924, + [SMALL_STATE(3776)] = 113942, + [SMALL_STATE(3777)] = 113964, + [SMALL_STATE(3778)] = 113990, + [SMALL_STATE(3779)] = 114012, + [SMALL_STATE(3780)] = 114040, + [SMALL_STATE(3781)] = 114068, + [SMALL_STATE(3782)] = 114096, + [SMALL_STATE(3783)] = 114124, + [SMALL_STATE(3784)] = 114146, + [SMALL_STATE(3785)] = 114174, + [SMALL_STATE(3786)] = 114199, + [SMALL_STATE(3787)] = 114218, + [SMALL_STATE(3788)] = 114237, + [SMALL_STATE(3789)] = 114258, + [SMALL_STATE(3790)] = 114283, + [SMALL_STATE(3791)] = 114304, + [SMALL_STATE(3792)] = 114325, + [SMALL_STATE(3793)] = 114350, + [SMALL_STATE(3794)] = 114373, + [SMALL_STATE(3795)] = 114394, + [SMALL_STATE(3796)] = 114419, + [SMALL_STATE(3797)] = 114438, + [SMALL_STATE(3798)] = 114463, + [SMALL_STATE(3799)] = 114482, + [SMALL_STATE(3800)] = 114507, + [SMALL_STATE(3801)] = 114526, + [SMALL_STATE(3802)] = 114547, + [SMALL_STATE(3803)] = 114568, + [SMALL_STATE(3804)] = 114593, + [SMALL_STATE(3805)] = 114614, + [SMALL_STATE(3806)] = 114637, + [SMALL_STATE(3807)] = 114658, + [SMALL_STATE(3808)] = 114679, + [SMALL_STATE(3809)] = 114702, + [SMALL_STATE(3810)] = 114721, + [SMALL_STATE(3811)] = 114740, + [SMALL_STATE(3812)] = 114765, + [SMALL_STATE(3813)] = 114784, + [SMALL_STATE(3814)] = 114807, + [SMALL_STATE(3815)] = 114828, + [SMALL_STATE(3816)] = 114849, + [SMALL_STATE(3817)] = 114870, + [SMALL_STATE(3818)] = 114889, + [SMALL_STATE(3819)] = 114912, + [SMALL_STATE(3820)] = 114937, + [SMALL_STATE(3821)] = 114960, + [SMALL_STATE(3822)] = 114983, + [SMALL_STATE(3823)] = 115004, + [SMALL_STATE(3824)] = 115027, + [SMALL_STATE(3825)] = 115052, + [SMALL_STATE(3826)] = 115073, + [SMALL_STATE(3827)] = 115090, + [SMALL_STATE(3828)] = 115109, + [SMALL_STATE(3829)] = 115130, + [SMALL_STATE(3830)] = 115153, + [SMALL_STATE(3831)] = 115178, + [SMALL_STATE(3832)] = 115201, + [SMALL_STATE(3833)] = 115216, + [SMALL_STATE(3834)] = 115239, + [SMALL_STATE(3835)] = 115262, + [SMALL_STATE(3836)] = 115283, + [SMALL_STATE(3837)] = 115306, + [SMALL_STATE(3838)] = 115325, + [SMALL_STATE(3839)] = 115344, + [SMALL_STATE(3840)] = 115369, + [SMALL_STATE(3841)] = 115392, + [SMALL_STATE(3842)] = 115407, + [SMALL_STATE(3843)] = 115430, + [SMALL_STATE(3844)] = 115453, + [SMALL_STATE(3845)] = 115476, + [SMALL_STATE(3846)] = 115499, + [SMALL_STATE(3847)] = 115514, + [SMALL_STATE(3848)] = 115537, + [SMALL_STATE(3849)] = 115560, + [SMALL_STATE(3850)] = 115583, + [SMALL_STATE(3851)] = 115604, + [SMALL_STATE(3852)] = 115625, + [SMALL_STATE(3853)] = 115648, + [SMALL_STATE(3854)] = 115671, + [SMALL_STATE(3855)] = 115694, + [SMALL_STATE(3856)] = 115717, + [SMALL_STATE(3857)] = 115740, + [SMALL_STATE(3858)] = 115761, + [SMALL_STATE(3859)] = 115782, + [SMALL_STATE(3860)] = 115805, + [SMALL_STATE(3861)] = 115824, + [SMALL_STATE(3862)] = 115847, + [SMALL_STATE(3863)] = 115868, + [SMALL_STATE(3864)] = 115893, + [SMALL_STATE(3865)] = 115908, + [SMALL_STATE(3866)] = 115931, + [SMALL_STATE(3867)] = 115952, + [SMALL_STATE(3868)] = 115973, + [SMALL_STATE(3869)] = 115992, + [SMALL_STATE(3870)] = 116011, + [SMALL_STATE(3871)] = 116026, + [SMALL_STATE(3872)] = 116043, + [SMALL_STATE(3873)] = 116064, + [SMALL_STATE(3874)] = 116089, + [SMALL_STATE(3875)] = 116104, + [SMALL_STATE(3876)] = 116129, + [SMALL_STATE(3877)] = 116152, + [SMALL_STATE(3878)] = 116177, + [SMALL_STATE(3879)] = 116200, + [SMALL_STATE(3880)] = 116221, + [SMALL_STATE(3881)] = 116246, + [SMALL_STATE(3882)] = 116271, + [SMALL_STATE(3883)] = 116294, + [SMALL_STATE(3884)] = 116317, + [SMALL_STATE(3885)] = 116340, + [SMALL_STATE(3886)] = 116361, + [SMALL_STATE(3887)] = 116384, + [SMALL_STATE(3888)] = 116401, + [SMALL_STATE(3889)] = 116424, + [SMALL_STATE(3890)] = 116443, + [SMALL_STATE(3891)] = 116460, + [SMALL_STATE(3892)] = 116479, + [SMALL_STATE(3893)] = 116502, + [SMALL_STATE(3894)] = 116525, + [SMALL_STATE(3895)] = 116548, + [SMALL_STATE(3896)] = 116569, + [SMALL_STATE(3897)] = 116592, + [SMALL_STATE(3898)] = 116613, + [SMALL_STATE(3899)] = 116636, + [SMALL_STATE(3900)] = 116657, + [SMALL_STATE(3901)] = 116678, + [SMALL_STATE(3902)] = 116699, + [SMALL_STATE(3903)] = 116722, + [SMALL_STATE(3904)] = 116743, + [SMALL_STATE(3905)] = 116768, + [SMALL_STATE(3906)] = 116793, + [SMALL_STATE(3907)] = 116818, + [SMALL_STATE(3908)] = 116837, + [SMALL_STATE(3909)] = 116860, + [SMALL_STATE(3910)] = 116877, + [SMALL_STATE(3911)] = 116900, + [SMALL_STATE(3912)] = 116923, + [SMALL_STATE(3913)] = 116946, + [SMALL_STATE(3914)] = 116967, + [SMALL_STATE(3915)] = 116990, + [SMALL_STATE(3916)] = 117013, + [SMALL_STATE(3917)] = 117032, + [SMALL_STATE(3918)] = 117057, + [SMALL_STATE(3919)] = 117082, + [SMALL_STATE(3920)] = 117107, + [SMALL_STATE(3921)] = 117128, + [SMALL_STATE(3922)] = 117151, + [SMALL_STATE(3923)] = 117176, + [SMALL_STATE(3924)] = 117201, + [SMALL_STATE(3925)] = 117222, + [SMALL_STATE(3926)] = 117243, + [SMALL_STATE(3927)] = 117266, + [SMALL_STATE(3928)] = 117291, + [SMALL_STATE(3929)] = 117314, + [SMALL_STATE(3930)] = 117335, + [SMALL_STATE(3931)] = 117358, + [SMALL_STATE(3932)] = 117383, + [SMALL_STATE(3933)] = 117405, + [SMALL_STATE(3934)] = 117423, + [SMALL_STATE(3935)] = 117439, + [SMALL_STATE(3936)] = 117459, + [SMALL_STATE(3937)] = 117477, + [SMALL_STATE(3938)] = 117499, + [SMALL_STATE(3939)] = 117519, + [SMALL_STATE(3940)] = 117539, + [SMALL_STATE(3941)] = 117555, + [SMALL_STATE(3942)] = 117573, + [SMALL_STATE(3943)] = 117593, + [SMALL_STATE(3944)] = 117609, + [SMALL_STATE(3945)] = 117629, + [SMALL_STATE(3946)] = 117651, + [SMALL_STATE(3947)] = 117669, + [SMALL_STATE(3948)] = 117687, + [SMALL_STATE(3949)] = 117703, + [SMALL_STATE(3950)] = 117721, + [SMALL_STATE(3951)] = 117741, + [SMALL_STATE(3952)] = 117757, + [SMALL_STATE(3953)] = 117773, + [SMALL_STATE(3954)] = 117789, + [SMALL_STATE(3955)] = 117805, + [SMALL_STATE(3956)] = 117821, + [SMALL_STATE(3957)] = 117843, + [SMALL_STATE(3958)] = 117863, + [SMALL_STATE(3959)] = 117879, + [SMALL_STATE(3960)] = 117895, + [SMALL_STATE(3961)] = 117915, + [SMALL_STATE(3962)] = 117933, + [SMALL_STATE(3963)] = 117953, + [SMALL_STATE(3964)] = 117969, + [SMALL_STATE(3965)] = 117985, + [SMALL_STATE(3966)] = 118005, + [SMALL_STATE(3967)] = 118025, + [SMALL_STATE(3968)] = 118045, + [SMALL_STATE(3969)] = 118065, + [SMALL_STATE(3970)] = 118087, + [SMALL_STATE(3971)] = 118103, + [SMALL_STATE(3972)] = 118125, + [SMALL_STATE(3973)] = 118145, + [SMALL_STATE(3974)] = 118163, + [SMALL_STATE(3975)] = 118185, + [SMALL_STATE(3976)] = 118205, + [SMALL_STATE(3977)] = 118223, + [SMALL_STATE(3978)] = 118241, + [SMALL_STATE(3979)] = 118261, + [SMALL_STATE(3980)] = 118281, + [SMALL_STATE(3981)] = 118301, + [SMALL_STATE(3982)] = 118321, + [SMALL_STATE(3983)] = 118341, + [SMALL_STATE(3984)] = 118363, + [SMALL_STATE(3985)] = 118383, + [SMALL_STATE(3986)] = 118403, + [SMALL_STATE(3987)] = 118423, + [SMALL_STATE(3988)] = 118443, + [SMALL_STATE(3989)] = 118463, + [SMALL_STATE(3990)] = 118483, + [SMALL_STATE(3991)] = 118505, + [SMALL_STATE(3992)] = 118525, + [SMALL_STATE(3993)] = 118541, + [SMALL_STATE(3994)] = 118557, + [SMALL_STATE(3995)] = 118577, + [SMALL_STATE(3996)] = 118599, + [SMALL_STATE(3997)] = 118617, + [SMALL_STATE(3998)] = 118633, + [SMALL_STATE(3999)] = 118655, + [SMALL_STATE(4000)] = 118675, + [SMALL_STATE(4001)] = 118691, + [SMALL_STATE(4002)] = 118711, + [SMALL_STATE(4003)] = 118731, + [SMALL_STATE(4004)] = 118751, + [SMALL_STATE(4005)] = 118765, + [SMALL_STATE(4006)] = 118787, + [SMALL_STATE(4007)] = 118801, + [SMALL_STATE(4008)] = 118821, + [SMALL_STATE(4009)] = 118837, + [SMALL_STATE(4010)] = 118857, + [SMALL_STATE(4011)] = 118877, + [SMALL_STATE(4012)] = 118899, + [SMALL_STATE(4013)] = 118919, + [SMALL_STATE(4014)] = 118935, + [SMALL_STATE(4015)] = 118955, + [SMALL_STATE(4016)] = 118977, + [SMALL_STATE(4017)] = 118999, + [SMALL_STATE(4018)] = 119019, + [SMALL_STATE(4019)] = 119041, + [SMALL_STATE(4020)] = 119063, + [SMALL_STATE(4021)] = 119081, + [SMALL_STATE(4022)] = 119103, + [SMALL_STATE(4023)] = 119123, + [SMALL_STATE(4024)] = 119141, + [SMALL_STATE(4025)] = 119159, + [SMALL_STATE(4026)] = 119179, + [SMALL_STATE(4027)] = 119193, + [SMALL_STATE(4028)] = 119213, + [SMALL_STATE(4029)] = 119235, + [SMALL_STATE(4030)] = 119257, + [SMALL_STATE(4031)] = 119277, + [SMALL_STATE(4032)] = 119299, + [SMALL_STATE(4033)] = 119317, + [SMALL_STATE(4034)] = 119337, + [SMALL_STATE(4035)] = 119359, + [SMALL_STATE(4036)] = 119381, + [SMALL_STATE(4037)] = 119399, + [SMALL_STATE(4038)] = 119421, + [SMALL_STATE(4039)] = 119439, + [SMALL_STATE(4040)] = 119453, + [SMALL_STATE(4041)] = 119471, + [SMALL_STATE(4042)] = 119485, + [SMALL_STATE(4043)] = 119501, + [SMALL_STATE(4044)] = 119521, + [SMALL_STATE(4045)] = 119541, + [SMALL_STATE(4046)] = 119559, + [SMALL_STATE(4047)] = 119579, + [SMALL_STATE(4048)] = 119601, + [SMALL_STATE(4049)] = 119621, + [SMALL_STATE(4050)] = 119643, + [SMALL_STATE(4051)] = 119659, + [SMALL_STATE(4052)] = 119681, + [SMALL_STATE(4053)] = 119703, + [SMALL_STATE(4054)] = 119717, + [SMALL_STATE(4055)] = 119739, + [SMALL_STATE(4056)] = 119759, + [SMALL_STATE(4057)] = 119779, + [SMALL_STATE(4058)] = 119799, + [SMALL_STATE(4059)] = 119821, + [SMALL_STATE(4060)] = 119841, + [SMALL_STATE(4061)] = 119857, + [SMALL_STATE(4062)] = 119873, + [SMALL_STATE(4063)] = 119889, + [SMALL_STATE(4064)] = 119909, + [SMALL_STATE(4065)] = 119929, + [SMALL_STATE(4066)] = 119945, + [SMALL_STATE(4067)] = 119967, + [SMALL_STATE(4068)] = 119981, + [SMALL_STATE(4069)] = 119997, + [SMALL_STATE(4070)] = 120013, + [SMALL_STATE(4071)] = 120031, + [SMALL_STATE(4072)] = 120051, + [SMALL_STATE(4073)] = 120073, + [SMALL_STATE(4074)] = 120095, + [SMALL_STATE(4075)] = 120111, + [SMALL_STATE(4076)] = 120133, + [SMALL_STATE(4077)] = 120155, + [SMALL_STATE(4078)] = 120169, + [SMALL_STATE(4079)] = 120187, + [SMALL_STATE(4080)] = 120209, + [SMALL_STATE(4081)] = 120231, + [SMALL_STATE(4082)] = 120253, + [SMALL_STATE(4083)] = 120271, + [SMALL_STATE(4084)] = 120293, + [SMALL_STATE(4085)] = 120311, + [SMALL_STATE(4086)] = 120331, + [SMALL_STATE(4087)] = 120349, + [SMALL_STATE(4088)] = 120367, + [SMALL_STATE(4089)] = 120387, + [SMALL_STATE(4090)] = 120405, + [SMALL_STATE(4091)] = 120423, + [SMALL_STATE(4092)] = 120445, + [SMALL_STATE(4093)] = 120458, + [SMALL_STATE(4094)] = 120471, + [SMALL_STATE(4095)] = 120490, + [SMALL_STATE(4096)] = 120503, + [SMALL_STATE(4097)] = 120518, + [SMALL_STATE(4098)] = 120531, + [SMALL_STATE(4099)] = 120548, + [SMALL_STATE(4100)] = 120561, + [SMALL_STATE(4101)] = 120574, + [SMALL_STATE(4102)] = 120587, + [SMALL_STATE(4103)] = 120600, + [SMALL_STATE(4104)] = 120613, + [SMALL_STATE(4105)] = 120628, + [SMALL_STATE(4106)] = 120641, + [SMALL_STATE(4107)] = 120654, + [SMALL_STATE(4108)] = 120667, + [SMALL_STATE(4109)] = 120686, + [SMALL_STATE(4110)] = 120699, + [SMALL_STATE(4111)] = 120714, + [SMALL_STATE(4112)] = 120733, + [SMALL_STATE(4113)] = 120752, + [SMALL_STATE(4114)] = 120767, + [SMALL_STATE(4115)] = 120784, + [SMALL_STATE(4116)] = 120799, + [SMALL_STATE(4117)] = 120814, + [SMALL_STATE(4118)] = 120829, + [SMALL_STATE(4119)] = 120844, + [SMALL_STATE(4120)] = 120859, + [SMALL_STATE(4121)] = 120876, + [SMALL_STATE(4122)] = 120891, + [SMALL_STATE(4123)] = 120910, + [SMALL_STATE(4124)] = 120927, + [SMALL_STATE(4125)] = 120946, + [SMALL_STATE(4126)] = 120959, + [SMALL_STATE(4127)] = 120972, + [SMALL_STATE(4128)] = 120985, + [SMALL_STATE(4129)] = 120998, + [SMALL_STATE(4130)] = 121011, + [SMALL_STATE(4131)] = 121024, + [SMALL_STATE(4132)] = 121043, + [SMALL_STATE(4133)] = 121060, + [SMALL_STATE(4134)] = 121077, + [SMALL_STATE(4135)] = 121092, + [SMALL_STATE(4136)] = 121107, + [SMALL_STATE(4137)] = 121124, + [SMALL_STATE(4138)] = 121141, + [SMALL_STATE(4139)] = 121156, + [SMALL_STATE(4140)] = 121169, + [SMALL_STATE(4141)] = 121184, + [SMALL_STATE(4142)] = 121203, + [SMALL_STATE(4143)] = 121218, + [SMALL_STATE(4144)] = 121237, + [SMALL_STATE(4145)] = 121252, + [SMALL_STATE(4146)] = 121269, + [SMALL_STATE(4147)] = 121286, + [SMALL_STATE(4148)] = 121303, + [SMALL_STATE(4149)] = 121318, + [SMALL_STATE(4150)] = 121335, + [SMALL_STATE(4151)] = 121352, + [SMALL_STATE(4152)] = 121369, + [SMALL_STATE(4153)] = 121388, + [SMALL_STATE(4154)] = 121401, + [SMALL_STATE(4155)] = 121416, + [SMALL_STATE(4156)] = 121431, + [SMALL_STATE(4157)] = 121450, + [SMALL_STATE(4158)] = 121463, + [SMALL_STATE(4159)] = 121478, + [SMALL_STATE(4160)] = 121491, + [SMALL_STATE(4161)] = 121504, + [SMALL_STATE(4162)] = 121517, + [SMALL_STATE(4163)] = 121530, + [SMALL_STATE(4164)] = 121549, + [SMALL_STATE(4165)] = 121568, + [SMALL_STATE(4166)] = 121583, + [SMALL_STATE(4167)] = 121596, + [SMALL_STATE(4168)] = 121615, + [SMALL_STATE(4169)] = 121628, + [SMALL_STATE(4170)] = 121643, + [SMALL_STATE(4171)] = 121656, + [SMALL_STATE(4172)] = 121675, + [SMALL_STATE(4173)] = 121688, + [SMALL_STATE(4174)] = 121703, + [SMALL_STATE(4175)] = 121716, + [SMALL_STATE(4176)] = 121729, + [SMALL_STATE(4177)] = 121742, + [SMALL_STATE(4178)] = 121759, + [SMALL_STATE(4179)] = 121776, + [SMALL_STATE(4180)] = 121789, + [SMALL_STATE(4181)] = 121802, + [SMALL_STATE(4182)] = 121815, + [SMALL_STATE(4183)] = 121828, + [SMALL_STATE(4184)] = 121841, + [SMALL_STATE(4185)] = 121854, + [SMALL_STATE(4186)] = 121867, + [SMALL_STATE(4187)] = 121884, + [SMALL_STATE(4188)] = 121897, + [SMALL_STATE(4189)] = 121910, + [SMALL_STATE(4190)] = 121929, + [SMALL_STATE(4191)] = 121946, + [SMALL_STATE(4192)] = 121963, + [SMALL_STATE(4193)] = 121982, + [SMALL_STATE(4194)] = 122001, + [SMALL_STATE(4195)] = 122020, + [SMALL_STATE(4196)] = 122037, + [SMALL_STATE(4197)] = 122052, + [SMALL_STATE(4198)] = 122071, + [SMALL_STATE(4199)] = 122090, + [SMALL_STATE(4200)] = 122109, + [SMALL_STATE(4201)] = 122128, + [SMALL_STATE(4202)] = 122147, + [SMALL_STATE(4203)] = 122166, + [SMALL_STATE(4204)] = 122183, + [SMALL_STATE(4205)] = 122202, + [SMALL_STATE(4206)] = 122217, + [SMALL_STATE(4207)] = 122230, + [SMALL_STATE(4208)] = 122243, + [SMALL_STATE(4209)] = 122256, + [SMALL_STATE(4210)] = 122269, + [SMALL_STATE(4211)] = 122282, + [SMALL_STATE(4212)] = 122295, + [SMALL_STATE(4213)] = 122308, + [SMALL_STATE(4214)] = 122323, + [SMALL_STATE(4215)] = 122336, + [SMALL_STATE(4216)] = 122349, + [SMALL_STATE(4217)] = 122368, + [SMALL_STATE(4218)] = 122381, + [SMALL_STATE(4219)] = 122394, + [SMALL_STATE(4220)] = 122413, + [SMALL_STATE(4221)] = 122426, + [SMALL_STATE(4222)] = 122439, + [SMALL_STATE(4223)] = 122452, + [SMALL_STATE(4224)] = 122465, + [SMALL_STATE(4225)] = 122478, + [SMALL_STATE(4226)] = 122493, + [SMALL_STATE(4227)] = 122512, + [SMALL_STATE(4228)] = 122531, + [SMALL_STATE(4229)] = 122550, + [SMALL_STATE(4230)] = 122569, + [SMALL_STATE(4231)] = 122588, + [SMALL_STATE(4232)] = 122607, + [SMALL_STATE(4233)] = 122626, + [SMALL_STATE(4234)] = 122645, + [SMALL_STATE(4235)] = 122664, + [SMALL_STATE(4236)] = 122679, + [SMALL_STATE(4237)] = 122698, + [SMALL_STATE(4238)] = 122713, + [SMALL_STATE(4239)] = 122728, + [SMALL_STATE(4240)] = 122741, + [SMALL_STATE(4241)] = 122754, + [SMALL_STATE(4242)] = 122767, + [SMALL_STATE(4243)] = 122780, + [SMALL_STATE(4244)] = 122793, + [SMALL_STATE(4245)] = 122806, + [SMALL_STATE(4246)] = 122819, + [SMALL_STATE(4247)] = 122832, + [SMALL_STATE(4248)] = 122851, + [SMALL_STATE(4249)] = 122870, + [SMALL_STATE(4250)] = 122883, + [SMALL_STATE(4251)] = 122896, + [SMALL_STATE(4252)] = 122911, + [SMALL_STATE(4253)] = 122928, + [SMALL_STATE(4254)] = 122943, + [SMALL_STATE(4255)] = 122958, + [SMALL_STATE(4256)] = 122973, + [SMALL_STATE(4257)] = 122986, + [SMALL_STATE(4258)] = 122999, + [SMALL_STATE(4259)] = 123014, + [SMALL_STATE(4260)] = 123029, + [SMALL_STATE(4261)] = 123042, + [SMALL_STATE(4262)] = 123055, + [SMALL_STATE(4263)] = 123068, + [SMALL_STATE(4264)] = 123081, + [SMALL_STATE(4265)] = 123100, + [SMALL_STATE(4266)] = 123113, + [SMALL_STATE(4267)] = 123132, + [SMALL_STATE(4268)] = 123145, + [SMALL_STATE(4269)] = 123158, + [SMALL_STATE(4270)] = 123177, + [SMALL_STATE(4271)] = 123190, + [SMALL_STATE(4272)] = 123207, + [SMALL_STATE(4273)] = 123222, + [SMALL_STATE(4274)] = 123237, + [SMALL_STATE(4275)] = 123250, + [SMALL_STATE(4276)] = 123263, + [SMALL_STATE(4277)] = 123278, + [SMALL_STATE(4278)] = 123291, + [SMALL_STATE(4279)] = 123304, + [SMALL_STATE(4280)] = 123317, + [SMALL_STATE(4281)] = 123330, + [SMALL_STATE(4282)] = 123345, + [SMALL_STATE(4283)] = 123358, + [SMALL_STATE(4284)] = 123371, + [SMALL_STATE(4285)] = 123386, + [SMALL_STATE(4286)] = 123399, + [SMALL_STATE(4287)] = 123414, + [SMALL_STATE(4288)] = 123429, + [SMALL_STATE(4289)] = 123444, + [SMALL_STATE(4290)] = 123457, + [SMALL_STATE(4291)] = 123470, + [SMALL_STATE(4292)] = 123485, + [SMALL_STATE(4293)] = 123500, + [SMALL_STATE(4294)] = 123515, + [SMALL_STATE(4295)] = 123528, + [SMALL_STATE(4296)] = 123547, + [SMALL_STATE(4297)] = 123560, + [SMALL_STATE(4298)] = 123573, + [SMALL_STATE(4299)] = 123592, + [SMALL_STATE(4300)] = 123609, + [SMALL_STATE(4301)] = 123622, + [SMALL_STATE(4302)] = 123635, + [SMALL_STATE(4303)] = 123648, + [SMALL_STATE(4304)] = 123663, + [SMALL_STATE(4305)] = 123676, + [SMALL_STATE(4306)] = 123689, + [SMALL_STATE(4307)] = 123702, + [SMALL_STATE(4308)] = 123715, + [SMALL_STATE(4309)] = 123728, + [SMALL_STATE(4310)] = 123741, + [SMALL_STATE(4311)] = 123760, + [SMALL_STATE(4312)] = 123773, + [SMALL_STATE(4313)] = 123786, + [SMALL_STATE(4314)] = 123799, + [SMALL_STATE(4315)] = 123812, + [SMALL_STATE(4316)] = 123829, + [SMALL_STATE(4317)] = 123846, + [SMALL_STATE(4318)] = 123859, + [SMALL_STATE(4319)] = 123876, + [SMALL_STATE(4320)] = 123893, + [SMALL_STATE(4321)] = 123908, + [SMALL_STATE(4322)] = 123925, + [SMALL_STATE(4323)] = 123938, + [SMALL_STATE(4324)] = 123955, + [SMALL_STATE(4325)] = 123968, + [SMALL_STATE(4326)] = 123981, + [SMALL_STATE(4327)] = 124000, + [SMALL_STATE(4328)] = 124013, + [SMALL_STATE(4329)] = 124026, + [SMALL_STATE(4330)] = 124039, + [SMALL_STATE(4331)] = 124052, + [SMALL_STATE(4332)] = 124067, + [SMALL_STATE(4333)] = 124080, + [SMALL_STATE(4334)] = 124093, + [SMALL_STATE(4335)] = 124108, + [SMALL_STATE(4336)] = 124121, + [SMALL_STATE(4337)] = 124134, + [SMALL_STATE(4338)] = 124147, + [SMALL_STATE(4339)] = 124160, + [SMALL_STATE(4340)] = 124173, + [SMALL_STATE(4341)] = 124190, + [SMALL_STATE(4342)] = 124203, + [SMALL_STATE(4343)] = 124216, + [SMALL_STATE(4344)] = 124229, + [SMALL_STATE(4345)] = 124244, + [SMALL_STATE(4346)] = 124257, + [SMALL_STATE(4347)] = 124270, + [SMALL_STATE(4348)] = 124283, + [SMALL_STATE(4349)] = 124296, + [SMALL_STATE(4350)] = 124309, + [SMALL_STATE(4351)] = 124324, + [SMALL_STATE(4352)] = 124339, + [SMALL_STATE(4353)] = 124352, + [SMALL_STATE(4354)] = 124369, + [SMALL_STATE(4355)] = 124382, + [SMALL_STATE(4356)] = 124397, + [SMALL_STATE(4357)] = 124410, + [SMALL_STATE(4358)] = 124429, + [SMALL_STATE(4359)] = 124444, + [SMALL_STATE(4360)] = 124463, + [SMALL_STATE(4361)] = 124482, + [SMALL_STATE(4362)] = 124499, + [SMALL_STATE(4363)] = 124512, + [SMALL_STATE(4364)] = 124525, + [SMALL_STATE(4365)] = 124544, + [SMALL_STATE(4366)] = 124563, + [SMALL_STATE(4367)] = 124580, + [SMALL_STATE(4368)] = 124599, + [SMALL_STATE(4369)] = 124612, + [SMALL_STATE(4370)] = 124629, + [SMALL_STATE(4371)] = 124642, + [SMALL_STATE(4372)] = 124657, + [SMALL_STATE(4373)] = 124670, + [SMALL_STATE(4374)] = 124683, + [SMALL_STATE(4375)] = 124702, + [SMALL_STATE(4376)] = 124719, + [SMALL_STATE(4377)] = 124734, + [SMALL_STATE(4378)] = 124749, + [SMALL_STATE(4379)] = 124764, + [SMALL_STATE(4380)] = 124783, + [SMALL_STATE(4381)] = 124798, + [SMALL_STATE(4382)] = 124813, + [SMALL_STATE(4383)] = 124832, + [SMALL_STATE(4384)] = 124849, + [SMALL_STATE(4385)] = 124862, + [SMALL_STATE(4386)] = 124879, + [SMALL_STATE(4387)] = 124894, + [SMALL_STATE(4388)] = 124913, + [SMALL_STATE(4389)] = 124926, + [SMALL_STATE(4390)] = 124943, + [SMALL_STATE(4391)] = 124960, + [SMALL_STATE(4392)] = 124979, + [SMALL_STATE(4393)] = 124998, + [SMALL_STATE(4394)] = 125013, + [SMALL_STATE(4395)] = 125032, + [SMALL_STATE(4396)] = 125051, + [SMALL_STATE(4397)] = 125070, + [SMALL_STATE(4398)] = 125089, + [SMALL_STATE(4399)] = 125108, + [SMALL_STATE(4400)] = 125127, + [SMALL_STATE(4401)] = 125146, + [SMALL_STATE(4402)] = 125165, + [SMALL_STATE(4403)] = 125181, + [SMALL_STATE(4404)] = 125193, + [SMALL_STATE(4405)] = 125207, + [SMALL_STATE(4406)] = 125223, + [SMALL_STATE(4407)] = 125239, + [SMALL_STATE(4408)] = 125253, + [SMALL_STATE(4409)] = 125265, + [SMALL_STATE(4410)] = 125281, + [SMALL_STATE(4411)] = 125297, + [SMALL_STATE(4412)] = 125313, + [SMALL_STATE(4413)] = 125329, + [SMALL_STATE(4414)] = 125345, + [SMALL_STATE(4415)] = 125357, + [SMALL_STATE(4416)] = 125369, + [SMALL_STATE(4417)] = 125381, + [SMALL_STATE(4418)] = 125393, + [SMALL_STATE(4419)] = 125405, + [SMALL_STATE(4420)] = 125417, + [SMALL_STATE(4421)] = 125431, + [SMALL_STATE(4422)] = 125447, + [SMALL_STATE(4423)] = 125459, + [SMALL_STATE(4424)] = 125471, + [SMALL_STATE(4425)] = 125483, + [SMALL_STATE(4426)] = 125495, + [SMALL_STATE(4427)] = 125511, + [SMALL_STATE(4428)] = 125527, + [SMALL_STATE(4429)] = 125543, + [SMALL_STATE(4430)] = 125559, + [SMALL_STATE(4431)] = 125571, + [SMALL_STATE(4432)] = 125587, + [SMALL_STATE(4433)] = 125599, + [SMALL_STATE(4434)] = 125611, + [SMALL_STATE(4435)] = 125625, + [SMALL_STATE(4436)] = 125639, + [SMALL_STATE(4437)] = 125651, + [SMALL_STATE(4438)] = 125663, + [SMALL_STATE(4439)] = 125675, + [SMALL_STATE(4440)] = 125689, + [SMALL_STATE(4441)] = 125705, + [SMALL_STATE(4442)] = 125721, + [SMALL_STATE(4443)] = 125737, + [SMALL_STATE(4444)] = 125749, + [SMALL_STATE(4445)] = 125761, + [SMALL_STATE(4446)] = 125777, + [SMALL_STATE(4447)] = 125793, + [SMALL_STATE(4448)] = 125809, + [SMALL_STATE(4449)] = 125821, + [SMALL_STATE(4450)] = 125833, + [SMALL_STATE(4451)] = 125849, + [SMALL_STATE(4452)] = 125865, + [SMALL_STATE(4453)] = 125881, + [SMALL_STATE(4454)] = 125895, + [SMALL_STATE(4455)] = 125911, + [SMALL_STATE(4456)] = 125923, + [SMALL_STATE(4457)] = 125939, + [SMALL_STATE(4458)] = 125955, + [SMALL_STATE(4459)] = 125971, + [SMALL_STATE(4460)] = 125985, + [SMALL_STATE(4461)] = 125999, + [SMALL_STATE(4462)] = 126011, + [SMALL_STATE(4463)] = 126023, + [SMALL_STATE(4464)] = 126039, + [SMALL_STATE(4465)] = 126055, + [SMALL_STATE(4466)] = 126069, + [SMALL_STATE(4467)] = 126083, + [SMALL_STATE(4468)] = 126099, + [SMALL_STATE(4469)] = 126115, + [SMALL_STATE(4470)] = 126127, + [SMALL_STATE(4471)] = 126139, + [SMALL_STATE(4472)] = 126155, + [SMALL_STATE(4473)] = 126167, + [SMALL_STATE(4474)] = 126179, + [SMALL_STATE(4475)] = 126191, + [SMALL_STATE(4476)] = 126203, + [SMALL_STATE(4477)] = 126215, + [SMALL_STATE(4478)] = 126231, + [SMALL_STATE(4479)] = 126247, + [SMALL_STATE(4480)] = 126259, + [SMALL_STATE(4481)] = 126271, + [SMALL_STATE(4482)] = 126283, + [SMALL_STATE(4483)] = 126299, + [SMALL_STATE(4484)] = 126315, + [SMALL_STATE(4485)] = 126329, + [SMALL_STATE(4486)] = 126343, + [SMALL_STATE(4487)] = 126357, + [SMALL_STATE(4488)] = 126369, + [SMALL_STATE(4489)] = 126385, + [SMALL_STATE(4490)] = 126399, + [SMALL_STATE(4491)] = 126411, + [SMALL_STATE(4492)] = 126427, + [SMALL_STATE(4493)] = 126439, + [SMALL_STATE(4494)] = 126451, + [SMALL_STATE(4495)] = 126463, + [SMALL_STATE(4496)] = 126475, + [SMALL_STATE(4497)] = 126487, + [SMALL_STATE(4498)] = 126503, + [SMALL_STATE(4499)] = 126519, + [SMALL_STATE(4500)] = 126531, + [SMALL_STATE(4501)] = 126547, + [SMALL_STATE(4502)] = 126559, + [SMALL_STATE(4503)] = 126571, + [SMALL_STATE(4504)] = 126587, + [SMALL_STATE(4505)] = 126599, + [SMALL_STATE(4506)] = 126613, + [SMALL_STATE(4507)] = 126629, + [SMALL_STATE(4508)] = 126641, + [SMALL_STATE(4509)] = 126657, + [SMALL_STATE(4510)] = 126669, + [SMALL_STATE(4511)] = 126683, + [SMALL_STATE(4512)] = 126695, + [SMALL_STATE(4513)] = 126711, + [SMALL_STATE(4514)] = 126725, + [SMALL_STATE(4515)] = 126737, + [SMALL_STATE(4516)] = 126751, + [SMALL_STATE(4517)] = 126767, + [SMALL_STATE(4518)] = 126783, + [SMALL_STATE(4519)] = 126797, + [SMALL_STATE(4520)] = 126811, + [SMALL_STATE(4521)] = 126827, + [SMALL_STATE(4522)] = 126843, + [SMALL_STATE(4523)] = 126857, + [SMALL_STATE(4524)] = 126871, + [SMALL_STATE(4525)] = 126883, + [SMALL_STATE(4526)] = 126897, + [SMALL_STATE(4527)] = 126911, + [SMALL_STATE(4528)] = 126925, + [SMALL_STATE(4529)] = 126941, + [SMALL_STATE(4530)] = 126955, + [SMALL_STATE(4531)] = 126967, + [SMALL_STATE(4532)] = 126983, + [SMALL_STATE(4533)] = 126999, + [SMALL_STATE(4534)] = 127013, + [SMALL_STATE(4535)] = 127025, + [SMALL_STATE(4536)] = 127039, + [SMALL_STATE(4537)] = 127055, + [SMALL_STATE(4538)] = 127067, + [SMALL_STATE(4539)] = 127083, + [SMALL_STATE(4540)] = 127095, + [SMALL_STATE(4541)] = 127107, + [SMALL_STATE(4542)] = 127119, + [SMALL_STATE(4543)] = 127131, + [SMALL_STATE(4544)] = 127143, + [SMALL_STATE(4545)] = 127159, + [SMALL_STATE(4546)] = 127171, + [SMALL_STATE(4547)] = 127185, + [SMALL_STATE(4548)] = 127201, + [SMALL_STATE(4549)] = 127213, + [SMALL_STATE(4550)] = 127225, + [SMALL_STATE(4551)] = 127237, + [SMALL_STATE(4552)] = 127249, + [SMALL_STATE(4553)] = 127261, + [SMALL_STATE(4554)] = 127273, + [SMALL_STATE(4555)] = 127287, + [SMALL_STATE(4556)] = 127301, + [SMALL_STATE(4557)] = 127317, + [SMALL_STATE(4558)] = 127329, + [SMALL_STATE(4559)] = 127341, + [SMALL_STATE(4560)] = 127353, + [SMALL_STATE(4561)] = 127365, + [SMALL_STATE(4562)] = 127377, + [SMALL_STATE(4563)] = 127389, + [SMALL_STATE(4564)] = 127405, + [SMALL_STATE(4565)] = 127421, + [SMALL_STATE(4566)] = 127437, + [SMALL_STATE(4567)] = 127451, + [SMALL_STATE(4568)] = 127467, + [SMALL_STATE(4569)] = 127481, + [SMALL_STATE(4570)] = 127497, + [SMALL_STATE(4571)] = 127511, + [SMALL_STATE(4572)] = 127527, + [SMALL_STATE(4573)] = 127539, + [SMALL_STATE(4574)] = 127553, + [SMALL_STATE(4575)] = 127567, + [SMALL_STATE(4576)] = 127579, + [SMALL_STATE(4577)] = 127593, + [SMALL_STATE(4578)] = 127607, + [SMALL_STATE(4579)] = 127619, + [SMALL_STATE(4580)] = 127631, + [SMALL_STATE(4581)] = 127645, + [SMALL_STATE(4582)] = 127657, + [SMALL_STATE(4583)] = 127669, + [SMALL_STATE(4584)] = 127681, + [SMALL_STATE(4585)] = 127693, + [SMALL_STATE(4586)] = 127707, + [SMALL_STATE(4587)] = 127723, + [SMALL_STATE(4588)] = 127735, + [SMALL_STATE(4589)] = 127747, + [SMALL_STATE(4590)] = 127761, + [SMALL_STATE(4591)] = 127773, + [SMALL_STATE(4592)] = 127785, + [SMALL_STATE(4593)] = 127799, + [SMALL_STATE(4594)] = 127813, + [SMALL_STATE(4595)] = 127825, + [SMALL_STATE(4596)] = 127841, + [SMALL_STATE(4597)] = 127855, + [SMALL_STATE(4598)] = 127867, + [SMALL_STATE(4599)] = 127879, + [SMALL_STATE(4600)] = 127891, + [SMALL_STATE(4601)] = 127905, + [SMALL_STATE(4602)] = 127919, + [SMALL_STATE(4603)] = 127935, + [SMALL_STATE(4604)] = 127951, + [SMALL_STATE(4605)] = 127967, + [SMALL_STATE(4606)] = 127979, + [SMALL_STATE(4607)] = 127991, + [SMALL_STATE(4608)] = 128007, + [SMALL_STATE(4609)] = 128019, + [SMALL_STATE(4610)] = 128033, + [SMALL_STATE(4611)] = 128047, + [SMALL_STATE(4612)] = 128061, + [SMALL_STATE(4613)] = 128077, + [SMALL_STATE(4614)] = 128091, + [SMALL_STATE(4615)] = 128107, + [SMALL_STATE(4616)] = 128123, + [SMALL_STATE(4617)] = 128137, + [SMALL_STATE(4618)] = 128149, + [SMALL_STATE(4619)] = 128165, + [SMALL_STATE(4620)] = 128177, + [SMALL_STATE(4621)] = 128189, + [SMALL_STATE(4622)] = 128201, + [SMALL_STATE(4623)] = 128215, + [SMALL_STATE(4624)] = 128231, + [SMALL_STATE(4625)] = 128245, + [SMALL_STATE(4626)] = 128259, + [SMALL_STATE(4627)] = 128271, + [SMALL_STATE(4628)] = 128283, + [SMALL_STATE(4629)] = 128297, + [SMALL_STATE(4630)] = 128313, + [SMALL_STATE(4631)] = 128325, + [SMALL_STATE(4632)] = 128337, + [SMALL_STATE(4633)] = 128349, + [SMALL_STATE(4634)] = 128365, + [SMALL_STATE(4635)] = 128381, + [SMALL_STATE(4636)] = 128397, + [SMALL_STATE(4637)] = 128409, + [SMALL_STATE(4638)] = 128425, + [SMALL_STATE(4639)] = 128437, + [SMALL_STATE(4640)] = 128453, + [SMALL_STATE(4641)] = 128465, + [SMALL_STATE(4642)] = 128477, + [SMALL_STATE(4643)] = 128493, + [SMALL_STATE(4644)] = 128509, + [SMALL_STATE(4645)] = 128525, + [SMALL_STATE(4646)] = 128537, + [SMALL_STATE(4647)] = 128549, + [SMALL_STATE(4648)] = 128565, + [SMALL_STATE(4649)] = 128577, + [SMALL_STATE(4650)] = 128593, + [SMALL_STATE(4651)] = 128609, + [SMALL_STATE(4652)] = 128625, + [SMALL_STATE(4653)] = 128641, + [SMALL_STATE(4654)] = 128657, + [SMALL_STATE(4655)] = 128673, + [SMALL_STATE(4656)] = 128685, + [SMALL_STATE(4657)] = 128697, + [SMALL_STATE(4658)] = 128709, + [SMALL_STATE(4659)] = 128723, + [SMALL_STATE(4660)] = 128739, + [SMALL_STATE(4661)] = 128752, + [SMALL_STATE(4662)] = 128765, + [SMALL_STATE(4663)] = 128778, + [SMALL_STATE(4664)] = 128791, + [SMALL_STATE(4665)] = 128804, + [SMALL_STATE(4666)] = 128817, + [SMALL_STATE(4667)] = 128830, + [SMALL_STATE(4668)] = 128843, + [SMALL_STATE(4669)] = 128856, + [SMALL_STATE(4670)] = 128869, + [SMALL_STATE(4671)] = 128882, + [SMALL_STATE(4672)] = 128895, + [SMALL_STATE(4673)] = 128908, + [SMALL_STATE(4674)] = 128921, + [SMALL_STATE(4675)] = 128934, + [SMALL_STATE(4676)] = 128947, + [SMALL_STATE(4677)] = 128960, + [SMALL_STATE(4678)] = 128973, + [SMALL_STATE(4679)] = 128986, + [SMALL_STATE(4680)] = 128997, + [SMALL_STATE(4681)] = 129010, + [SMALL_STATE(4682)] = 129023, + [SMALL_STATE(4683)] = 129036, + [SMALL_STATE(4684)] = 129049, + [SMALL_STATE(4685)] = 129062, + [SMALL_STATE(4686)] = 129075, + [SMALL_STATE(4687)] = 129088, + [SMALL_STATE(4688)] = 129101, + [SMALL_STATE(4689)] = 129114, + [SMALL_STATE(4690)] = 129127, + [SMALL_STATE(4691)] = 129140, + [SMALL_STATE(4692)] = 129151, + [SMALL_STATE(4693)] = 129164, + [SMALL_STATE(4694)] = 129177, + [SMALL_STATE(4695)] = 129190, + [SMALL_STATE(4696)] = 129203, + [SMALL_STATE(4697)] = 129216, + [SMALL_STATE(4698)] = 129229, + [SMALL_STATE(4699)] = 129242, + [SMALL_STATE(4700)] = 129255, + [SMALL_STATE(4701)] = 129268, + [SMALL_STATE(4702)] = 129281, + [SMALL_STATE(4703)] = 129294, + [SMALL_STATE(4704)] = 129307, + [SMALL_STATE(4705)] = 129320, + [SMALL_STATE(4706)] = 129333, + [SMALL_STATE(4707)] = 129346, + [SMALL_STATE(4708)] = 129359, + [SMALL_STATE(4709)] = 129372, + [SMALL_STATE(4710)] = 129385, + [SMALL_STATE(4711)] = 129398, + [SMALL_STATE(4712)] = 129411, + [SMALL_STATE(4713)] = 129424, + [SMALL_STATE(4714)] = 129437, + [SMALL_STATE(4715)] = 129450, + [SMALL_STATE(4716)] = 129463, + [SMALL_STATE(4717)] = 129476, + [SMALL_STATE(4718)] = 129489, + [SMALL_STATE(4719)] = 129502, + [SMALL_STATE(4720)] = 129515, + [SMALL_STATE(4721)] = 129528, + [SMALL_STATE(4722)] = 129541, + [SMALL_STATE(4723)] = 129554, + [SMALL_STATE(4724)] = 129567, + [SMALL_STATE(4725)] = 129580, + [SMALL_STATE(4726)] = 129593, + [SMALL_STATE(4727)] = 129606, + [SMALL_STATE(4728)] = 129617, + [SMALL_STATE(4729)] = 129630, + [SMALL_STATE(4730)] = 129643, + [SMALL_STATE(4731)] = 129656, + [SMALL_STATE(4732)] = 129669, + [SMALL_STATE(4733)] = 129682, + [SMALL_STATE(4734)] = 129695, + [SMALL_STATE(4735)] = 129708, + [SMALL_STATE(4736)] = 129721, + [SMALL_STATE(4737)] = 129734, + [SMALL_STATE(4738)] = 129747, + [SMALL_STATE(4739)] = 129760, + [SMALL_STATE(4740)] = 129773, + [SMALL_STATE(4741)] = 129786, + [SMALL_STATE(4742)] = 129799, + [SMALL_STATE(4743)] = 129812, + [SMALL_STATE(4744)] = 129825, + [SMALL_STATE(4745)] = 129838, + [SMALL_STATE(4746)] = 129849, + [SMALL_STATE(4747)] = 129862, + [SMALL_STATE(4748)] = 129875, + [SMALL_STATE(4749)] = 129888, + [SMALL_STATE(4750)] = 129901, + [SMALL_STATE(4751)] = 129914, + [SMALL_STATE(4752)] = 129927, + [SMALL_STATE(4753)] = 129940, + [SMALL_STATE(4754)] = 129953, + [SMALL_STATE(4755)] = 129966, + [SMALL_STATE(4756)] = 129979, + [SMALL_STATE(4757)] = 129992, + [SMALL_STATE(4758)] = 130005, + [SMALL_STATE(4759)] = 130018, + [SMALL_STATE(4760)] = 130031, + [SMALL_STATE(4761)] = 130044, + [SMALL_STATE(4762)] = 130057, + [SMALL_STATE(4763)] = 130070, + [SMALL_STATE(4764)] = 130083, + [SMALL_STATE(4765)] = 130096, + [SMALL_STATE(4766)] = 130109, + [SMALL_STATE(4767)] = 130122, + [SMALL_STATE(4768)] = 130135, + [SMALL_STATE(4769)] = 130148, + [SMALL_STATE(4770)] = 130161, + [SMALL_STATE(4771)] = 130174, + [SMALL_STATE(4772)] = 130187, + [SMALL_STATE(4773)] = 130200, + [SMALL_STATE(4774)] = 130213, + [SMALL_STATE(4775)] = 130226, + [SMALL_STATE(4776)] = 130239, + [SMALL_STATE(4777)] = 130250, + [SMALL_STATE(4778)] = 130263, + [SMALL_STATE(4779)] = 130276, + [SMALL_STATE(4780)] = 130289, + [SMALL_STATE(4781)] = 130300, + [SMALL_STATE(4782)] = 130313, + [SMALL_STATE(4783)] = 130326, + [SMALL_STATE(4784)] = 130339, + [SMALL_STATE(4785)] = 130352, + [SMALL_STATE(4786)] = 130365, + [SMALL_STATE(4787)] = 130378, + [SMALL_STATE(4788)] = 130391, + [SMALL_STATE(4789)] = 130404, + [SMALL_STATE(4790)] = 130417, + [SMALL_STATE(4791)] = 130430, + [SMALL_STATE(4792)] = 130443, + [SMALL_STATE(4793)] = 130456, + [SMALL_STATE(4794)] = 130469, + [SMALL_STATE(4795)] = 130482, + [SMALL_STATE(4796)] = 130495, + [SMALL_STATE(4797)] = 130508, + [SMALL_STATE(4798)] = 130521, + [SMALL_STATE(4799)] = 130534, + [SMALL_STATE(4800)] = 130547, + [SMALL_STATE(4801)] = 130560, + [SMALL_STATE(4802)] = 130573, + [SMALL_STATE(4803)] = 130586, + [SMALL_STATE(4804)] = 130599, + [SMALL_STATE(4805)] = 130612, + [SMALL_STATE(4806)] = 130625, + [SMALL_STATE(4807)] = 130638, + [SMALL_STATE(4808)] = 130649, + [SMALL_STATE(4809)] = 130662, + [SMALL_STATE(4810)] = 130675, + [SMALL_STATE(4811)] = 130688, + [SMALL_STATE(4812)] = 130701, + [SMALL_STATE(4813)] = 130714, + [SMALL_STATE(4814)] = 130727, + [SMALL_STATE(4815)] = 130740, + [SMALL_STATE(4816)] = 130753, + [SMALL_STATE(4817)] = 130766, + [SMALL_STATE(4818)] = 130779, + [SMALL_STATE(4819)] = 130792, + [SMALL_STATE(4820)] = 130805, + [SMALL_STATE(4821)] = 130816, + [SMALL_STATE(4822)] = 130829, + [SMALL_STATE(4823)] = 130842, + [SMALL_STATE(4824)] = 130855, + [SMALL_STATE(4825)] = 130868, + [SMALL_STATE(4826)] = 130881, + [SMALL_STATE(4827)] = 130894, + [SMALL_STATE(4828)] = 130907, + [SMALL_STATE(4829)] = 130918, + [SMALL_STATE(4830)] = 130931, + [SMALL_STATE(4831)] = 130942, + [SMALL_STATE(4832)] = 130952, + [SMALL_STATE(4833)] = 130962, + [SMALL_STATE(4834)] = 130972, + [SMALL_STATE(4835)] = 130982, + [SMALL_STATE(4836)] = 130992, + [SMALL_STATE(4837)] = 131002, + [SMALL_STATE(4838)] = 131012, + [SMALL_STATE(4839)] = 131022, + [SMALL_STATE(4840)] = 131032, + [SMALL_STATE(4841)] = 131042, + [SMALL_STATE(4842)] = 131052, + [SMALL_STATE(4843)] = 131062, + [SMALL_STATE(4844)] = 131072, + [SMALL_STATE(4845)] = 131082, + [SMALL_STATE(4846)] = 131092, + [SMALL_STATE(4847)] = 131102, + [SMALL_STATE(4848)] = 131112, + [SMALL_STATE(4849)] = 131122, + [SMALL_STATE(4850)] = 131132, + [SMALL_STATE(4851)] = 131142, + [SMALL_STATE(4852)] = 131152, + [SMALL_STATE(4853)] = 131162, + [SMALL_STATE(4854)] = 131172, + [SMALL_STATE(4855)] = 131182, + [SMALL_STATE(4856)] = 131192, + [SMALL_STATE(4857)] = 131202, + [SMALL_STATE(4858)] = 131212, + [SMALL_STATE(4859)] = 131222, + [SMALL_STATE(4860)] = 131232, + [SMALL_STATE(4861)] = 131242, + [SMALL_STATE(4862)] = 131252, + [SMALL_STATE(4863)] = 131262, + [SMALL_STATE(4864)] = 131272, + [SMALL_STATE(4865)] = 131282, + [SMALL_STATE(4866)] = 131292, + [SMALL_STATE(4867)] = 131302, + [SMALL_STATE(4868)] = 131312, + [SMALL_STATE(4869)] = 131322, + [SMALL_STATE(4870)] = 131332, + [SMALL_STATE(4871)] = 131342, + [SMALL_STATE(4872)] = 131352, + [SMALL_STATE(4873)] = 131362, + [SMALL_STATE(4874)] = 131372, + [SMALL_STATE(4875)] = 131382, + [SMALL_STATE(4876)] = 131392, + [SMALL_STATE(4877)] = 131402, + [SMALL_STATE(4878)] = 131412, + [SMALL_STATE(4879)] = 131422, + [SMALL_STATE(4880)] = 131432, + [SMALL_STATE(4881)] = 131442, + [SMALL_STATE(4882)] = 131452, + [SMALL_STATE(4883)] = 131462, + [SMALL_STATE(4884)] = 131472, + [SMALL_STATE(4885)] = 131482, + [SMALL_STATE(4886)] = 131492, + [SMALL_STATE(4887)] = 131502, + [SMALL_STATE(4888)] = 131512, + [SMALL_STATE(4889)] = 131522, + [SMALL_STATE(4890)] = 131532, + [SMALL_STATE(4891)] = 131542, + [SMALL_STATE(4892)] = 131552, + [SMALL_STATE(4893)] = 131562, + [SMALL_STATE(4894)] = 131572, + [SMALL_STATE(4895)] = 131582, + [SMALL_STATE(4896)] = 131592, + [SMALL_STATE(4897)] = 131602, + [SMALL_STATE(4898)] = 131612, + [SMALL_STATE(4899)] = 131622, + [SMALL_STATE(4900)] = 131632, + [SMALL_STATE(4901)] = 131642, + [SMALL_STATE(4902)] = 131652, + [SMALL_STATE(4903)] = 131662, + [SMALL_STATE(4904)] = 131672, + [SMALL_STATE(4905)] = 131682, + [SMALL_STATE(4906)] = 131692, + [SMALL_STATE(4907)] = 131702, + [SMALL_STATE(4908)] = 131712, + [SMALL_STATE(4909)] = 131722, + [SMALL_STATE(4910)] = 131732, + [SMALL_STATE(4911)] = 131742, + [SMALL_STATE(4912)] = 131752, + [SMALL_STATE(4913)] = 131762, + [SMALL_STATE(4914)] = 131772, + [SMALL_STATE(4915)] = 131782, + [SMALL_STATE(4916)] = 131792, + [SMALL_STATE(4917)] = 131802, + [SMALL_STATE(4918)] = 131812, + [SMALL_STATE(4919)] = 131822, + [SMALL_STATE(4920)] = 131832, + [SMALL_STATE(4921)] = 131842, + [SMALL_STATE(4922)] = 131852, + [SMALL_STATE(4923)] = 131862, + [SMALL_STATE(4924)] = 131872, + [SMALL_STATE(4925)] = 131882, + [SMALL_STATE(4926)] = 131892, + [SMALL_STATE(4927)] = 131902, + [SMALL_STATE(4928)] = 131912, + [SMALL_STATE(4929)] = 131922, + [SMALL_STATE(4930)] = 131932, + [SMALL_STATE(4931)] = 131942, + [SMALL_STATE(4932)] = 131952, + [SMALL_STATE(4933)] = 131962, + [SMALL_STATE(4934)] = 131972, + [SMALL_STATE(4935)] = 131982, + [SMALL_STATE(4936)] = 131992, + [SMALL_STATE(4937)] = 132002, + [SMALL_STATE(4938)] = 132012, + [SMALL_STATE(4939)] = 132022, + [SMALL_STATE(4940)] = 132032, + [SMALL_STATE(4941)] = 132042, + [SMALL_STATE(4942)] = 132052, + [SMALL_STATE(4943)] = 132062, + [SMALL_STATE(4944)] = 132072, + [SMALL_STATE(4945)] = 132082, + [SMALL_STATE(4946)] = 132092, + [SMALL_STATE(4947)] = 132102, + [SMALL_STATE(4948)] = 132112, + [SMALL_STATE(4949)] = 132122, + [SMALL_STATE(4950)] = 132132, + [SMALL_STATE(4951)] = 132142, + [SMALL_STATE(4952)] = 132152, + [SMALL_STATE(4953)] = 132162, + [SMALL_STATE(4954)] = 132172, + [SMALL_STATE(4955)] = 132182, + [SMALL_STATE(4956)] = 132192, + [SMALL_STATE(4957)] = 132202, + [SMALL_STATE(4958)] = 132212, + [SMALL_STATE(4959)] = 132222, + [SMALL_STATE(4960)] = 132232, + [SMALL_STATE(4961)] = 132242, + [SMALL_STATE(4962)] = 132252, + [SMALL_STATE(4963)] = 132262, + [SMALL_STATE(4964)] = 132272, + [SMALL_STATE(4965)] = 132282, + [SMALL_STATE(4966)] = 132292, + [SMALL_STATE(4967)] = 132302, + [SMALL_STATE(4968)] = 132312, + [SMALL_STATE(4969)] = 132322, + [SMALL_STATE(4970)] = 132332, + [SMALL_STATE(4971)] = 132342, + [SMALL_STATE(4972)] = 132352, + [SMALL_STATE(4973)] = 132362, + [SMALL_STATE(4974)] = 132372, + [SMALL_STATE(4975)] = 132382, + [SMALL_STATE(4976)] = 132392, + [SMALL_STATE(4977)] = 132402, + [SMALL_STATE(4978)] = 132412, + [SMALL_STATE(4979)] = 132422, + [SMALL_STATE(4980)] = 132432, + [SMALL_STATE(4981)] = 132442, + [SMALL_STATE(4982)] = 132452, + [SMALL_STATE(4983)] = 132462, + [SMALL_STATE(4984)] = 132472, + [SMALL_STATE(4985)] = 132482, + [SMALL_STATE(4986)] = 132492, + [SMALL_STATE(4987)] = 132502, + [SMALL_STATE(4988)] = 132512, + [SMALL_STATE(4989)] = 132522, + [SMALL_STATE(4990)] = 132532, + [SMALL_STATE(4991)] = 132542, + [SMALL_STATE(4992)] = 132552, + [SMALL_STATE(4993)] = 132562, + [SMALL_STATE(4994)] = 132572, + [SMALL_STATE(4995)] = 132582, + [SMALL_STATE(4996)] = 132592, + [SMALL_STATE(4997)] = 132602, + [SMALL_STATE(4998)] = 132612, + [SMALL_STATE(4999)] = 132622, + [SMALL_STATE(5000)] = 132632, + [SMALL_STATE(5001)] = 132642, + [SMALL_STATE(5002)] = 132652, + [SMALL_STATE(5003)] = 132662, + [SMALL_STATE(5004)] = 132672, + [SMALL_STATE(5005)] = 132682, + [SMALL_STATE(5006)] = 132692, + [SMALL_STATE(5007)] = 132702, + [SMALL_STATE(5008)] = 132712, + [SMALL_STATE(5009)] = 132722, + [SMALL_STATE(5010)] = 132732, + [SMALL_STATE(5011)] = 132742, + [SMALL_STATE(5012)] = 132752, + [SMALL_STATE(5013)] = 132762, + [SMALL_STATE(5014)] = 132772, + [SMALL_STATE(5015)] = 132782, + [SMALL_STATE(5016)] = 132792, + [SMALL_STATE(5017)] = 132802, + [SMALL_STATE(5018)] = 132812, + [SMALL_STATE(5019)] = 132822, + [SMALL_STATE(5020)] = 132832, + [SMALL_STATE(5021)] = 132842, + [SMALL_STATE(5022)] = 132852, + [SMALL_STATE(5023)] = 132862, + [SMALL_STATE(5024)] = 132872, + [SMALL_STATE(5025)] = 132882, + [SMALL_STATE(5026)] = 132892, + [SMALL_STATE(5027)] = 132902, + [SMALL_STATE(5028)] = 132912, + [SMALL_STATE(5029)] = 132922, + [SMALL_STATE(5030)] = 132932, + [SMALL_STATE(5031)] = 132942, + [SMALL_STATE(5032)] = 132952, + [SMALL_STATE(5033)] = 132962, + [SMALL_STATE(5034)] = 132972, + [SMALL_STATE(5035)] = 132982, + [SMALL_STATE(5036)] = 132992, + [SMALL_STATE(5037)] = 133002, + [SMALL_STATE(5038)] = 133012, + [SMALL_STATE(5039)] = 133022, + [SMALL_STATE(5040)] = 133032, + [SMALL_STATE(5041)] = 133042, + [SMALL_STATE(5042)] = 133052, + [SMALL_STATE(5043)] = 133062, + [SMALL_STATE(5044)] = 133072, + [SMALL_STATE(5045)] = 133082, + [SMALL_STATE(5046)] = 133092, + [SMALL_STATE(5047)] = 133102, + [SMALL_STATE(5048)] = 133112, + [SMALL_STATE(5049)] = 133122, + [SMALL_STATE(5050)] = 133132, + [SMALL_STATE(5051)] = 133142, + [SMALL_STATE(5052)] = 133152, + [SMALL_STATE(5053)] = 133162, + [SMALL_STATE(5054)] = 133172, + [SMALL_STATE(5055)] = 133182, + [SMALL_STATE(5056)] = 133192, + [SMALL_STATE(5057)] = 133202, + [SMALL_STATE(5058)] = 133212, + [SMALL_STATE(5059)] = 133222, + [SMALL_STATE(5060)] = 133232, + [SMALL_STATE(5061)] = 133242, + [SMALL_STATE(5062)] = 133252, + [SMALL_STATE(5063)] = 133262, + [SMALL_STATE(5064)] = 133272, + [SMALL_STATE(5065)] = 133282, + [SMALL_STATE(5066)] = 133292, + [SMALL_STATE(5067)] = 133302, + [SMALL_STATE(5068)] = 133312, + [SMALL_STATE(5069)] = 133322, + [SMALL_STATE(5070)] = 133332, + [SMALL_STATE(5071)] = 133342, + [SMALL_STATE(5072)] = 133352, + [SMALL_STATE(5073)] = 133362, + [SMALL_STATE(5074)] = 133372, + [SMALL_STATE(5075)] = 133382, + [SMALL_STATE(5076)] = 133392, + [SMALL_STATE(5077)] = 133402, + [SMALL_STATE(5078)] = 133412, + [SMALL_STATE(5079)] = 133422, + [SMALL_STATE(5080)] = 133432, + [SMALL_STATE(5081)] = 133442, + [SMALL_STATE(5082)] = 133452, + [SMALL_STATE(5083)] = 133462, + [SMALL_STATE(5084)] = 133472, + [SMALL_STATE(5085)] = 133482, + [SMALL_STATE(5086)] = 133492, + [SMALL_STATE(5087)] = 133502, + [SMALL_STATE(5088)] = 133512, + [SMALL_STATE(5089)] = 133522, + [SMALL_STATE(5090)] = 133532, + [SMALL_STATE(5091)] = 133542, + [SMALL_STATE(5092)] = 133552, + [SMALL_STATE(5093)] = 133562, + [SMALL_STATE(5094)] = 133572, + [SMALL_STATE(5095)] = 133582, + [SMALL_STATE(5096)] = 133592, + [SMALL_STATE(5097)] = 133602, + [SMALL_STATE(5098)] = 133612, + [SMALL_STATE(5099)] = 133622, + [SMALL_STATE(5100)] = 133632, + [SMALL_STATE(5101)] = 133642, + [SMALL_STATE(5102)] = 133652, + [SMALL_STATE(5103)] = 133662, + [SMALL_STATE(5104)] = 133672, + [SMALL_STATE(5105)] = 133682, + [SMALL_STATE(5106)] = 133692, + [SMALL_STATE(5107)] = 133702, + [SMALL_STATE(5108)] = 133712, + [SMALL_STATE(5109)] = 133722, + [SMALL_STATE(5110)] = 133732, + [SMALL_STATE(5111)] = 133742, + [SMALL_STATE(5112)] = 133752, + [SMALL_STATE(5113)] = 133762, + [SMALL_STATE(5114)] = 133772, + [SMALL_STATE(5115)] = 133782, + [SMALL_STATE(5116)] = 133792, + [SMALL_STATE(5117)] = 133802, + [SMALL_STATE(5118)] = 133812, + [SMALL_STATE(5119)] = 133822, + [SMALL_STATE(5120)] = 133832, + [SMALL_STATE(5121)] = 133842, + [SMALL_STATE(5122)] = 133852, + [SMALL_STATE(5123)] = 133862, + [SMALL_STATE(5124)] = 133872, + [SMALL_STATE(5125)] = 133882, + [SMALL_STATE(5126)] = 133892, + [SMALL_STATE(5127)] = 133902, + [SMALL_STATE(5128)] = 133912, + [SMALL_STATE(5129)] = 133922, + [SMALL_STATE(5130)] = 133932, + [SMALL_STATE(5131)] = 133942, + [SMALL_STATE(5132)] = 133952, + [SMALL_STATE(5133)] = 133962, + [SMALL_STATE(5134)] = 133972, + [SMALL_STATE(5135)] = 133982, + [SMALL_STATE(5136)] = 133992, + [SMALL_STATE(5137)] = 134002, + [SMALL_STATE(5138)] = 134012, + [SMALL_STATE(5139)] = 134022, + [SMALL_STATE(5140)] = 134032, + [SMALL_STATE(5141)] = 134042, + [SMALL_STATE(5142)] = 134052, + [SMALL_STATE(5143)] = 134062, + [SMALL_STATE(5144)] = 134072, + [SMALL_STATE(5145)] = 134082, + [SMALL_STATE(5146)] = 134092, + [SMALL_STATE(5147)] = 134102, + [SMALL_STATE(5148)] = 134112, + [SMALL_STATE(5149)] = 134122, + [SMALL_STATE(5150)] = 134132, + [SMALL_STATE(5151)] = 134142, + [SMALL_STATE(5152)] = 134152, + [SMALL_STATE(5153)] = 134162, + [SMALL_STATE(5154)] = 134172, + [SMALL_STATE(5155)] = 134182, + [SMALL_STATE(5156)] = 134192, + [SMALL_STATE(5157)] = 134202, + [SMALL_STATE(5158)] = 134212, + [SMALL_STATE(5159)] = 134222, + [SMALL_STATE(5160)] = 134232, + [SMALL_STATE(5161)] = 134242, + [SMALL_STATE(5162)] = 134252, + [SMALL_STATE(5163)] = 134262, + [SMALL_STATE(5164)] = 134272, + [SMALL_STATE(5165)] = 134282, + [SMALL_STATE(5166)] = 134292, + [SMALL_STATE(5167)] = 134302, + [SMALL_STATE(5168)] = 134312, + [SMALL_STATE(5169)] = 134322, + [SMALL_STATE(5170)] = 134332, + [SMALL_STATE(5171)] = 134342, + [SMALL_STATE(5172)] = 134352, + [SMALL_STATE(5173)] = 134362, + [SMALL_STATE(5174)] = 134372, + [SMALL_STATE(5175)] = 134382, + [SMALL_STATE(5176)] = 134392, + [SMALL_STATE(5177)] = 134402, + [SMALL_STATE(5178)] = 134412, + [SMALL_STATE(5179)] = 134422, + [SMALL_STATE(5180)] = 134432, + [SMALL_STATE(5181)] = 134442, + [SMALL_STATE(5182)] = 134452, + [SMALL_STATE(5183)] = 134462, + [SMALL_STATE(5184)] = 134472, + [SMALL_STATE(5185)] = 134482, + [SMALL_STATE(5186)] = 134492, + [SMALL_STATE(5187)] = 134502, + [SMALL_STATE(5188)] = 134512, + [SMALL_STATE(5189)] = 134522, + [SMALL_STATE(5190)] = 134532, + [SMALL_STATE(5191)] = 134542, + [SMALL_STATE(5192)] = 134552, + [SMALL_STATE(5193)] = 134562, + [SMALL_STATE(5194)] = 134572, + [SMALL_STATE(5195)] = 134582, + [SMALL_STATE(5196)] = 134592, + [SMALL_STATE(5197)] = 134602, + [SMALL_STATE(5198)] = 134612, + [SMALL_STATE(5199)] = 134622, + [SMALL_STATE(5200)] = 134632, + [SMALL_STATE(5201)] = 134642, + [SMALL_STATE(5202)] = 134652, + [SMALL_STATE(5203)] = 134662, + [SMALL_STATE(5204)] = 134672, + [SMALL_STATE(5205)] = 134682, + [SMALL_STATE(5206)] = 134692, + [SMALL_STATE(5207)] = 134702, + [SMALL_STATE(5208)] = 134712, + [SMALL_STATE(5209)] = 134722, + [SMALL_STATE(5210)] = 134732, + [SMALL_STATE(5211)] = 134742, + [SMALL_STATE(5212)] = 134752, + [SMALL_STATE(5213)] = 134762, + [SMALL_STATE(5214)] = 134772, + [SMALL_STATE(5215)] = 134782, + [SMALL_STATE(5216)] = 134792, + [SMALL_STATE(5217)] = 134802, + [SMALL_STATE(5218)] = 134812, + [SMALL_STATE(5219)] = 134822, + [SMALL_STATE(5220)] = 134832, + [SMALL_STATE(5221)] = 134842, + [SMALL_STATE(5222)] = 134852, + [SMALL_STATE(5223)] = 134862, + [SMALL_STATE(5224)] = 134872, + [SMALL_STATE(5225)] = 134882, + [SMALL_STATE(5226)] = 134892, + [SMALL_STATE(5227)] = 134902, + [SMALL_STATE(5228)] = 134912, + [SMALL_STATE(5229)] = 134922, + [SMALL_STATE(5230)] = 134932, + [SMALL_STATE(5231)] = 134942, + [SMALL_STATE(5232)] = 134952, + [SMALL_STATE(5233)] = 134962, + [SMALL_STATE(5234)] = 134972, + [SMALL_STATE(5235)] = 134982, + [SMALL_STATE(5236)] = 134992, + [SMALL_STATE(5237)] = 135002, + [SMALL_STATE(5238)] = 135012, + [SMALL_STATE(5239)] = 135022, + [SMALL_STATE(5240)] = 135032, + [SMALL_STATE(5241)] = 135042, + [SMALL_STATE(5242)] = 135052, + [SMALL_STATE(5243)] = 135062, + [SMALL_STATE(5244)] = 135072, + [SMALL_STATE(5245)] = 135082, + [SMALL_STATE(5246)] = 135092, + [SMALL_STATE(5247)] = 135102, + [SMALL_STATE(5248)] = 135112, + [SMALL_STATE(5249)] = 135122, + [SMALL_STATE(5250)] = 135132, + [SMALL_STATE(5251)] = 135142, + [SMALL_STATE(5252)] = 135152, + [SMALL_STATE(5253)] = 135162, + [SMALL_STATE(5254)] = 135172, + [SMALL_STATE(5255)] = 135182, + [SMALL_STATE(5256)] = 135192, + [SMALL_STATE(5257)] = 135202, + [SMALL_STATE(5258)] = 135212, + [SMALL_STATE(5259)] = 135222, + [SMALL_STATE(5260)] = 135232, + [SMALL_STATE(5261)] = 135242, }; 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(4977), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3722), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1775), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3876), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3877), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3878), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2897), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1680), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1897), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3780), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1769), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3917), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3918), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3919), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2891), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1677), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1882), [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4447), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1767), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1768), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4023), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4468), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1230), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1259), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4472), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1349), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1112), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1113), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1114), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4954), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(367), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(33), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5159), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1743), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1744), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3983), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4458), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1141), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1202), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5246), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4402), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1352), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5246), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1071), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1072), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1073), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4860), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(363), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(30), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3646), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5218), [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3537), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2268), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3547), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3604), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2270), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3425), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(119), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(695), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4920), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3955), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5096), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5097), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3913), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3781), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1454), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5094), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3725), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1753), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3881), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3882), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3815), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2897), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1680), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1897), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(121), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(671), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(711), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4973), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(954), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4022), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5148), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5149), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4028), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3896), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1451), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5146), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3782), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1773), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3922), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3923), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3785), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2891), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1677), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1882), [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4447), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1767), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1768), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4023), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4468), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1230), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(963), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3920), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1349), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1112), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1113), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1114), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4954), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(367), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(33), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5159), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1743), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1744), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3983), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4458), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1141), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(962), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5246), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4066), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1352), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5246), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1071), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1072), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1073), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4860), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(363), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(30), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3646), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5218), [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3537), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2259), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3547), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3604), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2263), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3425), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(119), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(695), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4920), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3955), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5096), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5097), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3913), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3781), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1453), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5094), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(121), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(671), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(711), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4973), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(954), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4022), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5148), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5149), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4028), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3896), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1458), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5146), [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 30), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 30), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 30), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 30), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4472), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5159), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2268), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5097), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1454), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5094), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(962), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3920), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5159), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2259), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5097), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1453), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5094), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 30), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 30), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 30), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 30), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2891), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(961), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1071), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1073), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5218), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2263), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4022), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1458), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5146), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2891), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1260), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4402), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1071), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1073), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5218), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4022), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5146), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 20), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 20), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 20), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 20), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 20), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 20), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 28), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 28), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 29), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 29), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3415), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 20), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 20), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 29), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 29), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 28), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 28), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 45), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 45), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 98), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 98), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(691), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3904), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4262), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4584), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(347), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(30), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3586), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(7), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3409), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3410), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4862), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3360), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4163), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3903), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5058), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4263), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3966), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5108), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5109), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3956), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3819), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(376), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4284), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5106), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 74), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 74), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 72), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 72), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 73), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 73), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 21), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 21), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 28), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 28), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 45), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 45), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 113), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 113), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 114), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 114), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 121), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 121), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 98), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 98), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 154), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 154), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 3), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 3), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2829), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5100), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4700), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(51), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4193), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4833), - [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4862), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1912), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(695), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4036), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4921), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4922), - [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3913), - [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3781), - [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(456), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4916), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2829), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5100), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4700), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(51), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4313), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4833), - [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4862), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1912), - [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(695), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4036), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4921), - [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4922), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3913), - [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3781), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(456), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4916), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(691), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(965), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 111), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 111), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 57), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 57), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 71), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 71), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 111), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 111), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 57), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 57), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 29), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 29), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(966), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 188), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 188), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), SHIFT(691), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), SHIFT(691), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), SHIFT(691), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), SHIFT(691), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [2924] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2928] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1359), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3936), - [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(971), - [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4254), - [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4593), - [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3405), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), - [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4921), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), - [3146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4916), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1380), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4969), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1939), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4969), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1939), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1416), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 98), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 98), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 45), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 45), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(697), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4042), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4357), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4653), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(354), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(31), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3628), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(8), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3475), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(46), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3477), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4879), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3335), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3335), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3424), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4355), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4024), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5111), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4359), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3944), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5161), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5162), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4029), + [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3818), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(376), + [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4118), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5159), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 72), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 72), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 73), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 73), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 74), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 74), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 21), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 21), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4809), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4809), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2945), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5010), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4709), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(47), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4373), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4836), + [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(46), + [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4879), + [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1851), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1851), + [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1907), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(671), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4007), + [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4974), + [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4975), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4028), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3896), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(460), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4969), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4809), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4809), + [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2945), + [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5010), + [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4709), + [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(47), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4372), + [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4836), + [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(46), + [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4879), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1851), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1851), + [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1907), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(671), + [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4007), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4974), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4975), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4028), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3896), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(460), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4969), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(697), + [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1092), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 28), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 28), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 45), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 45), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 113), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 113), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 114), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 114), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 121), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 121), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 98), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 98), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 154), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 154), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 3), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 3), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 71), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 71), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 57), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 57), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 29), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 29), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 111), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 111), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1005), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 111), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 111), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 57), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 57), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), SHIFT(697), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), SHIFT(697), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), SHIFT(697), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2843] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2847] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), SHIFT(697), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1373), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3963), + [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), + [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4013), + [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4322), + [3107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4464), + [3113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3496), + [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3367), + [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3367), + [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), + [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), + [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4007), + [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), + [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4975), + [3149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4969), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5065), + [3383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5065), + [3386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5070), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1911), + [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1911), + [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1928), + [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5065), + [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5065), + [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5070), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1911), + [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1911), + [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1928), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1413), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3904), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4262), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4584), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1125), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(30), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4193), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(458), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3409), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3410), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3360), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4163), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3903), - [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5058), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4685), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3966), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5108), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5109), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4284), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5106), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 10), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3653] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 32), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 47), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), REDUCE(sym_record_body, 2, 0, 18), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 48), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 103), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1489), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 18), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 103), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4042), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4357), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4653), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1125), + [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(31), + [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4290), + [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(471), + [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3475), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3477), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3335), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3335), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3424), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4355), + [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4024), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5111), + [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4821), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3944), + [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5161), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5162), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4118), + [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5159), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3623] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 32), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 10), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1504), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 103), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 18), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), REDUCE(sym_record_body, 2, 0, 18), + [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 48), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 48), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 103), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 47), [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), REDUCE(sym_record_body, 3, 0, 47), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 48), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4978), - [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4978), - [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4454), - [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1893), - [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1939), - [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(3966), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5108), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5109), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5106), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [4064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(3888), - [4067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(3739), - [4070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(3740), - [4073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(4795), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(4306), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(3924), - [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(3925), - [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(5189), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1903), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 88), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 88), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 83), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 88), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 171), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 88), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 83), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 171), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 202), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 202), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [4313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 90), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), - [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2134), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 20), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 20), - [4369] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 174), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 103), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 18), - [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2113), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 47), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 48), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 137), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 138), - [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), - [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 85), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 85), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 86), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 86), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 87), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 87), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 34), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 34), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2219), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2239), - [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), - [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2244), - [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), - [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 103), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), - [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 18), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 47), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 48), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2251), - [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2248), - [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), - [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5062), - [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(4927), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(4861), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3841), - [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3842), - [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3611), - [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3611), - [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3723), - [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(4928), - [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3966), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5108), - [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5109), - [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3964), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5106), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2385), - [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 165), - [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 218), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 165), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 198), - [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 165), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 197), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [5091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 71), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 39), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 39), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 4), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 4), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 39), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 39), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 72), - [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 20), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 20), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3422), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 110), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 110), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 52), - [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 52), - [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 62), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 62), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 110), - [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 110), - [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), - [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 52), - [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 52), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 212), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 182), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 183), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 212), - [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), - [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), - [5430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 212), SHIFT(691), - [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), SHIFT(691), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), - [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 146), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), - [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), - [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 148), - [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(691), - [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), SHIFT(691), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 213), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 188), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 182), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 117), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 118), - [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 182), SHIFT(691), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), SHIFT(691), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 105), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 106), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), - [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), SHIFT(691), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 24), - [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(691), - [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(691), - [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), SHIFT(691), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 23), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 24), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), - [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), - [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(691), - [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), SHIFT(691), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), - [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 71), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(691), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 23), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), SHIFT(691), - [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 24), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 105), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 106), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 23), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [5615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(691), - [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 20), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 20), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 117), - [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 118), - [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), SHIFT(691), - [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 71), - [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(691), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 215), - [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 215), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), - [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5103), - [5670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4783), - [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5166), - [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5171), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 26), - [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 27), - [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(691), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), - [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(103), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 190), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 190), - [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 61), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 151), - [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 151), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 131), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 131), - [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 61), - [5787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(691), - [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), SHIFT(691), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), - [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(128), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(201), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), SHIFT(691), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), - [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), SHIFT(691), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [5835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), SHIFT(691), - [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), - [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 85), - [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 85), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 61), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 26), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(265), - [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3736), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), SHIFT(691), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), - [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 123), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 123), - [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 63), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 63), - [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), - [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(691), - [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 13), - [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 82), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 82), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 20), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 20), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 27), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 170), - [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 170), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 179), SHIFT(691), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 179), - [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 26), - [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 27), - [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), SHIFT(691), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), SHIFT(691), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), SHIFT(691), - [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), - [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(120), - [5991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(120), - [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 179), SHIFT(691), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 179), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(205), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3789), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 83), - [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 83), - [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(198), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3104), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), SHIFT(691), - [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), SHIFT(691), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), - [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 34), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 34), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 43), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 168), - [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 168), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 169), - [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 169), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 92), - [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 93), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 51), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 51), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 96), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 84), - [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 84), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 142), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 195), - [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 195), - [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 199), - [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 199), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 200), - [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 200), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 131), - [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 131), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 219), - [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 219), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 96), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 141), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 93), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(242), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(246), - [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(248), - [6200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(251), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [6207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 142), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 92), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 150), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 150), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 228), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 229), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 50), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 108), - [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 108), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 167), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 167), - [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 109), - [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 109), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 20), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 20), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 20), - [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 20), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 232), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 233), - [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 180), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), - [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), - [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 19), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 240), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 242), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), - [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 181), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 243), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 201), - [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 201), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), - [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 248), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 249), - [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 132), - [6371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 132), - [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3356), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 220), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 204), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 205), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 221), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 53), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), - [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(217), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(221), - [6414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(223), - [6417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(226), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), - [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), - [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), - [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 210), - [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 211), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 141), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), - [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3417), - [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 52), - [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 52), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 110), - [6530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 110), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 5), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [6944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [6947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [6953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 176), - [6965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [7048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3403), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [7165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [7179] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7183] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [7202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 176), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 78), - [7272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 153), - [7311] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 47), - [7317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), SHIFT(2248), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [7328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [7332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [7339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [7360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(81), - [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4195), - [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [7390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 12), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 15), - [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), - [7442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 18), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 33), - [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 40), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(80), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), - [7559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4530), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 107), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 107), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [7582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4268), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [7589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 152), - [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 152), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [7633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 112), - [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 112), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [7651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), - [7654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 177), - [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 177), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [7662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 178), - [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 178), - [7666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3844), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 193), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), - [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 89), - [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 136), - [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 192), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [7708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4502), - [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 216), - [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 217), - [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 91), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 83), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 83), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 230), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 231), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 162), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 241), - [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 163), - [7753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 203), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4612), - [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 103), - [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [7792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 46), - [7794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 46), - [7796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 44), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), - [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [7808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), - [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), - [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 71), - [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(194), - [7821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 176), - [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 129), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), - [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 103), - [7845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 99), - [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 173), - [7849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 100), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 166), - [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 166), - [7857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), - [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), - [7871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), - [7875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 140), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 77), - [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 14), - [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4532), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [7892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 175), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 79), - [7904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 95), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 80), - [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 48), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [7916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), - [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 48), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 94), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 81), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 31), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 128), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 130), - [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 35), - [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 36), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), - [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 133), - [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 191), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 42), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [7962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), - [7965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), - [7972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 143), - [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), - [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), - [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [7990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 138), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [8002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 47), - [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 48), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 58), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [8022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 197), - [8024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 198), - [8026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 218), - [8028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 202), - [8030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), REDUCE(sym_record_body, 2, 0, 47), - [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), - [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 71), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [8047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 84), - [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 84), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), - [8057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), SHIFT_REPEAT(4411), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [8066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 175), - [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 83), - [8072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 171), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [8078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 88), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [8094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 203), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [8098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 176), - [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 94), - [8102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 90), - [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 202), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 97), - [8112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 165), - [8114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4640), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [8119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), REDUCE(sym_record_body, 1, 0, 18), - [8122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 88), - [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), - [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 103), - [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5129), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5129), + [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4684), + [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1911), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1928), + [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(3944), + [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5161), + [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5162), + [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5159), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [4057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4041), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3909), + [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3826), + [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4841), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3504), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4585), + [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4177), + [4147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4178), + [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(5247), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 172), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 88), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 88), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 203), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 83), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 88), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 83), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 172), + [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 203), + [4325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3519), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 88), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4366] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), + [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 138), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 137), + [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 18), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), + [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2129), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 90), + [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 20), + [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 20), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 103), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2125), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1917), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2116), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 47), + [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 48), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 175), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [4540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2223), + [4566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 85), + [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 85), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 86), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 86), + [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 87), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 87), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 34), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 34), + [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5155), + [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5032), + [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5216), + [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(2427), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), + [4714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(3852), + [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(3854), + [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(3653), + [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(3653), + [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(3754), + [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5036), + [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(3975), + [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5196), + [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5197), + [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(2376), + [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5195), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2241), + [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2251), + [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), + [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2252), + [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), + [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 48), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), + [4820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 103), + [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2255), + [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 47), + [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 18), + [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2257), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3485), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 166), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 166), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 167), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 167), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 82), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 82), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 83), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 83), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 84), + [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 84), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 196), + [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 196), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 200), + [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 200), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 201), + [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 201), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 131), + [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 131), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 219), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 219), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 39), + [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 39), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 169), + [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 169), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 170), + [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 170), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body, 1, 0, 165), + [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body, 1, 0, 165), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 39), + [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 39), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body, 1, 0, 0), + [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body, 1, 0, 0), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 4), + [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 4), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 132), + [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 132), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 198), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 198), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 199), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 199), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [5237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3522), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 71), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [5314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3516), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [5371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 20), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 20), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 72), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [5389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [5419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [5445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 62), + [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 62), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 52), + [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 52), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [5492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 110), + [5506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 110), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), + [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 52), + [5522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 52), + [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 110), + [5526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 110), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 24), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 146), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), + [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), SHIFT(697), + [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(697), + [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [5564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(697), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), + [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), SHIFT(697), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), + [5584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 68), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), + [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 148), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 23), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 24), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [5602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(697), + [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), SHIFT(697), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 213), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), + [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 189), + [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 105), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 106), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), + [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), SHIFT(697), + [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), SHIFT(697), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 183), + [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 117), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 105), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 106), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 23), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 24), + [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 118), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 71), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1309), + [5689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3427), + [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), + [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(697), + [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 117), + [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 23), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), SHIFT(697), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 118), + [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), SHIFT(697), + [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(697), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), + [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), + [5735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 20), + [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 20), + [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(697), + [5742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(697), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), + [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), + [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 71), + [5753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(697), + [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), SHIFT(697), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 216), + [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 216), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 26), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 151), + [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 151), + [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 191), + [5811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 191), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 27), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), + [5827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3260), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [5832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4899), + [5835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4805), + [5838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4918), + [5841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4926), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), + [5852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(115), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 61), + [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(697), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(697), + [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 131), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 131), + [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), SHIFT(697), + [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), SHIFT(697), + [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), SHIFT(697), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), SHIFT(697), + [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), SHIFT(697), + [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), + [5962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3915), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), SHIFT(697), + [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 61), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), + [5980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), + [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), + [5984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(132), + [5987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3130), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), SHIFT(697), + [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), + [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(697), + [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), SHIFT(697), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [6011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), SHIFT(697), + [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), SHIFT(697), + [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [6025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), SHIFT(697), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [6032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), SHIFT(697), + [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), + [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 26), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 61), + [6047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(259), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [6058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(697), + [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 34), + [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 34), + [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 20), + [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 20), + [6071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(230), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 13), + [6078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(117), + [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(117), + [6084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), + [6086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3805), + [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 85), + [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 85), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), + [6115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), + [6117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), + [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), + [6125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 27), + [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 123), + [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 123), + [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 83), + [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 83), + [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 63), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 63), + [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 64), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 64), + [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), + [6155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(257), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 26), + [6160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(262), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 27), + [6165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 96), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), + [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 141), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 142), + [6209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 93), + [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 96), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 84), + [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 84), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 43), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(242), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(246), + [6274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(248), + [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(251), + [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 92), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 93), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 51), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 51), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [6306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3427), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 20), + [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 20), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 242), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), + [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 50), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 211), + [6331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), + [6335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [6339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), + [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), + [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [6364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(209), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 181), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(212), + [6374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(214), + [6377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(217), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 228), + [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 109), + [6414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 109), + [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), + [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), + [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), + [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 182), + [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 212), + [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 220), + [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 221), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 108), + [6438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 108), + [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 205), + [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 92), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), + [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 168), + [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 168), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), + [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), + [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 229), + [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 132), + [6470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 132), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 249), + [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 248), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 243), + [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), + [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 232), + [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 141), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 233), + [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 20), + [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 20), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 142), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 19), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 240), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 53), + [6534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), + [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), + [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 150), + [6540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 150), + [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), + [6544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 202), + [6546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 202), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3474), + [6587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 52), + [6593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 52), + [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), + [6597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 110), + [6615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 110), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [7016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 5), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [7026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [7042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 177), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [7111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [7178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [7194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3495), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [7231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 177), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7237] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7241] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [7247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 78), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [7336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [7352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4860), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 153), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [7403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [7413] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 12), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 33), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 40), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [7513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 15), + [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), + [7517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 18), + [7525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), SHIFT(2252), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3507), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [7561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 47), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [7577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(80), + [7580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4376), + [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [7591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [7598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3822), + [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [7609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 112), + [7611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 112), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [7627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4362), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 152), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 152), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [7658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), + [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [7683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 107), + [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 107), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [7691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 178), + [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 178), + [7695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 179), + [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 179), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [7743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(78), + [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), + [7748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4613), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 31), + [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 35), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 36), + [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), + [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), + [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 42), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 177), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [7821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 48), + [7823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(194), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [7828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), + [7830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 48), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [7844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), + [7847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), + [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [7852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 46), + [7854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 143), + [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 94), + [7860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [7862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4566), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 71), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 95), + [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 77), + [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 79), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 80), + [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 81), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 89), + [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 91), + [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [7899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4539), + [7906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 46), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), + [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [7920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 128), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 129), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 130), + [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 133), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), + [7936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 136), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 140), + [7944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 99), + [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 162), + [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 163), + [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [7956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), + [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4599), + [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 192), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 193), + [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), + [7977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 204), + [7999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 103), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [8005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 217), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 218), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 230), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 231), + [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 241), + [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 177), + [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 103), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), + [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [8051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), + [8054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), + [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), + [8062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 44), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 14), + [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 100), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [8074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 100), + [8076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 101), SHIFT_REPEAT(388), + [8079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 48), + [8081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 103), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 47), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [8091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 83), + [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 31), + [8095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 143), + [8097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 90), + [8099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 88), + [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), + [8103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 88), + [8105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 172), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [8109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4727), + [8112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 46), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [8120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [8122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 177), + [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 71), [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 83), - [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 18), - [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 171), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 174), - [8142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 99), - [8144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 143), - [8146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 46), - [8148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 100), - [8150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 47), - [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), - [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 80), - [8156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 48), - [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 101), SHIFT_REPEAT(380), - [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 81), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [8169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 103), - [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 31), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [8185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [8193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 137), - [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 128), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 133), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4683), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [8230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4642), - [8233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 132), - [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 132), - [8237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 16), - [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 16), - [8257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [8265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 196), - [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 196), - [8269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 5), - [8271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), - [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [8282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [8290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4788), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 69), - [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 69), - [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [8313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 177), - [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 177), - [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 120), - [8321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 178), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 178), - [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 172), - [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 172), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 83), - [8643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 88), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [8729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 128), + [8136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), REDUCE(sym_record_body, 1, 0, 18), + [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 133), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 80), + [8145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 58), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [8151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 172), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [8161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 18), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 81), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [8181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 204), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [8191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [8197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), + [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), + [8201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 177), + [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), + [8205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 203), + [8207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 175), + [8209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 103), + [8211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [8213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 94), + [8215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 137), + [8217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 138), + [8229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), + [8231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), + [8233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), REDUCE(sym_record_body, 2, 0, 47), + [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), + [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 97), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 47), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), + [8270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 99), + [8272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 48), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), + [8282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), SHIFT_REPEAT(4505), + [8285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 203), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 16), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 16), + [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [8303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4765), + [8306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4667), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [8323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 178), + [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 178), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [8339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [8341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [8345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [8349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 5), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [8357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [8360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 179), + [8362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 179), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 69), + [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 69), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [8390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 173), + [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 173), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [8404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [8408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4747), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 120), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [8547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 83), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [8741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [8811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 88), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [8817] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 83), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [8955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [8957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [8963] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [8971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [8847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [9073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [9081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [9137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/decl/def.nu b/test/corpus/decl/def.nu index f9757aa3..d02989e8 100644 --- a/test/corpus/decl/def.nu +++ b/test/corpus/decl/def.nu @@ -1130,7 +1130,7 @@ def test [name: record, name: record<"name", "value",>] {} (identifier) (param_type (collection_type - (identifier + (val_string (string_content)))))) (block)) (decl_def @@ -1145,7 +1145,7 @@ def test [name: record, name: record<"name", "value",>] {} (identifier) (param_type (collection_type - (identifier + (val_string (string_content)))))) (block)) (decl_def @@ -1161,9 +1161,9 @@ def test [name: record, name: record<"name", "value",>] {} (identifier) (param_type (collection_type - (identifier + (val_string (string_content)) - (identifier + (val_string (string_content)))))) (block)) (decl_def @@ -1179,9 +1179,9 @@ def test [name: record, name: record<"name", "value",>] {} (identifier) (param_type (collection_type - (identifier + (val_string (string_content)) - (identifier + (val_string (string_content)))))) (block))) diff --git a/test/highlight/comma_after_param_completer.nu b/test/highlight/comma_after_param_completer.nu deleted file mode 100644 index 9ded6b3d..00000000 --- a/test/highlight/comma_after_param_completer.nu +++ /dev/null @@ -1,2 +0,0 @@ -def foo [bar: string@baz,] { } -# ^ punctuation.special diff --git a/test/highlight/punctuation.nu b/test/highlight/punctuation.nu new file mode 100644 index 00000000..3dd3dd2a --- /dev/null +++ b/test/highlight/punctuation.nu @@ -0,0 +1,5 @@ +def foo [bar: string@baz,]: nothing -> nothing { } +# ^ punctuation.delimiter +# ^ punctuation.delimiter +# ^ punctuation.delimiter +# ^ punctuation.delimiter diff --git a/test/highlight/verbose_type_signature.nu b/test/highlight/verbose_type_signature.nu index 7aec042e..17f446ac 100644 --- a/test/highlight/verbose_type_signature.nu +++ b/test/highlight/verbose_type_signature.nu @@ -1,9 +1,10 @@ def foo []: nothing -> list>, description: record, links: list, is_locked: bool, original_language?: string, last_volume?: string, last_chapter?: string, publication_demographic?: string, status?: string, year?: int, content_rating?: string, tags: list>, state?: string, chapter_numbers_reset_on_new_volume: bool, created_at?: datetime, updated_at?: datetime, version?: int, available_translated_languages: list, last_uploaded_chapter?: string, rels: list>>> { # ^ type.enum # ^ variable.parameter - # ^ punctuation.special + # ^ punctuation.delimiter # ^ type - # ^ type.enum + # ^ punctuation.delimiter + # ^ type # ^ variable.parameter # ^ type return []